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

« back to all changes in this revision

Viewing changes to surefire-providers/common-junit4/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
<!--
 
2
  ~ Licensed to the Apache Software Foundation (ASF) under one
 
3
  ~ or more contributor license agreements.  See the NOTICE file
 
4
  ~ distributed with this work for additional information
 
5
  ~ regarding copyright ownership.  The ASF licenses this file
 
6
  ~ to you under the Apache License, Version 2.0 (the
 
7
  ~ "License"); you may not use this file except in compliance
 
8
  ~ with the License.  You may obtain a copy of the License at
 
9
  ~
 
10
  ~     http://www.apache.org/licenses/LICENSE-2.0
 
11
  ~
 
12
  ~ Unless required by applicable law or agreed to in writing,
 
13
  ~ software distributed under the License is distributed on an
 
14
  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 
15
  ~ KIND, either express or implied.  See the License for the
 
16
  ~ specific language governing permissions and limitations
 
17
  ~ under the License.
 
18
  -->
 
19
 
 
20
<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">
 
21
  <modelVersion>4.0.0</modelVersion>
 
22
 
 
23
  <parent>
 
24
    <groupId>org.apache.maven.surefire</groupId>
 
25
    <artifactId>surefire-providers</artifactId>
 
26
    <version>2.10</version>
 
27
    <relativePath>../pom.xml</relativePath>
 
28
  </parent>
 
29
 
 
30
  <artifactId>common-junit4</artifactId>
 
31
 
 
32
  <name>Shared JUnit4 Provider Code</name>
 
33
 
 
34
  <dependencies>
 
35
    <dependency>
 
36
      <groupId>junit</groupId>
 
37
      <artifactId>junit</artifactId>
 
38
      <version>4.0</version>
 
39
      <scope>provided</scope>
 
40
    </dependency>
 
41
    <dependency>
 
42
      <groupId>org.apache.maven.surefire</groupId>
 
43
      <artifactId>common-junit3</artifactId>
 
44
      <version>${project.version}</version>
 
45
    </dependency>
 
46
  </dependencies>
 
47
 
 
48
  <build>
 
49
    <plugins>
 
50
      <plugin>
 
51
        <artifactId>maven-compiler-plugin</artifactId>
 
52
        <configuration>
 
53
          <source>1.5</source>
 
54
          <target>1.5</target>
 
55
        </configuration>
 
56
      </plugin>
 
57
    </plugins>
 
58
  </build>
 
59
</project>