java-tutorials/apache-cxf/pom.xml

39 lines
1.2 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>
2017-01-11 04:45:43 -05:00
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
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>
2017-01-11 04:45:43 -05:00
2016-12-13 15:17:12 -05:00
<properties>
<exec-maven-plugin.version>1.5.0</exec-maven-plugin.version>
</properties>
2017-01-11 04:45:43 -05:00
2016-07-15 06:54:28 -04:00
<build>
<defaultGoal>install</defaultGoal>
<pluginManagement>
<plugins>
<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>