Skip to content

Commit 2b0dc8d

Browse files
committed
Change groupId, add plugins
1 parent 1b49ef4 commit 2b0dc8d

File tree

1 file changed

+25
-16
lines changed

1 file changed

+25
-16
lines changed

pom.xml

Lines changed: 25 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>com.apiflows</groupId>
7+
<groupId>com.api-flows</groupId>
88
<artifactId>openapi-workflow-parser</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
9+
<version>0.0.1-SNAPSHOT</version>
1010

1111
<url>https://github.com/api-flows/openapi-workflow-parser</url>
1212

@@ -20,9 +20,16 @@
2020
<distribution>repo</distribution>
2121
</license>
2222
</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>
2330
<issueManagement>
2431
<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>
2633
</issueManagement>
2734

2835
<scm>
@@ -31,17 +38,6 @@
3138
<url>http://github.com/api-flows/openapi-workflow-parser/tree/master</url>
3239
</scm>
3340

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-
4541
<properties>
4642
<maven.compiler.source>17</maven.compiler.source>
4743
<maven.compiler.target>17</maven.compiler.target>
@@ -97,14 +93,27 @@
9793
<plugins>
9894
<plugin>
9995
<artifactId>maven-compiler-plugin</artifactId>
100-
<version>3.12.1</version>
96+
<version>3.11.0</version>
10197
</plugin>
10298
<plugin>
10399
<groupId>org.apache.maven.plugins</groupId>
104100
<artifactId>maven-surefire-plugin</artifactId>
105101
<version>3.1.2</version>
106102
</plugin>
107103

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>
108117
<plugin>
109118
<groupId>org.apache.maven.plugins</groupId>
110119
<artifactId>maven-javadoc-plugin</artifactId>
@@ -155,7 +164,7 @@
155164
<plugin>
156165
<groupId>org.sonatype.plugins</groupId>
157166
<artifactId>nexus-staging-maven-plugin</artifactId>
158-
<version>1.6.13</version>
167+
<version>1.6.7</version>
159168
<extensions>true</extensions>
160169
<configuration>
161170
<serverId>ossrh</serverId>

0 commit comments

Comments
 (0)