java-tutorials/apache-cxf/cxf-introduction/pom.xml

54 lines
1.7 KiB
XML
Raw Normal View History

2016-07-07 19:40:10 -04:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2016-07-15 06:54:28 -04:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>cxf-introduction</artifactId>
2016-07-15 06:54:28 -04:00
<parent>
<groupId>com.baeldung</groupId>
<artifactId>apache-cxf</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
2016-07-15 06:54:28 -04:00
<properties>
2016-12-13 15:17:12 -05:00
<cxf.version>3.1.8</cxf.version>
<surefire.version>2.19.1</surefire.version>
2016-07-15 06:54:28 -04:00
</properties>
2016-07-15 06:54:28 -04:00
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<mainClass>com.baeldung.cxf.introduction.Server</mainClass>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
2016-12-13 15:17:12 -05:00
<version>${surefire.version}</version>
2016-07-15 06:54:28 -04:00
<configuration>
<excludes>
2016-10-23 06:19:55 -04:00
<exclude>**/*LiveTest.java</exclude>
2016-07-15 06:54:28 -04:00
</excludes>
</configuration>
</plugin>
</plugins>
</build>
2016-07-15 06:54:28 -04:00
<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>
</dependencies>
2016-10-23 14:26:51 -04:00
2016-07-15 06:54:28 -04:00
</project>