Couldn't find the wiki page you requested. Here is the default page
Source code file content
arena / arena-http / pom.xml
Size: 2757 bytes, 1 line
<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>
<parent>
<groupId>com.kenai.puj.arena</groupId>
<artifactId>arena</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<groupId>com.kenai.puj.arena</groupId>
<artifactId>arena-http</artifactId>
<packaging>war</packaging>
<name>PUJ Arena JAX-RS Jersey (arena-http.war)</name>
<profiles>
<profile>
<id>hudson</id>
<build>
<finalName>arena-http</finalName>
</build>
</profile>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<finalName>arena-http</finalName>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>com.kenai.puj.arena</groupId>
<artifactId>arena-model</artifactId>
<version>${project.version}</version>
<type>ejb-client</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
<version>${jersey-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-jaxrs</artifactId>
<version>1.1.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-json</artifactId>
<version>1.1.4.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-test-framework</artifactId>
<version>${jersey-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey.contribs</groupId>
<artifactId>jersey-multipart</artifactId>
<version>${jersey-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.kenai.puj.arena</groupId>
<artifactId>arena-mom</artifactId>
<version>${project.version}</version>
<type>ejb-client</type>
<scope>provided</scope>
</dependency>
<!--
dependency> <groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId> <version>2.2</version> </dependency
-->
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.1.12</version>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<netbeans.hint.deploy.server>gfv3</netbeans.hint.deploy.server>
<jersey-version>[1.1.5-ea-SNAPSHOT,)</jersey-version>
</properties>
</project>





