|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
5 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 | 6 |
|
7 |
| - <name>InvenTree SDK (Java)</name> |
8 |
| - |
9 | 7 | <groupId>com.w3asel</groupId>
|
10 | 8 | <artifactId>inventree-sdk-java</artifactId>
|
11 | 9 | <packaging>jar</packaging>
|
12 |
| - <version>0.18.317-SNAPSHOT</version> |
| 10 | + <version>${schema.version}</version> |
| 11 | + |
| 12 | + <name>InvenTree SDK (Java)</name> |
| 13 | + <description>A Java implementation of the OpenAPI spec published by InvenTree to allow interfacing with a server.</description> |
| 14 | + <url>https://github.com/1337joe/inventree-sdk-java</url> |
13 | 15 |
|
14 | 16 | <licenses>
|
15 | 17 | <license>
|
|
18 | 20 | </license>
|
19 | 21 | </licenses>
|
20 | 22 |
|
| 23 | + <developers> |
| 24 | + <developer> |
| 25 | + <name>Joseph Rogers</name> |
| 26 | + |
| 27 | + <url>https://www.w3asel.com</url> |
| 28 | + </developer> |
| 29 | + </developers> |
| 30 | + |
| 31 | + <scm> |
| 32 | + < connection>scm: [email protected]:1337joe/inventree-sdk-java.git</ connection> |
| 33 | + < developerConnection>scm: [email protected]:1337joe/inventree-sdk-java.git</ developerConnection> |
| 34 | + <url>https://github.com/1337joe/inventree-sdk-java</url> |
| 35 | + </scm> |
| 36 | + |
21 | 37 | <properties>
|
| 38 | + <schema.version>0.18.317-SNAPSHOT</schema.version> |
| 39 | + |
22 | 40 | <java.version>1.8</java.version>
|
23 | 41 | <maven.compiler.source>${java.version}</maven.compiler.source>
|
24 | 42 | <maven.compiler.target>${java.version}</maven.compiler.target>
|
25 | 43 | <gson-fire-version>1.9.0</gson-fire-version>
|
26 | 44 | <okhttp-version>4.12.0</okhttp-version>
|
27 |
| - <gson-version>2.10.1</gson-version> |
| 45 | + <gson-version>2.12.1</gson-version> |
28 | 46 | <commons-lang3-version>3.17.0</commons-lang3-version>
|
29 | 47 | <jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version>
|
30 | 48 | <jakarta-annotation-version>1.3.5</jakarta-annotation-version>
|
31 | 49 | <beanvalidation-version>2.0.2</beanvalidation-version>
|
32 | 50 | <junit-version>5.10.3</junit-version>
|
33 | 51 | <junit-platform-runner.version>1.10.0</junit-platform-runner.version>
|
34 |
| - <jakarta.ws.rs-api-version>2.1.6</jakarta.ws.rs-api-version> |
| 52 | + <jakarta.ws.rs-api-version>4.0.0</jakarta.ws.rs-api-version> |
35 | 53 | <jsr311-api-version>1.1.1</jsr311-api-version>
|
36 | 54 | <jsr305-version>3.0.2</jsr305-version>
|
37 | 55 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
38 | 56 |
|
39 |
| - <junit.version>5.11.3</junit.version> |
| 57 | + <junit.version>5.12.1</junit.version> |
40 | 58 | <plugin-replacer.version>1.5.3</plugin-replacer.version>
|
41 |
| - <plugin-openapi-generator.version>7.11.0</plugin-openapi-generator.version> |
| 59 | + <plugin-openapi-generator.version>7.12.0</plugin-openapi-generator.version> |
| 60 | + <plugin-javadoc.version>3.11.2</plugin-javadoc.version> |
| 61 | + <plugin-source.version>3.3.1</plugin-source.version> |
| 62 | + <plugin-gpg.version>3.2.7</plugin-gpg.version> |
| 63 | + <plugin-central-publishing.version>0.7.0</plugin-central-publishing.version> |
42 | 64 | </properties>
|
43 | 65 |
|
44 | 66 | <dependencies>
|
|
255 | 277 | </execution>
|
256 | 278 | </executions>
|
257 | 279 | </plugin>
|
| 280 | + <plugin> |
| 281 | + <groupId>org.apache.maven.plugins</groupId> |
| 282 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 283 | + <version>${plugin-javadoc.version}</version> |
| 284 | + <configuration> |
| 285 | + <tags> |
| 286 | + <tag> |
| 287 | + <name>http.response.details</name> |
| 288 | + <placement>a</placement> |
| 289 | + <head>HTTP Response Details:</head> |
| 290 | + </tag> |
| 291 | + </tags> |
| 292 | + </configuration> |
| 293 | + </plugin> |
258 | 294 | </plugins>
|
259 | 295 | </build>
|
| 296 | + |
| 297 | + <profiles> |
| 298 | + <profile> |
| 299 | + <id>publish</id> |
| 300 | + <properties> |
| 301 | + <skipTests>true</skipTests> |
| 302 | + </properties> |
| 303 | + <build> |
| 304 | + <plugins> |
| 305 | + <plugin> |
| 306 | + <groupId>org.apache.maven.plugins</groupId> |
| 307 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 308 | + <version>${plugin-javadoc.version}</version> |
| 309 | + <executions> |
| 310 | + <execution> |
| 311 | + <id>attach-javadocs</id> |
| 312 | + <goals> |
| 313 | + <goal>jar</goal> |
| 314 | + </goals> |
| 315 | + </execution> |
| 316 | + </executions> |
| 317 | + </plugin> |
| 318 | + <plugin> |
| 319 | + <groupId>org.apache.maven.plugins</groupId> |
| 320 | + <artifactId>maven-source-plugin</artifactId> |
| 321 | + <version>${plugin-source.version}</version> |
| 322 | + <executions> |
| 323 | + <execution> |
| 324 | + <id>attach-sources</id> |
| 325 | + <goals> |
| 326 | + <goal>jar-no-fork</goal> |
| 327 | + </goals> |
| 328 | + </execution> |
| 329 | + </executions> |
| 330 | + </plugin> |
| 331 | + <plugin> |
| 332 | + <groupId>org.apache.maven.plugins</groupId> |
| 333 | + <artifactId>maven-gpg-plugin</artifactId> |
| 334 | + <version>${plugin-gpg.version}</version> |
| 335 | + <executions> |
| 336 | + <execution> |
| 337 | + <id>sign-artifacts</id> |
| 338 | + <phase>verify</phase> |
| 339 | + <goals> |
| 340 | + <goal>sign</goal> |
| 341 | + </goals> |
| 342 | + </execution> |
| 343 | + </executions> |
| 344 | + </plugin> |
| 345 | + <plugin> |
| 346 | + <groupId>org.sonatype.central</groupId> |
| 347 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 348 | + <version>${plugin-central-publishing.version}</version> |
| 349 | + <extensions>true</extensions> |
| 350 | + <configuration> |
| 351 | + <publishingServerId>central</publishingServerId> |
| 352 | + <autoPublish>true</autoPublish> |
| 353 | + <waitUntil>published</waitUntil> |
| 354 | + <checksums>required</checksums> |
| 355 | + </configuration> |
| 356 | + </plugin> |
| 357 | + </plugins> |
| 358 | + </build> |
| 359 | + </profile> |
| 360 | + </profiles> |
260 | 361 | </project>
|
0 commit comments