Skip to content

Commit 11704dc

Browse files
committed
add github release plugin and release the version 1.0.0
1 parent 804f1d1 commit 11704dc

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

pom.xml

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.openmg</groupId>
88
<artifactId>metagraph-driver-java</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>1.0.0</version>
1010

1111
<name>OpenMG :: Metagraph-driver :: metagraph-driver-java</name>
1212

@@ -153,6 +153,35 @@
153153
</execution>
154154
</executions>
155155
</plugin>
156+
157+
<plugin>
158+
<groupId>de.jutzig</groupId>
159+
<artifactId>github-release-plugin</artifactId>
160+
<version>1.1.1</version>
161+
<executions>
162+
<execution>
163+
<id>github-upload</id>
164+
<phase>deploy</phase>
165+
<goals>
166+
<goal>release</goal>
167+
</goals>
168+
<configuration>
169+
<description>Metagraph Server Distribution</description>
170+
<releaseName>${project.version}</releaseName>
171+
<tag>mg-driver-${project.version}</tag>
172+
<fileSets>
173+
<fileSet>
174+
<directory>${project.build.directory}</directory>
175+
<includes>
176+
<include>*jar-with-dependencies.jar</include>
177+
</includes>
178+
</fileSet>
179+
</fileSets>
180+
</configuration>
181+
</execution>
182+
</executions>
183+
</plugin>
184+
156185
</plugins>
157186
</build>
158187

0 commit comments

Comments
 (0)