Skip to content

Commit e120d61

Browse files
authored
Merge pull request #9 from bradh/jdk11
switch to JDK 11
2 parents 6bf72f9 + f2f403f commit e120d61

File tree

2 files changed

+14
-31
lines changed

2 files changed

+14
-31
lines changed

pom.xml

Lines changed: 11 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</distributionManagement>
4545

4646
<properties>
47-
<maven.compiler.source>1.6</maven.compiler.source>
47+
<maven.compiler.source>11</maven.compiler.source>
4848
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
4949
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5050
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -93,7 +93,7 @@
9393
<plugin>
9494
<groupId>org.apache.maven.plugins</groupId>
9595
<artifactId>maven-javadoc-plugin</artifactId>
96-
<version>3.0.0-M1</version>
96+
<version>3.4.1</version>
9797
<configuration>
9898
<show>public</show>
9999
<nohelp>true</nohelp>
@@ -127,20 +127,6 @@
127127
</executions>
128128
</plugin>
129129

130-
<plugin>
131-
<groupId>org.apache.maven.plugins</groupId>
132-
<artifactId>maven-javadoc-plugin</artifactId>
133-
<version>2.9.1</version>
134-
<executions>
135-
<execution>
136-
<id>attach-javadocs</id>
137-
<goals>
138-
<goal>jar</goal>
139-
</goals>
140-
</execution>
141-
</executions>
142-
</plugin>
143-
144130
<plugin>
145131
<groupId>org.apache.maven.plugins</groupId>
146132
<artifactId>maven-gpg-plugin</artifactId>
@@ -156,18 +142,6 @@
156142
</executions>
157143
</plugin>
158144

159-
<plugin>
160-
<groupId>org.sonatype.plugins</groupId>
161-
<artifactId>nexus-staging-maven-plugin</artifactId>
162-
<version>1.6.7</version>
163-
<extensions>true</extensions>
164-
<configuration>
165-
<serverId>ossrh</serverId>
166-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
167-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
168-
</configuration>
169-
</plugin>
170-
171145
<plugin>
172146
<groupId>org.apache.maven.plugins</groupId>
173147
<artifactId>maven-release-plugin</artifactId>
@@ -180,22 +154,28 @@
180154
</configuration>
181155
</plugin>
182156

157+
<plugin>
158+
<groupId>org.apache.maven.plugins</groupId>
159+
<artifactId>maven-compiler-plugin</artifactId>
160+
<version>3.6.1</version>
161+
</plugin>
162+
183163
</plugins>
184164
</build>
185165

186166
<dependencies>
187167

188168
<dependency>
189169
<groupId>org.codehaus.groovy</groupId>
190-
<artifactId>groovy-all</artifactId>
191-
<version>2.4.1</version>
170+
<artifactId>groovy</artifactId>
171+
<version>2.5.18</version>
192172
<scope>test</scope>
193173
</dependency>
194174

195175
<dependency>
196176
<groupId>org.spockframework</groupId>
197177
<artifactId>spock-core</artifactId>
198-
<version>1.0-groovy-2.4</version>
178+
<version>2.3-groovy-2.5</version>
199179
<scope>test</scope>
200180
</dependency>
201181

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 com.github.snksoft.crc {
2+
exports com.github.snksoft.crc;
3+
}

0 commit comments

Comments
 (0)