Skip to content

Commit 586a39b

Browse files
committed
update pom in prep for a release
1 parent 3130e1f commit 586a39b

1 file changed

Lines changed: 30 additions & 31 deletions

File tree

pom.xml

Lines changed: 30 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -60,32 +60,21 @@
6060
<url>https://github.com/sdlang-dev/SDL/issues</url>
6161
</issueManagement>
6262

63-
<distributionManagement>
64-
<snapshotRepository>
65-
<id>ossrh</id>
66-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
67-
</snapshotRepository>
68-
<repository>
69-
<id>ossrh</id>
70-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
71-
</repository>
72-
</distributionManagement>
73-
7463
<properties>
7564
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
7665
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
7766
<maven.compiler.source>1.8</maven.compiler.source>
7867
<maven.compiler.target>1.8</maven.compiler.target>
7968

80-
<junit.version>5.13.4</junit.version>
69+
<junit.version>5.14.0</junit.version>
8170
</properties>
8271

8372
<dependencyManagement>
8473
<dependencies>
8574
<dependency>
8675
<groupId>org.jetbrains</groupId>
8776
<artifactId>annotations</artifactId>
88-
<version>26.0.2</version>
77+
<version>26.0.2-1</version>
8978
<scope>provided</scope>
9079
<!-- set to provided so they don't get bundled into the jar (not needed at runtime) -->
9180
<optional>true</optional>
@@ -107,7 +96,7 @@
10796
<dependency>
10897
<groupId>com.google.code.gson</groupId>
10998
<artifactId>gson</artifactId>
110-
<version>2.13.1</version>
99+
<version>2.13.2</version>
111100
</dependency>
112101
<dependency>
113102
<groupId>com.fasterxml.jackson.core</groupId>
@@ -124,7 +113,7 @@
124113
<plugin>
125114
<groupId>org.apache.maven.plugins</groupId>
126115
<artifactId>maven-compiler-plugin</artifactId>
127-
<version>3.14.0</version>
116+
<version>3.14.1</version>
128117
</plugin>
129118
<plugin>
130119
<groupId>org.apache.maven.plugins</groupId>
@@ -139,17 +128,17 @@
139128
<plugin>
140129
<groupId>org.apache.maven.plugins</groupId>
141130
<artifactId>maven-javadoc-plugin</artifactId>
142-
<version>3.11.3</version>
131+
<version>3.12.0</version>
143132
</plugin>
144133
<plugin>
145134
<groupId>org.apache.maven.plugins</groupId>
146135
<artifactId>maven-surefire-plugin</artifactId>
147-
<version>3.5.3</version>
136+
<version>3.5.4</version>
148137
</plugin>
149138
<plugin>
150139
<groupId>org.apache.maven.plugins</groupId>
151140
<artifactId>maven-failsafe-plugin</artifactId>
152-
<version>3.5.3</version>
141+
<version>3.5.4</version>
153142
</plugin>
154143
<plugin>
155144
<groupId>org.apache.maven.plugins</groupId>
@@ -164,12 +153,12 @@
164153
<plugin>
165154
<groupId>org.apache.maven.plugins</groupId>
166155
<artifactId>maven-enforcer-plugin</artifactId>
167-
<version>3.6.1</version>
156+
<version>3.6.2</version>
168157
</plugin>
169158
<plugin>
170159
<groupId>org.owasp</groupId>
171160
<artifactId>dependency-check-maven</artifactId>
172-
<version>12.1.3</version>
161+
<version>12.1.6</version>
173162
<configuration>
174163
<nvdApiKeyEnvironmentVariable>NVD_API_KEY</nvdApiKeyEnvironmentVariable>
175164
</configuration>
@@ -212,7 +201,7 @@
212201
<plugin>
213202
<groupId>org.codehaus.mojo</groupId>
214203
<artifactId>license-maven-plugin</artifactId>
215-
<version>2.5.6</version>
204+
<version>2.7.0</version>
216205
<!-- <executions>-->
217206
<!-- <execution>-->
218207
<!-- <id>default-cli</id>-->
@@ -231,7 +220,7 @@
231220
<plugin>
232221
<groupId>org.jacoco</groupId>
233222
<artifactId>jacoco-maven-plugin</artifactId>
234-
<version>0.8.12</version>
223+
<version>0.8.13</version>
235224
<executions>
236225
<execution>
237226
<id>prepare-agent</id>
@@ -241,14 +230,14 @@
241230
</execution>
242231
</executions>
243232
</plugin>
244-
<plugin>
245-
<groupId>org.eluder.coveralls</groupId>
246-
<artifactId>coveralls-maven-plugin</artifactId>
247-
<version>4.3.0</version>
248-
<!--<configuration>-->
249-
<!--<repoToken> HANDLED BY TRAVIS ENVIRONMENT VARIABLE </repoToken>-->
250-
<!--</configuration>-->
251-
</plugin>
233+
<!--<plugin>-->
234+
<!-- <groupId>com.github.hazendaz.maven</groupId>-->
235+
<!-- <artifactId>coveralls-maven-plugin</artifactId>-->
236+
<!-- <version>5.0.0</version>-->
237+
<!-- <configuration>-->
238+
<!-- <repoToken> TODO - USE ENV VARIABLE IN CI </repoToken>-->
239+
<!-- </configuration>-->
240+
<!--</plugin>-->
252241
</plugins>
253242
</build>
254243

@@ -293,7 +282,7 @@
293282
<groupId>org.apache.maven.plugins</groupId>
294283
<artifactId>maven-gpg-plugin</artifactId>
295284
<configuration>
296-
<keyname>1CFD47C233D6CF9898D60D0849B6A0E07204E47A</keyname>
285+
<keyname>6E394A59C56281A1C7BCB31CBB1163024293DF16</keyname>
297286
</configuration>
298287
<executions>
299288
<execution>
@@ -305,6 +294,16 @@
305294
</execution>
306295
</executions>
307296
</plugin>
297+
<plugin>
298+
<groupId>org.sonatype.central</groupId>
299+
<artifactId>central-publishing-maven-plugin</artifactId>
300+
<version>0.9.0</version>
301+
<extensions>true</extensions>
302+
<configuration>
303+
<publishingServerId>central</publishingServerId>
304+
<autoPublish>true</autoPublish>
305+
</configuration>
306+
</plugin>
308307
</plugins>
309308
</build>
310309
</profile>

0 commit comments

Comments
 (0)