Created
May 19, 2011 13:36
-
-
Save vshank77/980764 to your computer and use it in GitHub Desktop.
Default spring POM
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- $Revision$ $Author$ $Date$ --> | |
| <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>in.edmx.mxaas</groupId> | |
| <artifactId>mxadmin</artifactId> | |
| <version>0.0.1-SNAPSHOT</version> | |
| <name>MxAAS Admin</name> | |
| <properties> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <jdkVersion>1.6</jdkVersion> | |
| <springFrameworkVersion>3.0.5.RELEASE</springFrameworkVersion> | |
| <slf4jVersion>1.5.10</slf4jVersion> | |
| <log4jVersion>1.2.15</log4jVersion> | |
| <junitVersion>4.8.1</junitVersion> | |
| <jmockitVersion>0.999.4</jmockitVersion> | |
| <aspectjVersion>1.6.9</aspectjVersion> | |
| <httpClientVersion>4.1.1</httpClientVersion> | |
| </properties> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>2.2</version> | |
| <configuration> | |
| <source>${jdkVersion}</source> | |
| <target>${jdkVersion}</target> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-assembly-plugin</artifactId> | |
| <version>2.2.1</version> | |
| <configuration> | |
| <descriptors> | |
| <descriptor>src/assembly/binary.xml</descriptor> | |
| </descriptors> | |
| </configuration> | |
| <executions> | |
| <execution> | |
| <id>make-assembly</id> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>single</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| <dependencies> | |
| <dependency> | |
| <groupId>commons-logging</groupId> | |
| <artifactId>commons-logging</artifactId> | |
| <version>99.0-does-not-exist</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.slf4j</groupId> | |
| <artifactId>slf4j-log4j12</artifactId> | |
| <version>${slf4jVersion}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.slf4j</groupId> | |
| <artifactId>jcl104-over-slf4j</artifactId> | |
| <version>${slf4jVersion}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>log4j</groupId> | |
| <artifactId>log4j</artifactId> | |
| <version>${log4jVersion}</version> | |
| <exclusions> | |
| <exclusion> | |
| <artifactId>jms</artifactId> | |
| <groupId>javax.jms</groupId> | |
| </exclusion> | |
| <exclusion> | |
| <artifactId>mail</artifactId> | |
| <groupId>javax.mail</groupId> | |
| </exclusion> | |
| <exclusion> | |
| <artifactId>jmxri</artifactId> | |
| <groupId>com.sun.jmx</groupId> | |
| </exclusion> | |
| <exclusion> | |
| <artifactId>jmxtools</artifactId> | |
| <groupId>com.sun.jdmk</groupId> | |
| </exclusion> | |
| </exclusions> | |
| </dependency> | |
| <dependency> | |
| <groupId>javax.annotation</groupId> | |
| <artifactId>jsr250-api</artifactId> | |
| <version>1.0</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.google.guava</groupId> | |
| <artifactId>guava</artifactId> | |
| <version>r09</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>org.springframework.core</artifactId> | |
| <version>${springFrameworkVersion}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>org.springframework.context</artifactId> | |
| <version>${springFrameworkVersion}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>org.springframework.jdbc</artifactId> | |
| <version>${springFrameworkVersion}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>org.springframework.beans</artifactId> | |
| <version>${springFrameworkVersion}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.httpcomponents</groupId> | |
| <artifactId>httpasyncclient</artifactId> | |
| <version>4.0-alpha2</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.httpcomponents</groupId> | |
| <artifactId>httpclient</artifactId> | |
| <version>${httpClientVersion}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.google.code.gson</groupId> | |
| <artifactId>gson</artifactId> | |
| <version>1.4</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| <version>${junitVersion}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>org.springframework.test</artifactId> | |
| <version>${springFrameworkVersion}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| </dependencies> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment