~ubuntu-branches/ubuntu/trusty/maven-invoker/trusty

« back to all changes in this revision

Viewing changes to pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Miguel Landaeta
  • Date: 2011-08-14 20:37:32 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110814203732-8qlz0jzriitpwxvq
Tags: 2.0.11-1
* Team upload.
* New upstream release.
* Bump Standards-Version to 3.9.2. No changes were required.
* Small fix in long description.
* Add mh_clean call in clean target.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version='1.0' encoding='UTF-8'?>
 
2
 
2
3
<!--
3
 
  Licensed to the Apache Software Foundation (ASF) under one
4
 
  or more contributor license agreements.  See the NOTICE file
5
 
  distributed with this work for additional information
6
 
  regarding copyright ownership.  The ASF licenses this file
7
 
  to you under the Apache License, Version 2.0 (the
8
 
  "License"); you may not use this file except in compliance
9
 
  with the License.  You may obtain a copy of the License at
10
 
  
11
 
    http://www.apache.org/licenses/LICENSE-2.0
12
 
  
13
 
  Unless required by applicable law or agreed to in writing,
14
 
  software distributed under the License is distributed on an
15
 
  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
 
  KIND, either express or implied.  See the License for the
17
 
  specific language governing permissions and limitations
 
4
Licensed to the Apache Software Foundation (ASF) under one
 
5
or more contributor license agreements.  See the NOTICE file
 
6
distributed with this work for additional information
 
7
regarding copyright ownership.  The ASF licenses this file
 
8
to you under the Apache License, Version 2.0 (the
 
9
"License"); you may not use this file except in compliance
 
10
with the License.  You may obtain a copy of the License at
 
11
 
 
12
  http://www.apache.org/licenses/LICENSE-2.0
 
13
 
 
14
Unless required by applicable law or agreed to in writing,
 
15
software distributed under the License is distributed on an
 
16
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 
17
KIND, either express or implied.  See the License for the
 
18
specific language governing permissions and limitations
18
19
under the License.
19
20
-->
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/maven-v4_0_0.xsd">
 
21
 
 
22
<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
23
  <modelVersion>4.0.0</modelVersion>
 
24
 
22
25
  <parent>
23
26
    <groupId>org.apache.maven.shared</groupId>
24
27
    <artifactId>maven-shared-components</artifactId>
25
 
    <version>9</version>
 
28
    <version>12</version>
26
29
  </parent>
 
30
 
27
31
  <artifactId>maven-invoker</artifactId>
28
 
  <version>2.0.10</version>
 
32
  <version>2.0.11</version>
 
33
 
29
34
  <name>Maven Invoker</name>
30
35
  <description>A component to programmatically invoke Maven.</description>
 
36
 
 
37
  <scm>
 
38
    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-invoker-2.0.11</connection>
 
39
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-invoker-2.0.11</developerConnection>
 
40
    <url>http://svn.apache.org/viewvc/maven/shared/tags/maven-invoker-2.0.11</url>
 
41
  </scm>
31
42
  <issueManagement>
32
43
    <system>jira</system>
33
44
    <url>http://jira.codehaus.org/browse/MSHARED/component/13271</url>
34
45
  </issueManagement>
 
46
 
35
47
  <dependencies>
36
48
    <dependency>
37
49
      <groupId>org.codehaus.plexus</groupId>
45
57
      <scope>test</scope>
46
58
    </dependency>
47
59
  </dependencies>
 
60
 
48
61
  <build>
49
 
    <pluginManagement>
50
 
      <plugins>
51
 
        <plugin>
52
 
          <artifactId>maven-site-plugin</artifactId>
53
 
          <version>2.0-beta-7</version>
54
 
        </plugin>
55
 
      </plugins>
56
 
    </pluginManagement>
57
62
    <plugins>
58
63
      <plugin>
59
64
        <artifactId>maven-surefire-plugin</artifactId>
87
92
      </plugin>
88
93
    </plugins>
89
94
  </build>
90
 
  <reporting>
91
 
    <plugins>
92
 
      <plugin>
93
 
        <groupId>org.apache.maven.plugins</groupId>
94
 
        <artifactId>maven-project-info-reports-plugin</artifactId>
95
 
        <version>2.1</version>
96
 
      </plugin>
97
 
      <plugin>
98
 
        <groupId>org.codehaus.mojo</groupId>
99
 
        <artifactId>cobertura-maven-plugin</artifactId>
100
 
        <version>2.2</version>
101
 
      </plugin>
102
 
      <plugin>
103
 
        <groupId>org.apache.maven.plugins</groupId>
104
 
        <artifactId>maven-surefire-report-plugin</artifactId>
105
 
        <version>2.4.3</version>
106
 
        <reportSets>
107
 
          <reportSet>
108
 
            <reports>
109
 
              <report>report-only</report>
110
 
            </reports>
111
 
          </reportSet>
112
 
        </reportSets>
113
 
      </plugin>
114
 
      <plugin>
115
 
        <groupId>org.apache.maven.plugins</groupId>
116
 
        <artifactId>maven-changes-plugin</artifactId>
117
 
        <version>2.0</version>
118
 
        <configuration>
119
 
          <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
120
 
        </configuration>
121
 
        <reportSets>
122
 
          <reportSet>
123
 
            <reports>
124
 
              <report>changes-report</report>
125
 
            </reports>
126
 
          </reportSet>
127
 
        </reportSets>
128
 
      </plugin>
129
 
      <plugin>
130
 
        <groupId>org.apache.maven.plugins</groupId>
131
 
        <artifactId>maven-javadoc-plugin</artifactId>
132
 
        <version>2.4</version>
133
 
        <configuration>
134
 
          <quiet>true</quiet>
135
 
          <links>
136
 
            <link>http://java.sun.com/javase/6/docs/api/</link>
137
 
          </links>
138
 
          <tags>
139
 
            <tag>
140
 
              <name>plexus.component</name>
141
 
              <placement>Xt</placement>
142
 
            </tag>
143
 
            <tag>
144
 
              <name>plexus.configuration</name>
145
 
              <placement>Xf</placement>
146
 
            </tag>
147
 
            <tag>
148
 
              <name>plexus.requirement</name>
149
 
              <placement>Xf</placement>
150
 
            </tag>
151
 
          </tags>
152
 
        </configuration>
153
 
        <reportSets>
154
 
          <reportSet>
155
 
            <reports>
156
 
              <report>javadoc</report>
157
 
            </reports>
158
 
          </reportSet>
159
 
        </reportSets>
160
 
      </plugin>
161
 
    </plugins>
162
 
  </reporting>
163
 
  <scm>
164
 
    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/shared/tags/maven-invoker-2.0.10</connection>
165
 
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/shared/tags/maven-invoker-2.0.10</developerConnection>
166
 
    <url>http://svn.apache.org/viewvc/maven/shared/tags/maven-invoker-2.0.10</url>
167
 
  </scm>
 
95
 
 
96
  <profiles>
 
97
    <profile>
 
98
      <id>reporting</id>
 
99
      <reporting>
 
100
        <plugins>
 
101
          <plugin>
 
102
            <groupId>org.apache.maven.plugins</groupId>
 
103
            <artifactId>maven-changes-plugin</artifactId>
 
104
            <version>2.0</version>
 
105
            <configuration>
 
106
              <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
 
107
            </configuration>
 
108
            <reportSets>
 
109
              <reportSet>
 
110
                <reports>
 
111
                  <report>changes-report</report>
 
112
                </reports>
 
113
              </reportSet>
 
114
            </reportSets>
 
115
          </plugin>
 
116
        </plugins>
 
117
      </reporting>
 
118
    </profile>
 
119
    <profile>
 
120
      <id>apache-release</id>
 
121
      <build>
 
122
        <plugins>
 
123
          <plugin>
 
124
            <artifactId>maven-assembly-plugin</artifactId>
 
125
            <executions>
 
126
              <execution>
 
127
                <id>source-release-assembly</id>
 
128
                <configuration>
 
129
                  <skipAssembly>true</skipAssembly>
 
130
                </configuration>
 
131
              </execution>
 
132
              <execution>
 
133
                <id>source-release-assembly-fixed</id>
 
134
                <phase>package</phase>
 
135
                <goals>
 
136
                  <goal>single</goal>
 
137
                </goals>
 
138
                <configuration>
 
139
                  <descriptors>
 
140
                    <descriptor>src/main/assembly/source-release.xml</descriptor>
 
141
                  </descriptors>
 
142
                  <tarLongFileFormat>gnu</tarLongFileFormat>
 
143
                </configuration>
 
144
              </execution>
 
145
            </executions>
 
146
          </plugin>
 
147
        </plugins>
 
148
      </build>
 
149
    </profile>
 
150
  </profiles>
168
151
</project>