Created
October 14, 2012 07:20
-
-
Save e2kaneko/3887705 to your computer and use it in GitHub Desktop.
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
| <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> | |
| <groupId>com.e2info</groupId> | |
| <artifactId>SpringMVC</artifactId> | |
| <packaging>war</packaging> | |
| <version>1.0</version> | |
| <properties> | |
| <maven.compiler.encoding>UTF-8</maven.compiler.encoding> | |
| <maven.compiler.target>1.7</maven.compiler.target> | |
| <maven.compiler.source>1.7</maven.compiler.source> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | |
| </properties> | |
| <organization> | |
| <name>e2info</name> | |
| </organization> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <artifactId>maven-surefire-report-plugin</artifactId> | |
| <executions> | |
| <execution> | |
| <phase>test</phase> | |
| <goals> | |
| <goal>report-only</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-war-plugin</artifactId> | |
| <version>2.0</version> | |
| <configuration> | |
| <warName>SpringMVCS</warName> | |
| <warSourceDirectory>WebContent</warSourceDirectory> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>2.4</version> | |
| <configuration> | |
| <source>1.7</source> | |
| <target>1.7</target> | |
| <testSource>1.7</testSource> | |
| <testTarget>1.7</testTarget> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-surefire-plugin</artifactId> | |
| <version>2.12</version> | |
| <configuration> | |
| <argLine>-XX:-UseSplitVerifier</argLine> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| <pluginManagement> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-checkstyle-plugin</artifactId> | |
| <version>2.9.1</version> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>findbugs-maven-plugin</artifactId> | |
| <version>2.3.1</version> | |
| </plugin> | |
| </plugins> | |
| </pluginManagement> | |
| </build> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.quartz-scheduler</groupId> | |
| <artifactId>quartz</artifactId> | |
| <version>1.8.6</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>dbunit</groupId> | |
| <artifactId>dbunit</artifactId> | |
| <version>2.2</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>mysql</groupId> | |
| <artifactId>mysql-connector-java</artifactId> | |
| <version>5.1.21</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>cglib</groupId> | |
| <artifactId>cglib-nodep</artifactId> | |
| <version>2.2</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.velocity</groupId> | |
| <artifactId>velocity</artifactId> | |
| <version>1.6.3</version> | |
| <exclusions> | |
| <exclusion> | |
| <groupId>commons-logging</groupId> | |
| <artifactId>commons-logging</artifactId> | |
| </exclusion> | |
| <exclusion> | |
| <groupId>commons-collections</groupId> | |
| <artifactId>commons-collections</artifactId> | |
| </exclusion> | |
| </exclusions> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.velocity</groupId> | |
| <artifactId>velocity-tools</artifactId> | |
| <version>1.3</version> | |
| <exclusions> | |
| <exclusion> | |
| <groupId>velocity</groupId> | |
| <artifactId>velocity</artifactId> | |
| </exclusion> | |
| <exclusion> | |
| <groupId>struts</groupId> | |
| <artifactId>struts</artifactId> | |
| </exclusion> | |
| <exclusion> | |
| <groupId>sslext</groupId> | |
| <artifactId>sslext</artifactId> | |
| </exclusion> | |
| <exclusion> | |
| <groupId>oro</groupId> | |
| <artifactId>oro</artifactId> | |
| </exclusion> | |
| <exclusion> | |
| <groupId>commons-validator</groupId> | |
| <artifactId>commons-validator</artifactId> | |
| </exclusion> | |
| <exclusion> | |
| <groupId>commons-logging</groupId> | |
| <artifactId>commons-logging</artifactId> | |
| </exclusion> | |
| </exclusions> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.ibm.icu</groupId> | |
| <artifactId>icu4j</artifactId> | |
| <version>3.8</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>commons-lang</groupId> | |
| <artifactId>commons-lang</artifactId> | |
| <version>2.2</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>commons-collections</groupId> | |
| <artifactId>commons-collections</artifactId> | |
| <version>3.2</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>commons-codec</groupId> | |
| <artifactId>commons-codec</artifactId> | |
| <version>1.3</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>commons-io</groupId> | |
| <artifactId>commons-io</artifactId> | |
| <version>1.3.2</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>javax.transaction</groupId> | |
| <artifactId>jta</artifactId> | |
| <version>1.1</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>javax.mail</groupId> | |
| <artifactId>mail</artifactId> | |
| <version>1.4.1</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>ch.qos.logback</groupId> | |
| <artifactId>logback-core</artifactId> | |
| <version>0.9.18</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>ch.qos.logback</groupId> | |
| <artifactId>logback-classic</artifactId> | |
| <version>0.9.18</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.slf4j</groupId> | |
| <artifactId>slf4j-api</artifactId> | |
| <version>1.5.11</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.slf4j</groupId> | |
| <artifactId>jcl104-over-slf4j</artifactId> | |
| <version>1.5.8</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>javax.servlet</groupId> | |
| <artifactId>servlet-api</artifactId> | |
| <version>2.5</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>jstl</groupId> | |
| <artifactId>jstl</artifactId> | |
| <version>1.1.2</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| <version>4.8.1</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-test</artifactId> | |
| <version>3.0.2.RELEASE</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-webmvc</artifactId> | |
| <version>3.0.2.RELEASE</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-aop</artifactId> | |
| <version>3.0.2.RELEASE</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-jdbc</artifactId> | |
| <version>3.0.2.RELEASE</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-tx</artifactId> | |
| <version>3.0.2.RELEASE</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>commons-dbcp</groupId> | |
| <artifactId>commons-dbcp</artifactId> | |
| <version>1.4</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-orm</artifactId> | |
| <version>3.1.2.RELEASE</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.hibernate</groupId> | |
| <artifactId>hibernate</artifactId> | |
| <version>3.2.7.ga</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.hibernate</groupId> | |
| <artifactId>hibernate-annotations</artifactId> | |
| <version>3.3.1.GA</version> | |
| </dependency> | |
| </dependencies> | |
| <reporting> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-site-plugin</artifactId> | |
| <configuration> | |
| <outputEncoding>UTF-8</outputEncoding> | |
| <inputEncoding>UTF-8</inputEncoding> | |
| <locales>ja</locales> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-javadoc-plugin</artifactId> | |
| <configuration> | |
| <encoding>UTF-8</encoding> | |
| <charset>UTF-8</charset> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-checkstyle-plugin</artifactId> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-pmd-plugin</artifactId> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>cobertura-maven-plugin</artifactId> | |
| <configuration> | |
| <formats> | |
| <format>xml</format> | |
| <format>html</format> | |
| </formats> | |
| </configuration> | |
| <version>2.0</version> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>jdepend-maven-plugin</artifactId> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>javancss-maven-plugin</artifactId> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-jxr-plugin</artifactId> | |
| <configuration> | |
| <aggregate>true</aggregate> | |
| <inputEncoding>UTF-8</inputEncoding> | |
| <outputEncoding>UTF-8</outputEncoding> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>dashboard-maven-plugin</artifactId> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>findbugs-maven-plugin</artifactId> | |
| <configuration> | |
| <xmlOutput>true</xmlOutput> | |
| <effort>Max</effort> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </reporting> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment