...
|
...
|
@@ -22,17 +22,20 @@ |
|
|
</properties>
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>javax</groupId>
|
|
|
<artifactId>javaee-api</artifactId>
|
|
|
<version>7.0</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>junit</groupId>
|
|
|
<artifactId>junit</artifactId>
|
|
|
<version>4.11</version>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- spring核心包 -->
|
...
|
...
|
@@ -181,6 +184,7 @@ |
|
|
<version>2.2</version>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
</dependencyManagement>
|
|
|
|
|
|
<reporting>
|
|
|
<plugins>
|
...
|
...
|
@@ -206,37 +210,9 @@ |
|
|
</distributionManagement>
|
|
|
|
|
|
<build>
|
|
|
<resources>
|
|
|
<resource>
|
|
|
<directory>src/main/resources</directory>
|
|
|
<includes>
|
|
|
<include>**/*.*</include>
|
|
|
</includes>
|
|
|
<filtering>false</filtering>
|
|
|
</resource>
|
|
|
<resource>
|
|
|
<directory>src/main/java</directory>
|
|
|
<includes>
|
|
|
<include>**/*.properties</include>
|
|
|
<include>**/*.xml</include>
|
|
|
<include>**/*.tld</include>
|
|
|
</includes>
|
|
|
<filtering>false</filtering>
|
|
|
</resource>
|
|
|
</resources>
|
|
|
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
<executions>
|
|
|
<execution>
|
|
|
<id>attach-sources</id>
|
|
|
<goals>
|
|
|
<goal>jar</goal>
|
|
|
</goals>
|
|
|
</execution>
|
|
|
</executions>
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
...
|
...
|
@@ -246,27 +222,18 @@ |
|
|
<encoding>${java.encoding}</encoding>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
|
|
|
<!-- resource插件, 设定编码 -->
|
|
|
<plugin>
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
<version>1.3</version>
|
|
|
<executions>
|
|
|
<execution>
|
|
|
<phase>compile</phase>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
<version>2.6</version>
|
|
|
<configuration>
|
|
|
<tasks>
|
|
|
<echo message="project home: ${basedir}"/>
|
|
|
<echo message="java home: ${java.home}"/>
|
|
|
<echo message="java source version: ${java.version}"/>
|
|
|
<echo message="java target version: ${java.version}"/>
|
|
|
<echo message="java source charset: ${java.encoding}"/>
|
|
|
</tasks>
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
</configuration>
|
|
|
<goals>
|
|
|
<goal>run</goal>
|
|
|
</goals>
|
|
|
</execution>
|
|
|
</executions>
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
...
|
...
|
@@ -277,21 +244,7 @@ |
|
|
<argLine>-Xmx256m</argLine>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<downloadSources>true</downloadSources>
|
|
|
<additionalConfig>
|
|
|
<file>
|
|
|
<name>.settings/org.eclipse.core.resources.prefs</name>
|
|
|
<content>
|
|
|
<![CDATA[eclipse.preferences.version=1${line.separator}encoding/<project>=UTF-8${line.separator}]]>
|
|
|
</content>
|
|
|
</file>
|
|
|
</additionalConfig>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
<pluginManagement>
|
...
|
...
|
|