|
3 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
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 | | - |
7 | 6 | <groupId>io.polyapi</groupId> |
8 | 7 | <artifactId>polyapi-java</artifactId> |
9 | 8 | <version>0.2.0-SNAPSHOT</version> |
|
14 | 13 | <module>library</module> |
15 | 14 | <module>polyapi-maven-plugin</module> |
16 | 15 | </modules> |
17 | | - |
18 | 16 | <name>Poly API Java libraries</name> |
19 | 17 | <url>https://polyapi.io</url> |
20 | 18 | <description>Java libraries for Poly API</description> |
21 | | - |
| 19 | + <developers> |
| 20 | + <developer> |
| 21 | + <id>polyapi</id> |
| 22 | + <name>PolyAPI</name> |
| 23 | + |
| 24 | + <organization>PolyAPI</organization> |
| 25 | + <organizationUrl>https://polyapi.io</organizationUrl> |
| 26 | + </developer> |
| 27 | + </developers> |
22 | 28 | <licenses> |
23 | 29 | <license> |
24 | 30 | <name>MIT</name> |
25 | 31 | <distribution>repo</distribution> |
26 | 32 | <url>https://spdx.org/licenses/MIT.html</url> |
27 | 33 | </license> |
28 | 34 | </licenses> |
29 | | - |
30 | 35 | <scm> |
31 | 36 | < connection>scm:git: [email protected]:polyapi/polyapi-java.git</ connection> |
32 | 37 | < developerConnection>scm:git: [email protected]:polyapi/polyapi-java.git</ developerConnection> |
33 | 38 | <url>https://github.com/polyapi/polyapi-java</url> |
34 | 39 | </scm> |
35 | | - |
36 | 40 | <build> |
37 | 41 | <plugins> |
38 | 42 | <plugin> |
|
80 | 84 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
81 | 85 | </configuration> |
82 | 86 | </plugin> |
| 87 | + <plugin> |
| 88 | + <groupId>org.apache.maven.plugins</groupId> |
| 89 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 90 | + <version>3.1.1</version> |
| 91 | + <executions> |
| 92 | + <execution> |
| 93 | + <id>attach-javadocs</id> |
| 94 | + <goals> |
| 95 | + <goal>jar</goal> |
| 96 | + </goals> |
| 97 | + <phase>package</phase> |
| 98 | + </execution> |
| 99 | + </executions> |
| 100 | + </plugin> |
| 101 | + <plugin> |
| 102 | + <groupId>org.apache.maven.plugins</groupId> |
| 103 | + <artifactId>maven-source-plugin</artifactId> |
| 104 | + <version>3.3.0</version> |
| 105 | + <executions> |
| 106 | + <execution> |
| 107 | + <id>attach-sources</id> |
| 108 | + <goals> |
| 109 | + <goal>jar-no-fork</goal> |
| 110 | + </goals> |
| 111 | + <phase>package</phase> |
| 112 | + </execution> |
| 113 | + </executions> |
| 114 | + </plugin> |
83 | 115 | </plugins> |
84 | 116 | </build> |
85 | 117 | <distributionManagement> |
|
0 commit comments