Skip to content
This repository was archived by the owner on Jul 31, 2022. It is now read-only.

Commit ea62394

Browse files
committed
add checksum only
1 parent 30cf82d commit ea62394

1 file changed

Lines changed: 34 additions & 1 deletion

File tree

pom.xml

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

77
<groupId>com.kttdevelopment</groupId>
88
<artifactId>simplehttpserver</artifactId>
9-
<version>03.05.08</version>
9+
<version>03.06.00</version>
1010
<packaging>jar</packaging>
1111

1212
<url>https://github.com/Ktt-Development/simplehttpserver</url>
@@ -65,6 +65,39 @@
6565
</configuration>
6666
</plugin>
6767

68+
<plugin>
69+
<groupId>org.apache.maven.plugins</groupId>
70+
<artifactId>maven-install-plugin</artifactId>
71+
<version>3.0.0-M1</version>
72+
<configuration>
73+
<generatePom>true</generatePom>
74+
<pomFile>${project.basedir}/pom.xml</pomFile>
75+
<file>${project.build.directory}/${project.artifactId}-${project.version}.jar</file>
76+
</configuration>
77+
<executions>
78+
<execution>
79+
<phase>install</phase>
80+
<goals>
81+
<goal>install-file</goal>
82+
</goals>
83+
</execution>
84+
</executions>
85+
</plugin>
86+
87+
<plugin>
88+
<groupId>net.ju-n.maven.plugins</groupId>
89+
<artifactId>checksum-maven-plugin</artifactId>
90+
<version>1.2</version>
91+
<executions>
92+
<execution>
93+
<phase>package</phase>
94+
<goals>
95+
<goal>artifacts</goal>
96+
</goals>
97+
</execution>
98+
</executions>
99+
</plugin>
100+
68101
<!-- tests -->
69102
<plugin>
70103
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)