|
Apache CXF example source code file (pom.xml)
The Apache CXF pom.xml source code<?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0 <parent> <groupId>org.apache.cxf.systests <artifactId>cxf-systests-container-integration <version>2.3.1-SNAPSHOT <relativePath>../pom.xml </parent> <groupId>org.apache.cxf.systests <artifactId>cxf-systests-ci-grizzly <name>Apache CXF Container Integration Test Grizzly <version>2.3.1-SNAPSHOT <repositories> <repository> <id>maven2-repository.dev.java.net <name>Java.net Repository for Maven 2 <url>http://download.java.net/maven/2/ </repository> </repositories> <dependencies> <dependency> <groupId>org.apache.cxf <artifactId>cxf-rt-frontend-jaxws <version>${project.version} <scope>test </dependency> <dependency> <groupId>org.apache.cxf <artifactId>cxf-testutils <version>${project.version} <scope>test </dependency> <dependency> <groupId>org.apache.geronimo.specs <artifactId>geronimo-jaxws_2.2_spec <scope>test </dependency> <dependency> <groupId>com.sun.grizzly <artifactId>grizzly-http <version>1.9.18 <scope>test </dependency> <dependency> <groupId>org.jvnet.jax-ws-commons <artifactId>jaxws-grizzly-httpspi <version>1.1 <scope>test <exclusions> <exclusion> <groupId>javax.xml.ws <artifactId>jaxws-api </exclusion> </exclusions> </dependency> <dependency> <groupId>${cxf.servlet-api.group} <artifactId>${cxf.servlet-api.artifact} <scope>test </dependency> <dependency> <groupId>junit <artifactId>junit </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins <artifactId>maven-dependency-plugin <executions> <execution> <id>create-endorsed-dir <phase>validate <goals> <goal>copy </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.apache.geronimo.specs <artifactId>geronimo-jaxws_2.2_spec <outputDirectory>${basedir}/target/endorsed </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins <artifactId>maven-surefire-plugin <configuration> <argLine>-Djava.endorsed.dirs=${basedir}/target/endorsed </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins <artifactId>maven-compiler-plugin <configuration> <compilerArguments> <endorseddirs>${basedir}/target/endorsed </compilerArguments> </configuration> </plugin> </plugins> </pluginManagement> </build> </project> Other Apache CXF examples (source code examples)Here is a short list of links related to this Apache CXF pom.xml source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.