Skip to content

Commit 4ebf457

Browse files
authored
Make it a proper Java module (#4)
1 parent 37a794e commit 4ebf457

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,14 +128,14 @@
128128
<artifactId>maven-compiler-plugin</artifactId>
129129
<version>3.7.0</version>
130130
<configuration>
131-
<source>1.7</source>
132-
<target>1.7</target>
131+
<source>9</source>
132+
<target>9</target>
133133
</configuration>
134134
</plugin>
135135
<plugin>
136136
<groupId>org.jacoco</groupId>
137137
<artifactId>jacoco-maven-plugin</artifactId>
138-
<version>0.8.1</version>
138+
<version>0.8.12</version>
139139
<executions>
140140
<execution>
141141
<id>prepare-agent</id>

src/main/java/module-info.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module io.whitfin.siphash {
2+
exports io.whitfin.siphash;
3+
}

0 commit comments

Comments
 (0)