Skip to content

Commit 88e85e5

Browse files
committed
publish v1.0.1
1 parent c2c5c59 commit 88e85e5

2 files changed

Lines changed: 37 additions & 2 deletions

File tree

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.rnkit</groupId>
88
<artifactId>appparse</artifactId>
9-
<version>1.0.0</version>
9+
<version>1.0.1</version>
1010
<packaging>jar</packaging>
1111

1212
<name>appparse</name>
@@ -87,6 +87,13 @@
8787
<target>1.7</target>
8888
</configuration>
8989
</plugin>
90+
<plugin>
91+
<groupId>org.apache.maven.plugins</groupId>
92+
<artifactId>maven-jar-plugin</artifactId>
93+
<version>2.3.2</version>
94+
<configuration>
95+
</configuration>
96+
</plugin>
9097
<plugin>
9198
<groupId>org.apache.maven.plugins</groupId>
9299
<artifactId>maven-javadoc-plugin</artifactId>
@@ -95,6 +102,28 @@
95102
<aggregate>true</aggregate>
96103
</configuration>
97104
</plugin>
105+
<plugin>
106+
<artifactId>maven-assembly-plugin</artifactId>
107+
<configuration>
108+
<archive>
109+
<manifest>
110+
<mainClass>fully.qualified.MainClass</mainClass>
111+
</manifest>
112+
</archive>
113+
<descriptorRefs>
114+
<descriptorRef>jar-with-dependencies</descriptorRef>
115+
</descriptorRefs>
116+
</configuration>
117+
<executions>
118+
<execution>
119+
<id>make-assembly</id>
120+
<phase>package</phase>
121+
<goals>
122+
<goal>single</goal>
123+
</goals>
124+
</execution>
125+
</executions>
126+
</plugin>
98127
</plugins>
99128
</build>
100129

@@ -155,7 +184,7 @@
155184
<format>html</format>
156185
<format>xml</format>
157186
</formats>
158-
<check />
187+
<check/>
159188
</configuration>
160189
</plugin>
161190
</plugins>

0 commit comments

Comments
 (0)