Skip to content

Commit 1cb8ab9

Browse files
committed
release/build fixes
1 parent 710c315 commit 1cb8ab9

File tree

4 files changed

+34
-1
lines changed

4 files changed

+34
-1
lines changed

pom.xml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
<artifactId>untwist</artifactId>
2525
<version>0.1</version>
2626

27+
<name>untwist</name>
28+
<description>Java 8+ collection of PRNG's from CLR (.NET), FreePascal, TurboPascal, Python.</description>
29+
<url>https://github.com/csoroiu/untwist</url>
30+
2731
<licenses>
2832
<license>
2933
<name>Apache License, Version 2.0</name>
@@ -32,6 +36,31 @@
3236
</license>
3337
</licenses>
3438

39+
<scm>
40+
<url>https://github.com/csoroiu/untwist</url>
41+
<connection>scm:git:https://github.com/csoroiu/untwist.git</connection>
42+
<developerConnection>scm:git:https://github.com/csoroiu/untwist.git</developerConnection>
43+
</scm>
44+
45+
<issueManagement>
46+
<system>GitHub</system>
47+
<url>https://github.com/csoroiu/untwist/issues</url>
48+
</issueManagement>
49+
50+
<ciManagement>
51+
<system>Travis CI</system>
52+
<url>https://travis-ci.org/csoroiu/untwist</url>
53+
<notifiers/>
54+
</ciManagement>
55+
56+
<developers>
57+
<developer>
58+
<name>Claudiu Soroiu</name>
59+
<url>https://github.com/csoroiu/</url>
60+
<organization>Derbederos</organization>
61+
</developer>
62+
</developers>
63+
3564
<properties>
3665
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3766

src/main/java/module-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module ro.derbederos.untwist {
22
exports ro.derbederos.untwist;
33

4-
requires commons.math3;
4+
requires transitive commons.math3;
55
}

src/main/java/ro/derbederos/untwist/ReverseBitsStreamGenerator.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
import org.apache.commons.math3.random.BitsStreamGenerator;
2121

2222
public abstract class ReverseBitsStreamGenerator extends BitsStreamGenerator implements ReverseRandomGenerator {
23+
private static final long serialVersionUID = 1L;
24+
2325
/**
2426
* {@inheritDoc}
2527
*/

src/test/java/ro/derbederos/untwist/ReverseBitsStreamGeneratorTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ protected ReverseBitsStreamGenerator makeGenerator() {
3636
}
3737

3838
static class BitRandom extends ReversibleJdkRandom {
39+
private static final long serialVersionUID = 1L;
40+
3941
public BitRandom() {
4042
}
4143

0 commit comments

Comments
 (0)