|
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 | 10 | <version>0.18.317-SNAPSHOT</version>
|
13 | 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> |
| 15 | + |
14 | 16 | <licenses>
|
15 | 17 | <license>
|
16 | 18 | <name>MIT License</name>
|
17 | 19 | <url>http://www.opensource.org/licenses/mit-license.php</url>
|
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>
|
22 | 38 | <java.version>1.8</java.version>
|
23 | 39 | <maven.compiler.source>${java.version}</maven.compiler.source>
|
|
39 | 55 | <junit.version>5.11.3</junit.version>
|
40 | 56 | <plugin-replacer.version>1.5.3</plugin-replacer.version>
|
41 | 57 | <plugin-openapi-generator.version>7.11.0</plugin-openapi-generator.version>
|
| 58 | + <plugin-javadoc.version>3.11.2</plugin-javadoc.version> |
42 | 59 | </properties>
|
43 | 60 |
|
44 | 61 | <dependencies>
|
|
255 | 272 | </execution>
|
256 | 273 | </executions>
|
257 | 274 | </plugin>
|
| 275 | + <plugin> |
| 276 | + <groupId>org.apache.maven.plugins</groupId> |
| 277 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 278 | + <version>${plugin-javadoc.version}</version> |
| 279 | + <configuration> |
| 280 | + <tags> |
| 281 | + <tag> |
| 282 | + <name>http.response.details</name> |
| 283 | + <placement>a</placement> |
| 284 | + <head>HTTP Response Details:</head> |
| 285 | + </tag> |
| 286 | + </tags> |
| 287 | + </configuration> |
| 288 | + </plugin> |
258 | 289 | </plugins>
|
259 | 290 | </build>
|
260 | 291 | </project>
|
0 commit comments