java-tutorials/apache-cxf/pom.xml

53 lines
1.9 KiB
XML
Raw Normal View History

2016-07-07 19:40:10 -04:00
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
<artifactId>apache-cxf</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
2016-12-13 15:17:12 -05:00
2016-07-15 06:54:28 -04:00
<modules>
<module>cxf-introduction</module>
<module>cxf-spring</module>
<module>cxf-jaxrs-implementation</module>
2016-11-09 17:21:00 -05:00
<module>cxf-aegis</module>
2016-07-15 06:54:28 -04:00
</modules>
2016-12-13 15:17:12 -05:00
<properties>
<junit.version>4.12</junit.version>
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
<exec-maven-plugin.version>1.5.0</exec-maven-plugin.version>
</properties>
2016-07-15 06:54:28 -04:00
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2016-12-13 15:17:12 -05:00
<version>${junit.version}</version>
2016-07-15 06:54:28 -04:00
<scope>test</scope>
</dependency>
</dependencies>
2016-12-13 15:17:12 -05:00
2016-07-15 06:54:28 -04:00
<build>
<defaultGoal>install</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2016-12-13 15:17:12 -05:00
<version>${maven-compiler-plugin.version}</version>
2016-07-15 06:54:28 -04:00
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
2016-12-13 15:17:12 -05:00
<version>${exec-maven-plugin.version}</version>
2016-07-15 06:54:28 -04:00
</plugin>
</plugins>
</pluginManagement>
</build>
</project>