~ubuntu-branches/ubuntu/precise/surefire/precise

« back to all changes in this revision

Viewing changes to surefire-integration-tests/src/test/resources/surefire-674-buildFailingWhenErrors/pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Miguel Landaeta
  • Date: 2011-10-10 20:42:16 UTC
  • mfrom: (2.2.4 sid)
  • Revision ID: james.westby@ubuntu.com-20111010204216-cemva69wkagf4fay
Tags: 2.10-1
* Team upload.
* New upstream release.
* Refresh and remove unneccesary patches.
* Add Build-Depends on libsurefire-java and
  libmaven-common-artifact-filters-java.
* Drop outdated Maven artifact surefire-junit.
* Provide new Maven artifacts: surefire-junit3, maven-surefire-common,
  common-junit3, common-junit4, surefire-junit47 and surefire-testng-utils.
* Fix clean target to allow "two in a row" builds.
* Update Vcs-Browser field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
2
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
3
  <modelVersion>4.0.0</modelVersion>
 
4
  <groupId>org.apache.maven.plugins.surefire</groupId>
 
5
  <artifactId>buildFailingWhenErrors</artifactId>
 
6
  <packaging>jar</packaging>
 
7
  <version>1.0-SNAPSHOT</version>
 
8
  <name>buildFailingWhenErrors</name>
 
9
  <url>http://maven.apache.org</url>
 
10
  <dependencies>
 
11
    <dependency>
 
12
      <groupId>junit</groupId>
 
13
      <artifactId>junit</artifactId>
 
14
      <version>${junit.version}</version>
 
15
    </dependency>
 
16
  </dependencies>
 
17
  <build>
 
18
     <plugins>
 
19
        <plugin>
 
20
           <groupId>org.apache.maven.plugins</groupId>
 
21
           <artifactId>maven-compiler-plugin</artifactId>
 
22
           <configuration>
 
23
              <source>1.5</source>
 
24
              <target>1.5</target>
 
25
           </configuration>
 
26
        </plugin>
 
27
        <plugin>
 
28
           <groupId>org.apache.maven.plugins</groupId>
 
29
           <artifactId>maven-surefire-plugin</artifactId>
 
30
           <version>${surefire.version}</version>
 
31
           <configuration>
 
32
             <forkMode>${forkMode}</forkMode>
 
33
             <includes>
 
34
                <include>**/Test*.java</include>
 
35
               <include>**/MySuiteTest1.java</include>
 
36
               <include>**/MySuiteTest2.java</include>
 
37
               <include>**/MySuiteTest3.java</include>
 
38
             </includes>
 
39
           </configuration>
 
40
        </plugin>
 
41
     </plugins>
 
42
  </build>
 
43
  <properties>
 
44
    <junit.version>4.8.1</junit.version>
 
45
    <forkMode>once</forkMode>
 
46
  </properties>
 
47
</project>