Files
java-tutorials/apache-cxf/pom.xml
T

40 lines
1.2 KiB
XML
Raw Normal View History

2016-07-08 06:40:10 +07:00
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2018-04-26 18:07:47 +05:30
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 11:45:43 +02:00
2018-04-26 18:07:47 +05:30
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
2017-05-12 20:32:54 +02:00
2018-04-26 18:07:47 +05:30
<modules>
<module>cxf-introduction</module>
<module>cxf-spring</module>
<module>cxf-jaxrs-implementation</module>
<module>cxf-aegis</module>
</modules>
2017-01-11 11:45:43 +02:00
2018-04-26 18:07:47 +05:30
<build>
<defaultGoal>install</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${exec-maven-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
2018-04-26 12:20:35 +05:30
2018-04-26 18:07:47 +05:30
<properties>
<exec-maven-plugin.version>1.5.0</exec-maven-plugin.version>
</properties>
2017-01-11 11:45:43 +02:00
2016-07-15 12:54:28 +02:00
</project>