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

« back to all changes in this revision

Viewing changes to maven-surefire-report-plugin/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:
18
18
  ~ under the License.
19
19
  -->
20
20
 
21
 
<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">
 
21
<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">
 
22
  <modelVersion>4.0.0</modelVersion>
 
23
 
22
24
  <parent>
 
25
    <groupId>org.apache.maven.surefire</groupId>
23
26
    <artifactId>surefire</artifactId>
24
 
    <groupId>org.apache.maven.surefire</groupId>
25
 
    <version>2.4.3</version>
 
27
    <version>2.10</version>
 
28
    <relativePath>../pom.xml</relativePath>
26
29
  </parent>
27
 
  <modelVersion>4.0.0</modelVersion>
 
30
 
 
31
  <groupId>org.apache.maven.plugins</groupId>
28
32
  <artifactId>maven-surefire-report-plugin</artifactId>
29
 
  <groupId>org.apache.maven.plugins</groupId>
30
33
  <packaging>maven-plugin</packaging>
 
34
 
31
35
  <name>Maven Surefire Report Plugin</name>
32
 
  <prerequisites>
33
 
    <maven>2.0.3</maven>
34
 
  </prerequisites>
 
36
 
35
37
  <developers>
36
38
    <developer>
37
39
      <id>jruiz</id>
39
41
      <email>jruiz@exist.com</email>
40
42
    </developer>
41
43
  </developers>
 
44
 
 
45
  <prerequisites>
 
46
    <maven>${mavenVersion}</maven>
 
47
  </prerequisites>
 
48
 
 
49
  <distributionManagement>
 
50
    <site>
 
51
      <id>apache.website</id>
 
52
      <url>scp://people.apache.org/www/maven.apache.org/plugins/maven-surefire-report-plugin</url>
 
53
    </site>
 
54
  </distributionManagement>
 
55
 
 
56
  <properties>
 
57
    <doxiaVersion>1.1.4</doxiaVersion>
 
58
  </properties>
 
59
 
42
60
  <dependencies>
 
61
    <!-- maven -->
 
62
    <dependency>
 
63
      <groupId>org.apache.maven</groupId>
 
64
      <artifactId>maven-project</artifactId>
 
65
    </dependency>
 
66
    <dependency>
 
67
      <groupId>org.apache.maven</groupId>
 
68
      <artifactId>maven-model</artifactId>
 
69
    </dependency>
 
70
    <dependency>
 
71
      <groupId>org.apache.maven</groupId>
 
72
      <artifactId>maven-plugin-api</artifactId>
 
73
    </dependency>
 
74
 
 
75
    <!-- shared -->
43
76
    <dependency>
44
77
      <groupId>org.apache.maven.reporting</groupId>
45
78
      <artifactId>maven-reporting-api</artifactId>
46
 
      <version>2.0</version>
 
79
      <version>3.0</version>
47
80
    </dependency>
48
81
    <dependency>
49
82
      <groupId>org.apache.maven.reporting</groupId>
50
83
      <artifactId>maven-reporting-impl</artifactId>
51
 
      <version>2.0</version>
52
 
    </dependency>
53
 
    <dependency>
54
 
      <groupId>org.apache.maven.shared</groupId>
 
84
      <version>2.1</version>
 
85
    </dependency>
 
86
 
 
87
    <!-- doxia -->
 
88
    <dependency>
 
89
      <groupId>org.apache.maven.doxia</groupId>
 
90
      <artifactId>doxia-sink-api</artifactId>
 
91
      <version>${doxiaVersion}</version>
 
92
    </dependency>
 
93
    <dependency>
 
94
      <groupId>org.apache.maven.doxia</groupId>
 
95
      <artifactId>doxia-core</artifactId>
 
96
      <version>${doxiaVersion}</version>
 
97
    </dependency>
 
98
    <dependency>
 
99
      <groupId>org.apache.maven.doxia</groupId>
 
100
      <artifactId>doxia-decoration-model</artifactId>
 
101
      <version>${doxiaVersion}</version>
 
102
    </dependency>
 
103
    <dependency>
 
104
      <groupId>org.apache.maven.doxia</groupId>
 
105
      <artifactId>doxia-site-renderer</artifactId>
 
106
      <version>${doxiaVersion}</version>
 
107
    </dependency>
 
108
 
 
109
    <!-- plexus -->
 
110
    <dependency>
 
111
      <groupId>org.codehaus.plexus</groupId>
 
112
      <artifactId>plexus-container-default</artifactId>
 
113
      <version>1.0-alpha-9</version>
 
114
    </dependency>
 
115
    <dependency>
 
116
      <groupId>org.codehaus.plexus</groupId>
 
117
      <artifactId>plexus-utils</artifactId>
 
118
    </dependency>
 
119
 
 
120
    <!-- test -->
 
121
    <dependency>
 
122
      <groupId>org.apache.maven.plugin-testing</groupId>
55
123
      <artifactId>maven-plugin-testing-harness</artifactId>
 
124
      <version>1.2</version>
56
125
      <scope>test</scope>
57
 
      <version>1.0-beta-1</version>
58
126
    </dependency>
59
127
  </dependencies>
60
128
 
61
129
  <build>
62
130
    <plugins>
63
131
      <plugin>
 
132
        <artifactId>maven-compiler-plugin</artifactId>
 
133
        <configuration>
 
134
          <source>1.4</source>
 
135
          <target>1.4</target>
 
136
        </configuration>
 
137
      </plugin>
 
138
      <plugin>
 
139
        <groupId>org.apache.maven.plugins</groupId>
 
140
        <artifactId>maven-plugin-plugin</artifactId>
 
141
        <version>2.8</version>
 
142
        <executions>
 
143
          <execution>
 
144
            <id>generated-helpmojo</id>
 
145
            <goals>
 
146
              <goal>helpmojo</goal>
 
147
            </goals>
 
148
          </execution>
 
149
        </executions>
 
150
      </plugin>
 
151
      <plugin>
 
152
        <groupId>org.apache.maven.plugins</groupId>
64
153
        <artifactId>maven-site-plugin</artifactId>
65
154
        <configuration>
66
155
          <stagingSiteURL>scp://people.apache.org/www/maven.apache.org/plugins/${project.artifactId}-${project.version}</stagingSiteURL>
69
158
    </plugins>
70
159
  </build>
71
160
 
 
161
  <reporting>
 
162
    <plugins>
 
163
      <plugin>
 
164
        <groupId>org.apache.maven.plugins</groupId>
 
165
        <artifactId>maven-plugin-plugin</artifactId>
 
166
        <version>2.7</version>
 
167
        <configuration>
 
168
          <requirements>
 
169
            <jdk>1.4</jdk>
 
170
          </requirements>
 
171
        </configuration>
 
172
      </plugin>
 
173
    </plugins>
 
174
  </reporting>
 
175
 
72
176
  <profiles>
73
177
    <!-- Force JDK 1.4 for this one, plugins can never be built on 1.3 -->
74
178
    <profile>
119
223
        </plugins>
120
224
      </build>
121
225
    </profile>
 
226
    <profile>
 
227
      <id>reporting</id>
 
228
      <reporting>
 
229
        <plugins>
 
230
          <plugin>
 
231
            <groupId>org.codehaus.mojo</groupId>
 
232
            <artifactId>l10n-maven-plugin</artifactId>
 
233
            <version>1.0-alpha-2</version>
 
234
            <configuration>
 
235
              <locales>
 
236
                <locale>de</locale>
 
237
                <locale>sv</locale>
 
238
              </locales>
 
239
            </configuration>
 
240
          </plugin>
 
241
        </plugins>
 
242
      </reporting>
 
243
    </profile>
122
244
  </profiles>
123
 
  <distributionManagement>
124
 
    <site>
125
 
      <id>apache.website</id>
126
 
      <url>scp://people.apache.org/www/maven.apache.org/plugins/maven-surefire-report-plugin</url>
127
 
    </site>
128
 
  </distributionManagement>
129
 
  <reporting>
130
 
    <plugins>
131
 
      <plugin>
132
 
        <groupId>org.apache.maven.plugins</groupId>
133
 
        <artifactId>maven-plugin-plugin</artifactId>
134
 
      </plugin>
135
 
    </plugins>
136
 
  </reporting>
137
245
</project>