Skip to content

Commit

Permalink
Update the POM project information and metadata
Browse files Browse the repository at this point in the history
* Change the groupId to org.kiwiproject
* Change the artifact IDs
* Change the version to 0.5.0
* Change the project name and description to include
  Jakarta XML Web Services instead of JAX-WS
* Update the POM metadata
* Remove distribution management since it's in kiwi-parent
  • Loading branch information
sleberknight committed Nov 6, 2023
1 parent 51d9654 commit 4d9e235
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 36 deletions.
17 changes: 9 additions & 8 deletions dropwizard-jaxws-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>dropwizard-jaxws-parent</artifactId>
<groupId>com.github.roskart.dropwizard-jaxws</groupId>
<version>1.2.3</version>

<parent>
<groupId>org.kiwiproject</groupId>
<artifactId>dropwizard-jakarta-xml-ws-parent</artifactId>
<version>0.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>dropwizard-jaxws-example</artifactId>
<name>Dropwizard JAX-WS Example Application</name>
<artifactId>dropwizard-jakarta-xml-ws-example</artifactId>
<name>Dropwizard Jakarta XML Web Services Example Application</name>

<properties>
<h2.version>2.2.224</h2.version>
Expand All @@ -21,8 +22,8 @@
<dependencies>

<dependency>
<groupId>com.github.roskart.dropwizard-jaxws</groupId>
<artifactId>dropwizard-jaxws</artifactId>
<groupId>org.kiwiproject</groupId>
<artifactId>dropwizard-jakarta-xml-ws</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
13 changes: 7 additions & 6 deletions dropwizard-jaxws/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>dropwizard-jaxws-parent</artifactId>
<groupId>com.github.roskart.dropwizard-jaxws</groupId>
<version>1.2.3</version>

<parent>
<groupId>org.kiwiproject</groupId>
<artifactId>dropwizard-jakarta-xml-ws-parent</artifactId>
<version>0.5.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>dropwizard-jaxws</artifactId>
<name>Dropwizard JAX-WS Bundle</name>
<artifactId>dropwizard-jakarta-xml-ws</artifactId>
<name>Dropwizard Jakarta XML Web Services Bundle</name>

<dependencies>

Expand Down
38 changes: 16 additions & 22 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,23 @@
<version>3.0.4</version>
</parent>

<groupId>com.github.roskart.dropwizard-jaxws</groupId>
<artifactId>dropwizard-jaxws-parent</artifactId>
<version>1.2.3</version>
<artifactId>dropwizard-jakarta-xml-ws-parent</artifactId>
<version>0.5.0</version>
<packaging>pom</packaging>
<name>Dropwizard JAX-WS</name>

<name>Dropwizard Jakarta XML Web Services</name>
<description>
Dropwizard-JAXWS is a Dropwizard Bundle that enables building SOAP web services and clients
using JAX-WS API with Dropwizard.
A Dropwizard Bundle that enables building SOAP web services and client using Jakarta XML Web Services
in Dropwizard applications.
</description>
<url>https://github.com/roskart/dropwizard-jaxws</url>
<url>https://github.com/kiwiproject/dropwizard-jakarta-xml-ws</url>

<modules>
<module>dropwizard-jaxws</module>
<module>dropwizard-jaxws-example</module>
</modules>

<properties>
<dropwizard.version>4.0.3</dropwizard.version>
<cxf.version>4.0.3</cxf.version>
<jakarta.mail-api.version>2.1.2</jakarta.mail-api.version>

Expand Down Expand Up @@ -55,6 +54,12 @@
<timezone>+1</timezone>
<organizationUrl>https://github.com/roskart</organizationUrl>
</developer>
<developer>
<name>Scott Leberknight</name>
<organization>Kiwi Project</organization>
<organizationUrl>https://github.com/kiwiproject</organizationUrl>
<url>https://github.com/sleberknight</url>
</developer>
</developers>

<licenses>
Expand All @@ -66,27 +71,16 @@
</licenses>

<scm>
<connection>scm:git:git@github.com:roskart/dropwizard-jaxws.git</connection>
<developerConnection>scm:git:git@github.com:roskart/dropwizard-jaxws.git</developerConnection>
<connection>scm:git:https://github.com/kiwiproject/dropwizard-jakarta-xml-ws.git</connection>
<developerConnection>scm:git@github.com:kiwiproject/dropwizard-jakarta-xml-ws.git</developerConnection>
<url>git@github.com:roskart/dropwizard-jaxws.git</url>
</scm>

<issueManagement>
<system>GitHub</system>
<url>https://github.com/roskart/dropwizard-jaxws/issues</url>
<url>https://github.com/kiwiproject/dropwizard-jakarta-xml-ws/issuess</url>
</issueManagement>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down

0 comments on commit 4d9e235

Please sign in to comment.