134 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			134 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <project xmlns="http://maven.apache.org/POM/4.0.0" 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">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
|     <artifactId>cxf-spring</artifactId>
 | |
|     <packaging>war</packaging>
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>apache-cxf</artifactId>
 | |
|         <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>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-context</artifactId>
 | |
|             <version>${spring.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-webmvc</artifactId>
 | |
|             <version>${spring.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>javax.servlet</groupId>
 | |
|             <artifactId>javax.servlet-api</artifactId>
 | |
|             <version>${javax.servlet-api.version}</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
|     
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <artifactId>maven-war-plugin</artifactId>
 | |
|                 <version>${maven-war-plugin.version}</version>
 | |
|                 <configuration>
 | |
|                     <failOnMissingWebXml>false</failOnMissingWebXml>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <artifactId>maven-surefire-plugin</artifactId>
 | |
|                 <version>${surefire.version}</version>
 | |
|                 <configuration>
 | |
|                     <excludes>
 | |
|                         <exclude>**/*LiveTest.java</exclude>
 | |
|                     </excludes>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
|     
 | |
|     <profiles>
 | |
|         <profile>
 | |
|             <id>live</id>
 | |
|             <build>
 | |
|                 <plugins>
 | |
|                     <plugin>
 | |
|                         <groupId>org.codehaus.cargo</groupId>
 | |
|                         <artifactId>cargo-maven2-plugin</artifactId>
 | |
|                         <version>${cargo-maven2-plugin.version}</version>
 | |
|                         <configuration>
 | |
|                             <container>
 | |
|                                 <containerId>tomcat8x</containerId>
 | |
|                                 <type>embedded</type>
 | |
|                             </container>
 | |
|                             <configuration>
 | |
|                                 <properties>
 | |
|                                     <cargo.hostname>localhost</cargo.hostname>
 | |
|                                     <cargo.servlet.port>8081</cargo.servlet.port>
 | |
|                                 </properties>
 | |
|                             </configuration>
 | |
|                         </configuration>
 | |
|                         <executions>
 | |
|                             <execution>
 | |
|                                 <id>start-server</id>
 | |
|                                 <phase>pre-integration-test</phase>
 | |
|                                 <goals>
 | |
|                                     <goal>start</goal>
 | |
|                                 </goals>
 | |
|                             </execution>
 | |
|                             <execution>
 | |
|                                 <id>stop-server</id>
 | |
|                                 <phase>post-integration-test</phase>
 | |
|                                 <goals>
 | |
|                                     <goal>stop</goal>
 | |
|                                 </goals>
 | |
|                             </execution>
 | |
|                         </executions>
 | |
|                     </plugin>
 | |
|                     
 | |
|                     <plugin>
 | |
|                         <artifactId>maven-surefire-plugin</artifactId>
 | |
|                         <version>${surefire.version}</version>
 | |
|                         <executions>
 | |
|                             <execution>
 | |
|                                 <phase>integration-test</phase>
 | |
|                                 <goals>
 | |
|                                     <goal>test</goal>
 | |
|                                 </goals>
 | |
|                                 <configuration>
 | |
|                                     <excludes>
 | |
|                                         <exclude>none</exclude>
 | |
|                                     </excludes>
 | |
|                                 </configuration>
 | |
|                             </execution>
 | |
|                         </executions>
 | |
|                     </plugin>
 | |
|                 </plugins>
 | |
|             </build>
 | |
|         </profile>
 | |
|         
 | |
|     </profiles>
 | |
|     
 | |
|     <properties>
 | |
|         <cxf.version>3.1.8</cxf.version>
 | |
|         <spring.version>4.3.4.RELEASE</spring.version>
 | |
|         <javax.servlet-api.version>3.1.0</javax.servlet-api.version>
 | |
|         
 | |
|         <maven-war-plugin.version>2.6</maven-war-plugin.version>        
 | |
|         <surefire.version>2.19.1</surefire.version>
 | |
|         <cargo-maven2-plugin.version>1.6.1</cargo-maven2-plugin.version>        
 | |
|     </properties>
 | |
|     
 | |
| </project>
 |