|
60 | 60 | <url>https://github.com/sdlang-dev/SDL/issues</url> |
61 | 61 | </issueManagement> |
62 | 62 |
|
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 | | - |
74 | 63 | <properties> |
75 | 64 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
76 | 65 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
77 | 66 | <maven.compiler.source>1.8</maven.compiler.source> |
78 | 67 | <maven.compiler.target>1.8</maven.compiler.target> |
79 | 68 |
|
80 | | - <junit.version>5.13.4</junit.version> |
| 69 | + <junit.version>5.14.0</junit.version> |
81 | 70 | </properties> |
82 | 71 |
|
83 | 72 | <dependencyManagement> |
84 | 73 | <dependencies> |
85 | 74 | <dependency> |
86 | 75 | <groupId>org.jetbrains</groupId> |
87 | 76 | <artifactId>annotations</artifactId> |
88 | | - <version>26.0.2</version> |
| 77 | + <version>26.0.2-1</version> |
89 | 78 | <scope>provided</scope> |
90 | 79 | <!-- set to provided so they don't get bundled into the jar (not needed at runtime) --> |
91 | 80 | <optional>true</optional> |
|
107 | 96 | <dependency> |
108 | 97 | <groupId>com.google.code.gson</groupId> |
109 | 98 | <artifactId>gson</artifactId> |
110 | | - <version>2.13.1</version> |
| 99 | + <version>2.13.2</version> |
111 | 100 | </dependency> |
112 | 101 | <dependency> |
113 | 102 | <groupId>com.fasterxml.jackson.core</groupId> |
|
124 | 113 | <plugin> |
125 | 114 | <groupId>org.apache.maven.plugins</groupId> |
126 | 115 | <artifactId>maven-compiler-plugin</artifactId> |
127 | | - <version>3.14.0</version> |
| 116 | + <version>3.14.1</version> |
128 | 117 | </plugin> |
129 | 118 | <plugin> |
130 | 119 | <groupId>org.apache.maven.plugins</groupId> |
|
139 | 128 | <plugin> |
140 | 129 | <groupId>org.apache.maven.plugins</groupId> |
141 | 130 | <artifactId>maven-javadoc-plugin</artifactId> |
142 | | - <version>3.11.3</version> |
| 131 | + <version>3.12.0</version> |
143 | 132 | </plugin> |
144 | 133 | <plugin> |
145 | 134 | <groupId>org.apache.maven.plugins</groupId> |
146 | 135 | <artifactId>maven-surefire-plugin</artifactId> |
147 | | - <version>3.5.3</version> |
| 136 | + <version>3.5.4</version> |
148 | 137 | </plugin> |
149 | 138 | <plugin> |
150 | 139 | <groupId>org.apache.maven.plugins</groupId> |
151 | 140 | <artifactId>maven-failsafe-plugin</artifactId> |
152 | | - <version>3.5.3</version> |
| 141 | + <version>3.5.4</version> |
153 | 142 | </plugin> |
154 | 143 | <plugin> |
155 | 144 | <groupId>org.apache.maven.plugins</groupId> |
|
164 | 153 | <plugin> |
165 | 154 | <groupId>org.apache.maven.plugins</groupId> |
166 | 155 | <artifactId>maven-enforcer-plugin</artifactId> |
167 | | - <version>3.6.1</version> |
| 156 | + <version>3.6.2</version> |
168 | 157 | </plugin> |
169 | 158 | <plugin> |
170 | 159 | <groupId>org.owasp</groupId> |
171 | 160 | <artifactId>dependency-check-maven</artifactId> |
172 | | - <version>12.1.3</version> |
| 161 | + <version>12.1.6</version> |
173 | 162 | <configuration> |
174 | 163 | <nvdApiKeyEnvironmentVariable>NVD_API_KEY</nvdApiKeyEnvironmentVariable> |
175 | 164 | </configuration> |
|
212 | 201 | <plugin> |
213 | 202 | <groupId>org.codehaus.mojo</groupId> |
214 | 203 | <artifactId>license-maven-plugin</artifactId> |
215 | | - <version>2.5.6</version> |
| 204 | + <version>2.7.0</version> |
216 | 205 | <!-- <executions>--> |
217 | 206 | <!-- <execution>--> |
218 | 207 | <!-- <id>default-cli</id>--> |
|
231 | 220 | <plugin> |
232 | 221 | <groupId>org.jacoco</groupId> |
233 | 222 | <artifactId>jacoco-maven-plugin</artifactId> |
234 | | - <version>0.8.12</version> |
| 223 | + <version>0.8.13</version> |
235 | 224 | <executions> |
236 | 225 | <execution> |
237 | 226 | <id>prepare-agent</id> |
|
241 | 230 | </execution> |
242 | 231 | </executions> |
243 | 232 | </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>--> |
252 | 241 | </plugins> |
253 | 242 | </build> |
254 | 243 |
|
|
293 | 282 | <groupId>org.apache.maven.plugins</groupId> |
294 | 283 | <artifactId>maven-gpg-plugin</artifactId> |
295 | 284 | <configuration> |
296 | | - <keyname>1CFD47C233D6CF9898D60D0849B6A0E07204E47A</keyname> |
| 285 | + <keyname>6E394A59C56281A1C7BCB31CBB1163024293DF16</keyname> |
297 | 286 | </configuration> |
298 | 287 | <executions> |
299 | 288 | <execution> |
|
305 | 294 | </execution> |
306 | 295 | </executions> |
307 | 296 | </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> |
308 | 307 | </plugins> |
309 | 308 | </build> |
310 | 309 | </profile> |
|
0 commit comments