2019-10-31 21:43:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-06 07:44:43 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2020-03-15 08:52:24 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>cxf-introduction</artifactId>
|
2019-12-05 09:56:52 -05:00
|
|
|
<name>cxf-introduction</name>
|
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2022-05-30 14:17:08 -04:00
|
|
|
<artifactId>apache-cxf-modules</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
|
|
|
<version>${cxf.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
<artifactId>cxf-rt-transports-http-jetty</artifactId>
|
|
|
|
<version>${cxf.version}</version>
|
|
|
|
</dependency>
|
2023-02-26 11:25:24 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.xml.ws</groupId>
|
|
|
|
<artifactId>jakarta.xml.ws-api</artifactId>
|
|
|
|
<version>${jakarta-xml.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.jws</groupId>
|
|
|
|
<artifactId>jakarta.jws-api</artifactId>
|
|
|
|
<version>${jakarta.jws.version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>com.baeldung.cxf.introduction.Server</mainClass>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2023-02-26 11:25:24 -05:00
|
|
|
<properties>
|
|
|
|
<cxf.version>4.0.0</cxf.version>
|
|
|
|
<jakarta-xml.version>4.0.0</jakarta-xml.version>
|
|
|
|
<jakarta.jws.version>3.0.0</jakarta.jws.version>
|
|
|
|
</properties>
|
|
|
|
|
2021-08-02 14:57:15 -04:00
|
|
|
</project>
|