~ubuntu-branches/ubuntu/trusty/build-helper-maven-plugin/trusty-proposed

« back to all changes in this revision

Viewing changes to pom.xml

  • Committer: Package Import Robot
  • Author(s): tony mancill, Emmanuel Bourg, tony mancill
  • Date: 2013-06-01 20:19:34 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130601201934-hzv7zmdcgazfyupp
Tags: 1.7-1
[ Emmanuel Bourg ]
* Team upload.
* New upstream release
* Set the compiler source/target to 1.5
* Updated Standards-Version to 3.9.4 (no changes)
* debian/copyright:
  - Updated the Format URI to 1.0
  - Removed the duplicate Copyright fields

[ tony mancill ]
* debian/control:
  - Add libmaven-invoker-plugin-java to build-depends-indep.
  - Wrap long lines.
  - Update Vcs-Git URL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
2
<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">
 
3
  <modelVersion>4.0.0</modelVersion>
 
4
 
3
5
  <parent>
4
6
    <groupId>org.codehaus.mojo</groupId>
5
7
    <artifactId>mojo-parent</artifactId>
6
 
    <version>23</version>
 
8
    <version>28</version>
7
9
  </parent>
8
 
  <modelVersion>4.0.0</modelVersion>
 
10
 
9
11
  <artifactId>build-helper-maven-plugin</artifactId>
 
12
  <version>1.7</version>
10
13
  <packaging>maven-plugin</packaging>
 
14
 
11
15
  <name>Build Helper Maven Plugin</name>
12
 
  <version>1.5</version>
13
 
 
14
16
  <description>This plugin contains various small independent goals to assist with Maven build lifecycle</description>
15
 
 
 
17
  <inceptionYear>2005</inceptionYear>
 
18
  <licenses>
 
19
    <license>
 
20
      <name>The MIT License</name>
 
21
      <url>http://www.opensource.org/licenses/mit-license.php</url>
 
22
      <distribution>repo</distribution>
 
23
    </license>
 
24
  </licenses> 
 
25
  
 
26
  <developers>
 
27
    <developer>
 
28
      <name>Dan Tran</name>
 
29
      <email>dantran@gmail.com</email>
 
30
      <roles>
 
31
        <role>Developer</role>
 
32
      </roles>
 
33
      <timezone>5</timezone>
 
34
    </developer>
 
35
    <developer>
 
36
      <id>rfscholte</id>
 
37
      <name>Robert Scholte</name>
 
38
      <roles>
 
39
        <role>Developer</role>
 
40
      </roles>
 
41
      <timezone>+1</timezone>
 
42
    </developer>
 
43
  </developers>
 
44
  
16
45
  <prerequisites>
17
46
    <maven>${mavenVersion}</maven>
18
47
  </prerequisites>
19
48
 
 
49
  <scm>
 
50
    <connection>scm:svn:http://svn.codehaus.org/mojo/tags/build-helper-maven-plugin-1.7</connection>
 
51
    <developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/build-helper-maven-plugin-1.7</developerConnection>
 
52
    <url>http://svn.codehaus.org/mojo/tags/build-helper-maven-plugin-1.7</url>
 
53
  </scm>
20
54
  <issueManagement>
21
55
    <system>JIRA</system>
22
56
    <url>http://jira.codehaus.org/browse/MBUILDHELPER</url>
23
57
  </issueManagement>
24
58
 
25
 
  <inceptionYear>2005</inceptionYear>
26
 
 
27
 
  <scm>
28
 
    <connection>scm:svn:http://svn.codehaus.org/mojo/tags/build-helper-maven-plugin-1.5</connection>
29
 
    <developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/build-helper-maven-plugin-1.5</developerConnection>
30
 
    <url>http://svn.codehaus.org/mojo/tags/build-helper-maven-plugin-1.5</url>
31
 
  </scm>
32
 
 
33
 
  <developers>
34
 
    <developer>
35
 
      <name>Dan Tran</name>
36
 
      <email>dantran@gmail.com</email>
37
 
      <roles>
38
 
        <role>Developer</role>
39
 
      </roles>
40
 
      <timezone>5</timezone>
41
 
    </developer>
42
 
  </developers>
43
 
 
44
 
  <licenses>
45
 
    <license>
46
 
      <name>The MIT License</name>
47
 
      <url>http://www.opensource.org/licenses/mit-license.php</url>
48
 
      <distribution>repo</distribution>
49
 
    </license>
50
 
  </licenses>
 
59
  <properties>
 
60
    <mavenVersion>2.0.6</mavenVersion>  <!-- due to MNG-2892 -->
 
61
    <mojo.java.target>1.5</mojo.java.target>
 
62
  </properties>
51
63
 
52
64
  <dependencies>
53
65
    <dependency>
87
99
      <plugin>
88
100
        <groupId>org.apache.maven.plugins</groupId>
89
101
        <artifactId>maven-checkstyle-plugin</artifactId>
 
102
        <!-- version inherited -->
90
103
        <configuration>
91
104
          <configLocation>config/maven_checks.xml</configLocation>
92
105
          <headerLocation>header.txt</headerLocation>
93
106
        </configuration>
94
107
      </plugin>
95
108
      <plugin>
 
109
        <groupId>org.apache.maven.plugins</groupId>
96
110
        <artifactId>maven-changes-plugin</artifactId>
97
 
        <version>2.3</version>
 
111
        <version>2.5</version>
98
112
        <reportSets>
99
113
          <reportSet>
100
114
            <reports>
114
128
      <plugin>
115
129
        <groupId>org.apache.maven.plugins</groupId>
116
130
        <artifactId>maven-changelog-plugin</artifactId>
117
 
        <version>2.1</version>
 
131
        <version>2.2</version>
118
132
      </plugin>
119
133
    </plugins>
120
134
  </reporting>
121
135
 
122
 
  <properties>
123
 
    <mavenVersion>2.0.2</mavenVersion>
124
 
  </properties>
 
136
  <profiles>
 
137
    <profile>
 
138
      <id>run-its</id>
 
139
      <activation>
 
140
        <property>
 
141
          <name>skipTests</name>
 
142
          <value>!true</value>
 
143
        </property>
 
144
      </activation>
 
145
      <build>
 
146
        <plugins>
 
147
          <plugin>
 
148
            <groupId>org.apache.maven.plugins</groupId>
 
149
            <artifactId>maven-invoker-plugin</artifactId>
 
150
            <configuration>
 
151
              <debug>true</debug>
 
152
              <postBuildHookScript>verify</postBuildHookScript>
 
153
              <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
 
154
              <settingsFile>src/it/settings.xml</settingsFile>
 
155
              <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
 
156
            </configuration>
 
157
            <executions>
 
158
              <execution>
 
159
                <id>integration-test</id>
 
160
                <goals>
 
161
                  <goal>install</goal>
 
162
                  <goal>run</goal>
 
163
                </goals>
 
164
              </execution>
 
165
            </executions>
 
166
          </plugin>
 
167
        </plugins>
 
168
      </build>
 
169
    </profile>
 
170
  </profiles>
125
171
</project>