maven-surefire-plugin

来源:互联网 发布:网络电影心机主播 编辑:程序博客网 时间:2024/05/21 11:23

//跳过测试

<plugin>

<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.1</version>
<configuration>
<skip>true</skip>
</configuration>

</plugin>


====================================================================

<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>com.juding</groupId>
<artifactId>juding-dms-devp</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>juding-dms-dev</name>
<description>juding Distributor Management System</description>
<repositories>
<repository>
<id>com.springsource.repository.bundles.external</id>
<name>EBR External Release Repository</name>
<url>http://192.168.101.199:8080/nexus/content/repositories/public/</url>
</repository>


<repository>
<id>maven2-repository.dev.jboss</id>
<name>Java.net Repository for Maven</name>
<url>http://repository.jboss.org/maven2/</url>
<layout>default</layout>
</repository>


</repositories>


<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.0</version>
<scope>test</scope>
</dependency>




<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>test</scope>


</dependency>


<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.1</version>
<scope>test</scope>
</dependency>


<!-- -->
<dependency>
<groupId>org.jgroups</groupId>
<artifactId>jgroups</artifactId>
<version>3.3.0.Final</version>
</dependency>


<dependency>
<groupId>com.juding</groupId>
<artifactId>juding-commons-http-spring-devp</artifactId>
<version>1.1.9</version>
</dependency>


<dependency>
<groupId>com.woonill</groupId>
<artifactId>rmce-core</artifactId>
<version>0.8.5.7</version>
</dependency>


<dependency>
<groupId>com.juding</groupId>
<artifactId>oapp-manager</artifactId>
<version>0.3</version>
</dependency>


<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
<version>1.2.4</version>
<scope>test</scope>
</dependency>


<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.2.0</version>
</dependency>


<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
<version>1.2.4</version>
<scope>test</scope>
</dependency>


<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.3</version>
</dependency>


<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>3.0.5.RELEASE</version>
</dependency>




<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.1.0.RELEASE</version>
</dependency>


<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>


<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.8-beta3</version>
</dependency>


<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.1.2</version>
</dependency>


<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.3.1</version>
</dependency>




<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>2.10.0</version>
</dependency>


<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.6</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq</artifactId>
<version>3.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq-meta</artifactId>
<version>3.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq-codegen</artifactId>
<version>3.0.1</version>
<scope>test</scope>
</dependency>
</dependencies>


<build>
<finalName>judingDMS</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<packagingExcludes> WEB-INF/lib/*.jar, **/command/sf/**,
**/command/sales/**,
**/service/**,
**/**/*InventoryQuery*.**,
**/**/*OrderQuery*.**,
**/**/*SalesForecastQuery*.**,
**/**/*SalesGoalQuery*.**,
**/**/*SalesPerformanceQuery*.**,
**/**/*StockQuery*.**,
**/**/*TradingDepartmentQuery*.**,
**/interfaces/order/**,
**/interfaces/salesforecast/**,
**/interfaces/stock/**, 
</packagingExcludes>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
<warName>judingDMS</warName>
</configuration>
</plugin>

<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.1</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>




</plugins>
</build>
<properties>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
</project>

=======================================================================


原创粉丝点击