Skip to content

Commit 9863213

Browse files
committed
v0.5
1 parent 3f9575d commit 9863213

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

pom.xml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<groupId>ro.derbederos</groupId>
2424
<artifactId>untwist</artifactId>
25-
<version>0.5-SNAPSHOT</version>
25+
<version>0.5</version>
2626

2727
<name>untwist</name>
2828
<description>Java 8+ collection of PRNG's from .NET, FreePascal, TurboPascal, Python.</description>
@@ -67,12 +67,25 @@
6767

6868
<commons-math3.version>3.6.1</commons-math3.version>
6969
<junit.version>4.12</junit.version>
70+
<junit-dataprovider.version>1.12.0</junit-dataprovider.version>
7071
<hamcrest.version>1.3</hamcrest.version>
71-
<jacoco.version>0.7.9</jacoco.version>
72+
<jacoco.version>0.8.1</jacoco.version>
7273
</properties>
7374

7475
<build>
7576
<plugins>
77+
<plugin>
78+
<groupId>org.apache.maven.plugins</groupId>
79+
<artifactId>maven-jar-plugin</artifactId>
80+
<version>3.1.0</version>
81+
<configuration>
82+
<archive>
83+
<manifestEntries>
84+
<Automatic-Module-Name>ro.derbederos.untwist</Automatic-Module-Name>
85+
</manifestEntries>
86+
</archive>
87+
</configuration>
88+
</plugin>
7689
<plugin>
7790
<groupId>org.apache.maven.plugins</groupId>
7891
<artifactId>maven-compiler-plugin</artifactId>
@@ -128,7 +141,7 @@
128141
<plugin>
129142
<groupId>org.apache.maven.plugins</groupId>
130143
<artifactId>maven-javadoc-plugin</artifactId>
131-
<version>3.0.0</version>
144+
<version>3.0.1</version>
132145
<executions>
133146
<execution>
134147
<id>attach-javadoc</id>
@@ -147,6 +160,8 @@
147160
</sourceFileExcludes>
148161
<!-- this seems to be an issue with javadoc which needs User-Agent set -->
149162
<additionalJOption>-J-Dhttp.agent=javadoc</additionalJOption>
163+
<additionalOptions>-tag 'implNote:a:Implementation Note:' -html4</additionalOptions>
164+
150165
<failOnError>false</failOnError>
151166
<links>
152167
<link>http://static.javadoc.io/org.apache.commons/commons-math3/${commons-math3.version}</link>
@@ -171,7 +186,7 @@
171186
<dependency>
172187
<groupId>com.tngtech.java</groupId>
173188
<artifactId>junit-dataprovider</artifactId>
174-
<version>1.12.0</version>
189+
<version>${junit-dataprovider.version}</version>
175190
<scope>test</scope>
176191
</dependency>
177192
<dependency>

0 commit comments

Comments
 (0)