|
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 | | - <groupId>com.apiflows</groupId> |
| 7 | + <groupId>com.api-flows</groupId> |
8 | 8 | <artifactId>openapi-workflow-parser</artifactId> |
9 | | - <version>1.0.0-SNAPSHOT</version> |
| 9 | + <version>0.0.1-SNAPSHOT</version> |
10 | 10 |
|
11 | 11 | <url>https://github.com/api-flows/openapi-workflow-parser</url> |
12 | 12 |
|
|
20 | 20 | <distribution>repo</distribution> |
21 | 21 | </license> |
22 | 22 | </licenses> |
| 23 | + <developers> |
| 24 | + <developer> |
| 25 | + <id>beppe</id> |
| 26 | + <name>Beppe Catanese</name> |
| 27 | + <organizationUrl>https://github.com/gcatanese</organizationUrl> |
| 28 | + </developer> |
| 29 | + </developers> |
23 | 30 | <issueManagement> |
24 | 31 | <system>github</system> |
25 | | - <url>https://ggithub.com/api-flows/openapi-workflow-parser/issues</url> |
| 32 | + <url>https://github.com/api-flows/openapi-workflow-parser/issues</url> |
26 | 33 | </issueManagement> |
27 | 34 |
|
28 | 35 | <scm> |
|
31 | 38 | <url>http://github.com/api-flows/openapi-workflow-parser/tree/master</url> |
32 | 39 | </scm> |
33 | 40 |
|
34 | | - <distributionManagement> |
35 | | - <snapshotRepository> |
36 | | - <id>ossrh</id> |
37 | | - <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
38 | | - </snapshotRepository> |
39 | | - <repository> |
40 | | - <id>ossrh</id> |
41 | | - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
42 | | - </repository> |
43 | | - </distributionManagement> |
44 | | - |
45 | 41 | <properties> |
46 | 42 | <maven.compiler.source>17</maven.compiler.source> |
47 | 43 | <maven.compiler.target>17</maven.compiler.target> |
|
97 | 93 | <plugins> |
98 | 94 | <plugin> |
99 | 95 | <artifactId>maven-compiler-plugin</artifactId> |
100 | | - <version>3.12.1</version> |
| 96 | + <version>3.11.0</version> |
101 | 97 | </plugin> |
102 | 98 | <plugin> |
103 | 99 | <groupId>org.apache.maven.plugins</groupId> |
104 | 100 | <artifactId>maven-surefire-plugin</artifactId> |
105 | 101 | <version>3.1.2</version> |
106 | 102 | </plugin> |
107 | 103 |
|
| 104 | + <plugin> |
| 105 | + <groupId>org.apache.maven.plugins</groupId> |
| 106 | + <artifactId>maven-source-plugin</artifactId> |
| 107 | + <version>2.2.1</version> |
| 108 | + <executions> |
| 109 | + <execution> |
| 110 | + <id>attach-sources</id> |
| 111 | + <goals> |
| 112 | + <goal>jar-no-fork</goal> |
| 113 | + </goals> |
| 114 | + </execution> |
| 115 | + </executions> |
| 116 | + </plugin> |
108 | 117 | <plugin> |
109 | 118 | <groupId>org.apache.maven.plugins</groupId> |
110 | 119 | <artifactId>maven-javadoc-plugin</artifactId> |
|
155 | 164 | <plugin> |
156 | 165 | <groupId>org.sonatype.plugins</groupId> |
157 | 166 | <artifactId>nexus-staging-maven-plugin</artifactId> |
158 | | - <version>1.6.13</version> |
| 167 | + <version>1.6.7</version> |
159 | 168 | <extensions>true</extensions> |
160 | 169 | <configuration> |
161 | 170 | <serverId>ossrh</serverId> |
|
0 commit comments