~ubuntu-branches/ubuntu/wily/maven-enforcer/wily

« back to all changes in this revision

Viewing changes to maven-enforcer-plugin/src/it/dependencies_converge/pom.xml

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-12 22:30:16 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: package-import@ubuntu.com-20110912223016-e2pk04avoq8bur7t
Tags: 1.0-1
* Team upload
* New upstream release.
* Add more Build-Depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
3
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
4
  <modelVersion>4.0.0</modelVersion>
 
5
  <groupId>test</groupId>
 
6
  <artifactId>TestParent</artifactId>
 
7
  <version>1.0</version>
 
8
  <packaging>jar</packaging>
 
9
  <dependencies>
 
10
    <dependency>
 
11
      <groupId>org.slf4j</groupId>
 
12
      <artifactId>slf4j-jdk14</artifactId>
 
13
      <version>1.6.1</version>
 
14
    </dependency>
 
15
    <dependency>
 
16
      <groupId>org.slf4j</groupId>
 
17
      <artifactId>slf4j-nop</artifactId>
 
18
      <version>1.6.0</version>
 
19
      <exclusions>
 
20
        <exclusion>
 
21
          <groupId>org.slf4j</groupId>
 
22
          <artifactId>slf4j-api</artifactId>
 
23
        </exclusion>
 
24
      </exclusions>
 
25
    </dependency>
 
26
  </dependencies>
 
27
  <build>
 
28
    <plugins>
 
29
      <plugin>
 
30
        <groupId>org.apache.maven.plugins</groupId>
 
31
        <artifactId>maven-enforcer-plugin</artifactId>
 
32
        <version>@project.version@</version>
 
33
        <executions>
 
34
          <execution>
 
35
            <id>enforce</id>
 
36
            <configuration>
 
37
              <rules>
 
38
                <DependencyConvergence/>
 
39
              </rules>
 
40
            </configuration>
 
41
            <goals>
 
42
              <goal>enforce</goal>
 
43
            </goals>
 
44
          </execution>
 
45
        </executions>
 
46
      </plugin>
 
47
    </plugins>
 
48
  </build>
 
49
</project>
 
 
b'\\ No newline at end of file'