Created
January 29, 2012 14:45
-
-
Save eugenp/1699116 to your computer and use it in GitHub Desktop.
InfoQ - Building REST with Spring - pom.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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</modelVersion> | |
| <groupId>org</groupId> | |
| <artifactId>rest</artifactId> | |
| <version>0.0.1-SNAPSHOT</version> | |
| <packaging>war</packaging> | |
| <dependencies> | |
| <dependency> | |
| <groupId>com.google.guava</groupId> | |
| <artifactId>guava</artifactId> | |
| <version>${guava.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>javax.servlet</groupId> | |
| <artifactId>servlet-api</artifactId> | |
| <version>2.5</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.httpcomponents</groupId> | |
| <artifactId>httpcore</artifactId> | |
| <version>${http.version}</version> | |
| <exclusions> | |
| <exclusion> | |
| <artifactId>commons-logging</artifactId> | |
| <groupId>commons-logging</groupId> | |
| </exclusion> | |
| </exclusions> | |
| </dependency> | |
| <!-- spring --> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-webmvc</artifactId> | |
| <version>${spring.version}</version> | |
| <exclusions> | |
| <exclusion> | |
| <artifactId>commons-logging</artifactId> | |
| <groupId>commons-logging</groupId> | |
| </exclusion> | |
| </exclusions> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-oxm</artifactId> | |
| <version>${spring.version}</version> | |
| </dependency> | |
| <!-- security --> | |
| <dependency> | |
| <groupId>org.springframework.security</groupId> | |
| <artifactId>spring-security-web</artifactId> | |
| <version>${spring-security.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework.security</groupId> | |
| <artifactId>spring-security-config</artifactId> | |
| <version>${spring-security.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-tx</artifactId> | |
| <version>${spring.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-aop</artifactId> | |
| <version>${spring.version}</version> | |
| </dependency> | |
| <!-- json, xml, atom --> | |
| <dependency> | |
| <groupId>org.codehaus.jackson</groupId> | |
| <artifactId>jackson-mapper-asl</artifactId> | |
| <version>${jackson-mapper-asl.version}</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>javax.xml.bind</groupId> | |
| <artifactId>jaxb-api</artifactId> | |
| <version>${jaxb-api.version}</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>rome</groupId> | |
| <artifactId>rome</artifactId> | |
| <version>1.0</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.thoughtworks.xstream</groupId> | |
| <artifactId>xstream</artifactId> | |
| <version>1.4.2</version> | |
| </dependency> | |
| <!-- logging --> | |
| <dependency> | |
| <groupId>org.slf4j</groupId> | |
| <artifactId>slf4j-api</artifactId> | |
| <version>${org.slf4j.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>ch.qos.logback</groupId> | |
| <artifactId>logback-classic</artifactId> | |
| <version>1.0.0</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.slf4j</groupId> | |
| <artifactId>jcl-over-slf4j</artifactId> | |
| <version>${org.slf4j.version}</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <!-- test scoped --> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-test</artifactId> | |
| <version>${spring.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| <version>${junit.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.hamcrest</groupId> | |
| <artifactId>hamcrest-core</artifactId> | |
| <version>${org.hamcrest.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.hamcrest</groupId> | |
| <artifactId>hamcrest-library</artifactId> | |
| <version>${org.hamcrest.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.mockito</groupId> | |
| <artifactId>mockito-core</artifactId> | |
| <version>${mockito.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.httpcomponents</groupId> | |
| <artifactId>httpclient</artifactId> | |
| <version>${httpclient.version}</version> | |
| <scope>test</scope> | |
| <exclusions> | |
| <exclusion> | |
| <artifactId>commons-logging</artifactId> | |
| <groupId>commons-logging</groupId> | |
| </exclusion> | |
| </exclusions> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.commons</groupId> | |
| <artifactId>commons-lang3</artifactId> | |
| <version>${commons-lang3.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.jayway.restassured</groupId> | |
| <artifactId>rest-assured</artifactId> | |
| <version>1.5</version> | |
| <scope>test</scope> | |
| <exclusions> | |
| <exclusion> | |
| <artifactId>commons-logging</artifactId> | |
| <groupId>commons-logging</groupId> | |
| </exclusion> | |
| </exclusions> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <finalName>rest</finalName> | |
| <resources> | |
| <resource> | |
| <directory>src/main/resources</directory> | |
| <filtering>true</filtering> | |
| </resource> | |
| <resource> | |
| <directory>src/main/resources/${target}</directory> | |
| </resource> | |
| </resources> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-surefire-plugin</artifactId> | |
| <version>2.11</version> | |
| <configuration> | |
| <excludes> | |
| <exclude>**/*IntegrationTest.java</exclude> | |
| </excludes> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>2.3.2</version> | |
| <configuration> | |
| <source>1.6</source> | |
| <target>1.6</target> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.cargo</groupId> | |
| <artifactId>cargo-maven2-plugin</artifactId> | |
| <version>1.1.4</version> | |
| <configuration> | |
| <wait>true</wait> | |
| <container> | |
| <containerId>jetty7x</containerId> | |
| <type>embedded</type> | |
| </container> | |
| <configuration> | |
| <properties> | |
| <cargo.servlet.port>8080</cargo.servlet.port> | |
| </properties> | |
| </configuration> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| <repositories> | |
| <repository> | |
| <id>jboss-public-repository-group</id> | |
| <name>JBoss Public Maven Repository Group</name> | |
| <url>https://repository.jboss.org/nexus/content/groups/public/</url> | |
| <layout>default</layout> | |
| <releases> | |
| <enabled>true</enabled> | |
| <updatePolicy>never</updatePolicy> | |
| </releases> | |
| <snapshots> | |
| <enabled>true</enabled> | |
| <updatePolicy>never</updatePolicy> | |
| </snapshots> | |
| </repository> | |
| </repositories> | |
| <properties> | |
| <target>dev</target> | |
| <!-- VERSIONS --> | |
| <spring-security.version>3.1.0.RELEASE</spring-security.version> | |
| <spring.version>3.1.0.RELEASE</spring.version> <!-- 3.1.0.BUILD-SNAPSHOT --> | |
| <javassist.version>3.15.0-GA</javassist.version> | |
| <cglib.version>2.2.2</cglib.version> | |
| <commons-lang3.version>3.1</commons-lang3.version> | |
| <guava.version>11.0</guava.version> | |
| <jackson-mapper-asl.version>1.9.4</jackson-mapper-asl.version> | |
| <jaxb-api.version>2.2.6</jaxb-api.version> | |
| <!-- VERSIONS - logging --> | |
| <org.slf4j.version>1.6.4</org.slf4j.version> | |
| <!-- VERSIONS - testing --> | |
| <org.hamcrest.version>1.3.RC2</org.hamcrest.version> | |
| <junit.version>4.10</junit.version> | |
| <mockito.version>1.9.0</mockito.version> | |
| <http.version>4.1.4</http.version> | |
| <httpclient.version>4.1.2</httpclient.version> | |
| </properties> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment