|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <groupId>io.github.willena</groupId> |
6 | 6 | <artifactId>sqlite-jdbc</artifactId> |
7 | | - <version>3.39.4.1-SNAPSHOT</version> |
| 7 | + <version>3.40.0.0-SNAPSHOT</version> |
8 | 8 | <name>SQLite JDBC</name> |
9 | 9 | <description>SQLite JDBC library with encryption and authentication support</description> |
10 | 10 | <url>https://github.com/Willena/sqlite-jdbc-crypt</url> |
11 | 11 |
|
12 | 12 | <properties> |
13 | 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
14 | | - <junit.version>5.7.2</junit.version> |
| 14 | + <junit.version>5.9.1</junit.version> |
15 | 15 | <surefire.version>2.22.2</surefire.version> |
| 16 | + <java9.sourceDirectory>${project.basedir}/src/main/java9</java9.sourceDirectory> |
16 | 17 | </properties> |
17 | 18 |
|
18 | 19 | <licenses> |
|
90 | 91 | <plugin> |
91 | 92 | <groupId>org.apache.maven.plugins</groupId> |
92 | 93 | <artifactId>maven-help-plugin</artifactId> |
93 | | - <version>3.2.0</version> |
| 94 | + <version>3.3.0</version> |
94 | 95 | </plugin> |
95 | 96 |
|
96 | 97 | <plugin> |
97 | 98 | <groupId>org.apache.maven.plugins</groupId> |
98 | 99 | <artifactId>maven-compiler-plugin</artifactId> |
99 | | - <version>3.1</version> |
| 100 | + <version>3.10.1</version> |
100 | 101 | <configuration> |
101 | | - <source>1.8</source> |
102 | | - <target>1.8</target> |
| 102 | + <release>8</release> |
103 | 103 | </configuration> |
| 104 | + <executions> |
| 105 | + <execution> |
| 106 | + <id>java9-compile</id> |
| 107 | + <phase>compile</phase> |
| 108 | + <goals> |
| 109 | + <goal>compile</goal> |
| 110 | + </goals> |
| 111 | + <configuration> |
| 112 | + <release>9</release> |
| 113 | + <compileSourceRoots> |
| 114 | + <compileSourceRoot>${java9.sourceDirectory}</compileSourceRoot> |
| 115 | + </compileSourceRoots> |
| 116 | + <multiReleaseOutput>true</multiReleaseOutput> |
| 117 | + </configuration> |
| 118 | + </execution> |
| 119 | + </executions> |
104 | 120 | </plugin> |
105 | 121 |
|
106 | 122 | <plugin> |
|
117 | 133 |
|
118 | 134 | <plugin> |
119 | 135 | <artifactId>maven-jar-plugin</artifactId> |
120 | | - <version>3.2.0</version> |
| 136 | + <version>3.3.0</version> |
121 | 137 | <configuration> |
122 | 138 | <!-- Pick the MANIFEST generated by the bundle plugin --> |
123 | 139 | <archive> |
124 | 140 | <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
125 | 141 | <manifestEntries> |
126 | | - <Automatic-Module-Name>io.github.willena.sqlitejdbc</Automatic-Module-Name> |
| 142 | + <Multi-Release>true</Multi-Release> |
127 | 143 | </manifestEntries> |
128 | 144 | </archive> |
129 | 145 | </configuration> |
|
145 | 161 | <plugin> |
146 | 162 | <groupId>com.diffplug.spotless</groupId> |
147 | 163 | <artifactId>spotless-maven-plugin</artifactId> |
148 | | - <version>2.12.3</version> |
| 164 | + <version>2.27.2</version> |
149 | 165 | <configuration> |
150 | 166 | <java> |
151 | 167 | <toggleOffOn/> |
|
160 | 176 | <plugin> |
161 | 177 | <groupId>org.sonatype.plugins</groupId> |
162 | 178 | <artifactId>nexus-staging-maven-plugin</artifactId> |
163 | | - <version>1.6.8</version> |
| 179 | + <version>1.6.13</version> |
164 | 180 | <extensions>true</extensions> |
165 | 181 | <configuration> |
166 | 182 | <serverId>ossrh</serverId> |
167 | 183 | <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
168 | 184 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
169 | 185 | </configuration> |
170 | 186 | </plugin> |
| 187 | + |
| 188 | + <plugin> |
| 189 | + <groupId>org.codehaus.mojo</groupId> |
| 190 | + <artifactId>versions-maven-plugin</artifactId> |
| 191 | + <version>2.13.0</version> |
| 192 | + </plugin> |
| 193 | + |
| 194 | + <plugin> |
| 195 | + <groupId>org.apache.maven.plugins</groupId> |
| 196 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 197 | + <version>3.1.0</version> |
| 198 | + <executions> |
| 199 | + <execution> |
| 200 | + <id>enforce-maven</id> |
| 201 | + <goals> |
| 202 | + <goal>enforce</goal> |
| 203 | + </goals> |
| 204 | + <configuration> |
| 205 | + <rules> |
| 206 | + <requireMavenVersion> |
| 207 | + <version>3.2.5</version> |
| 208 | + </requireMavenVersion> |
| 209 | + <requireJavaVersion> |
| 210 | + <version>11</version> |
| 211 | + </requireJavaVersion> |
| 212 | + </rules> |
| 213 | + </configuration> |
| 214 | + </execution> |
| 215 | + </executions> |
| 216 | + </plugin> |
171 | 217 | </plugins> |
172 | 218 |
|
173 | 219 | <pluginManagement> |
174 | 220 | <plugins> |
175 | 221 | <plugin> |
176 | 222 | <groupId>org.apache.felix</groupId> |
177 | 223 | <artifactId>maven-bundle-plugin</artifactId> |
178 | | - <version>2.4.0</version> |
| 224 | + <version>5.1.8</version> |
179 | 225 | <extensions>true</extensions> |
180 | 226 | <executions> |
181 | 227 | <execution> |
|
193 | 239 | </build> |
194 | 240 |
|
195 | 241 | <scm> |
196 | | - <connection>scm:git:git://github.com/Willena/sqlite-jdbc-crypt.git</connection> |
197 | | - < developerConnection>scm:git: ssh://[email protected]: Willena/sqlite-jdbc -crypt.git</ developerConnection> |
198 | | - <url>https://github.com/Willena/sqlite-jdbc-crypt</url> |
| 242 | + <connection>scm:git:git://github.com/xerial/sqlite-jdbc.git</connection> |
| 243 | + < developerConnection>scm:git: [email protected]: xerial/sqlite-jdbc.git</ developerConnection> |
| 244 | + <url>https://github.com/xerial/sqlite-jdbc</url> |
199 | 245 | </scm> |
200 | 246 |
|
201 | 247 | <distributionManagement> |
|
225 | 271 | <plugin> |
226 | 272 | <groupId>org.apache.maven.plugins</groupId> |
227 | 273 | <artifactId>maven-gpg-plugin</artifactId> |
228 | | - <version>1.6</version> |
| 274 | + <version>3.0.1</version> |
229 | 275 | <configuration> |
230 | 276 | <!-- Prevent gpg from using pinentry programs --> |
231 | 277 | <gpgArguments> |
|
246 | 292 | <plugin> |
247 | 293 | <groupId>org.apache.maven.plugins</groupId> |
248 | 294 | <artifactId>maven-javadoc-plugin</artifactId> |
249 | | - <version>3.2.0</version> |
| 295 | + <version>3.4.1</version> |
250 | 296 | <configuration> |
| 297 | + <sourcepath>src/main/java</sourcepath> |
251 | 298 | <additionalOptions>-Xdoclint:none</additionalOptions> |
252 | 299 | <additionalJOption>-Xdoclint:none</additionalJOption> |
253 | 300 | </configuration> |
|
329 | 376 | <include>**/RSMetaDataTest</include> |
330 | 377 | <!-- SegFault --> |
331 | 378 | <exclude>**/UDFCustomErrorTest.java</exclude> |
| 379 | + <!-- Not needed --> |
| 380 | + <exclude>**/architecture/*.java</exclude> |
332 | 381 | </excludes> |
333 | 382 | </configuration> |
334 | 383 | </plugin> |
|
368 | 417 | <dependency> |
369 | 418 | <groupId>org.junit-pioneer</groupId> |
370 | 419 | <artifactId>junit-pioneer</artifactId> |
371 | | - <version>1.4.2</version> |
| 420 | + <version>1.7.1</version> |
372 | 421 | <scope>test</scope> |
373 | 422 | </dependency> |
374 | 423 | <dependency> |
375 | 424 | <groupId>org.mockito</groupId> |
376 | 425 | <artifactId>mockito-core</artifactId> |
377 | | - <version>3.12.4</version> |
| 426 | + <version>4.8.1</version> |
| 427 | + <scope>test</scope> |
| 428 | + </dependency> |
| 429 | + <dependency> |
| 430 | + <groupId>com.tngtech.archunit</groupId> |
| 431 | + <artifactId>archunit-junit5</artifactId> |
| 432 | + <version>1.0.0</version> |
| 433 | + <scope>test</scope> |
| 434 | + </dependency> |
| 435 | + <!-- Required by archunit --> |
| 436 | + <dependency> |
| 437 | + <groupId>ch.qos.logback</groupId> |
| 438 | + <artifactId>logback-classic</artifactId> |
| 439 | + <version>1.3.4</version> |
378 | 440 | <scope>test</scope> |
379 | 441 | </dependency> |
380 | 442 | </dependencies> |
|
0 commit comments