pom.xml 12.8 KB
Newer Older
1 2 3 4
<?xml version="1.0" encoding="UTF-8"?>
<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">
  <modelVersion>4.0.0</modelVersion>
  <parent>
5
    <groupId>org.jenkins-ci</groupId>
K
Kohsuke Kawaguchi 已提交
6
    <artifactId>jenkins</artifactId>
K
Kohsuke Kawaguchi 已提交
7
    <version>1.34</version>
8
    <relativePath />
9 10
  </parent>

11
  <groupId>org.jenkins-ci.plugins</groupId>
12
  <artifactId>plugin</artifactId>
13
  <name>Jenkins plugin POM</name>
14
  <version>1.583</version>
15 16 17 18 19 20 21
  <packaging>pom</packaging>

  <!--
    We need the following because the artifactId=plugin but directoryName=plugins, and
    Maven infers the wrong value if I don't specify it explicitly.
  -->
  <scm>
K
Kohsuke Kawaguchi 已提交
22 23 24
    <connection>scm:svn:https://svn.jenkins-ci.org/trunk/hudson/plugins/</connection>
    <developerConnection>scm:svn:https://svn.jenkins-ci.org/trunk/hudson/plugins/</developerConnection>
    <url>https://svn.jenkins-ci.org/trunk/hudson/plugins/</url>
25
    <tag>jenkins-1.583</tag>
26 27 28 29
  </scm>

  <issueManagement>
    <system>JIRA</system>
K
Kohsuke Kawaguchi 已提交
30
    <url>http://issues.jenkins-ci.org/</url>
31 32
  </issueManagement>

33 34
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35
    <concurrency>2</concurrency> <!-- may use e.g. 2C for 2 × (number of cores) -->
36 37
  </properties>

38 39
  <dependencies>
    <dependency>
40
      <groupId>org.jenkins-ci.main</groupId>
K
Kohsuke Kawaguchi 已提交
41
      <artifactId>jenkins-war</artifactId>
42
      <type>war</type>
43
      <version>1.583</version>
44 45 46
      <scope>test</scope>
    </dependency>
    <dependency>
47
      <groupId>org.jenkins-ci.main</groupId>
K
Kohsuke Kawaguchi 已提交
48
      <artifactId>jenkins-core</artifactId>
49
      <version>1.583</version>
50 51 52
      <scope>provided</scope>
    </dependency>
    <dependency>
53
      <groupId>org.jenkins-ci.main</groupId>
K
Kohsuke Kawaguchi 已提交
54
      <artifactId>jenkins-test-harness</artifactId>
55
      <version>1.583</version>
56 57 58 59 60
      <scope>test</scope>
    </dependency>
    <!--
      Maven is so brain-dead that when a dependency is like:

K
Kohsuke Kawaguchi 已提交
61
      plugin -(provided)-> jenkins-core -(compile)-> stapler -(provided)-> servlet-api
62 63 64 65 66 67 68 69 70 71 72 73

      Artifacts beyond the provided/provided dependency will not be made available to the plugin.
      See this in DefaultArtifactFactory.createArtifact() in the maven-artifact module.

      So for us to have servlet API in the classpath, we need to explicitly list servlet-api.
    -->
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.4</version>
      <scope>provided</scope>
    </dependency>
74 75 76 77
    <dependency>
      <!-- for JRE requirement check annotation -->
      <groupId>org.codehaus.mojo</groupId>
      <artifactId>animal-sniffer-annotations</artifactId>
78
      <version>1.9</version>
79 80 81
      <scope>provided</scope>
      <optional>true</optional><!-- no need to have this at runtime -->
    </dependency>
82 83 84 85 86 87 88 89 90 91
  </dependencies>

  <build>
    <!--
      Since new versions need to overwrite old versions, it's better
      not to have version number in the .hpi file name.
    -->
    <finalName>${project.artifactId}</finalName>
    <plugins>
      <plugin>
K
Kohsuke Kawaguchi 已提交
92
        <groupId>org.jenkins-ci.tools</groupId>
93 94 95 96
        <artifactId>maven-hpi-plugin</artifactId>
        <extensions>true</extensions>
        <configuration>
          <showDeprecation>true</showDeprecation>
97
          <contextPath>/jenkins</contextPath>
98 99 100 101 102
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.kohsuke.stapler</groupId>
        <artifactId>maven-stapler-plugin</artifactId>
103
        <!-- version specified in parent pom -->
104 105 106 107
        <extensions>true</extensions>
      </plugin>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
108
        <!-- version specified in parent pom -->
109
        <configuration>
110
          <goals>deploy</goals>
111 112 113 114 115
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.jvnet.localizer</groupId>
        <artifactId>maven-localizer-plugin</artifactId>
116
        <!-- version specified in parent pom -->
117 118 119 120 121 122 123 124 125 126 127 128 129 130
        <executions>
          <execution>
            <goals>
              <goal>generate</goal>
            </goals>
            <configuration>
              <fileMask>Messages.properties</fileMask>
              <outputDirectory>target/generated-sources/localizer</outputDirectory>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
131
        <!-- version specified in parent pom -->
132 133
      </plugin>
      <plugin>
K
Kohsuke Kawaguchi 已提交
134
        <groupId>org.codehaus.gmaven</groupId>
135
        <artifactId>gmaven-plugin</artifactId>
136
        <!-- version specified in grandparent pom -->
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
        <executions>
          <execution>
            <id>test-in-groovy</id>
            <!-- allow tests written in Groovy -->
            <goals>
              <goal>generateTestStubs</goal>
              <goal>testCompile</goal>
            </goals>
          </execution>
        </executions>
        <dependencies>
          <dependency>
            <groupId>ant</groupId>
            <artifactId>ant</artifactId>
            <version>1.6.5</version>
          </dependency>
        </dependencies>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
157
        <version>2.16</version>
158 159 160 161 162 163 164
        <configuration>
          <systemProperties>
            <property>
              <name>hudson.udp</name>
              <value>33849</value>
            </property>
          </systemProperties>
165 166
          <reuseForks>true</reuseForks>
          <forkCount>${concurrency}</forkCount>
167 168
        </configuration>
      </plugin>
169 170 171
      <plugin>
        <groupId>com.cloudbees</groupId>
        <artifactId>maven-license-plugin</artifactId>
172
        <!-- version specified in grandparent pom -->
173 174 175 176 177
        <executions>
          <execution>
            <goals>
              <goal>process</goal>
            </goals>
178
            <phase>prepare-package</phase>
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
            <configuration>
              <!--requireCompleteLicenseInfo>true</requireCompleteLicenseInfo-->
              <generateLicenseXml>target/${project.artifactId}/WEB-INF/licenses.xml</generateLicenseXml>
              <inlineScript><![CDATA[
                filter {
                    def plugins = [] as Set
                    
                    // collect all Jenkins plugins
                    models.entrySet().each { e ->
                        if (e.value.packaging=="hpi")
                            plugins.add(e.key.id)
                    }
                    
                    // filter out dependencies that don't belong to this plugin
                    models.entrySet().removeAll(models.entrySet().findAll { e ->
                        def a = e.key;
                        
                        if (a.dependencyTrail.size()>0 && plugins.contains(a.dependencyTrail[1]))
                            return true; // ignore transitive dependencies through other plugins

                        // if the dependency goes through jenkins core, we don't need to bundle it in the war
                        // because jenkins-core comes in the <provided> scope, I think this is a bug in Maven that it puts such
                        // dependencies into the artifact list.
                        if (a.dependencyTrail.find { trail -> trail.contains(":hudson-core:") || trail.contains(":jenkins-core:") })
                            return true;
                            
                        return false;
                    })
                }              
              ]]></inlineScript>
            </configuration>
          </execution>
        </executions>
      </plugin>
213
    </plugins>
214 215 216 217 218 219 220 221 222 223 224
    <pluginManagement>
      <plugins>
        <plugin>
          <!--
            Because Eclipse lacks JSR-269 support, put the output
            to a different directory
          -->
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-eclipse-plugin</artifactId>
          <configuration>
            <buildOutputDirectory>target/eclipse-classes</buildOutputDirectory>
225 226 227 228
            <additionalProjectnatures>
              <!-- enable Groovy nature by default for DSLD support  -->
              <projectnature>org.eclipse.jdt.groovy.core.groovyNature</projectnature>
            </additionalProjectnatures>
229 230
          </configuration>
        </plugin>
231 232 233 234 235 236 237 238 239
        <!--
            This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.
            the plugins mention here are the ones we do not have direct control over, but are used for a jenkins plugin - all other
            will be changed to in there source to support eclipse soon (hpi, license, localizer, access-modifier). 
            see also: http://wiki.eclipse.org/M2E_compatible_maven_plugins
        -->
        <plugin>
            <groupId>org.eclipse.m2e</groupId>
            <artifactId>lifecycle-mapping</artifactId>
I
imod 已提交
240
            <version>1.0.0</version>
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
            <configuration>
                <lifecycleMappingMetadata>
                    <pluginExecutions>
                        <pluginExecution>
                            <pluginExecutionFilter>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-enforcer-plugin</artifactId>
                                <versionRange>[1.0,)</versionRange>
                                <goals>
                                    <goal>display-info</goal>
                                </goals>
                            </pluginExecutionFilter>
                            <action>
                                <ignore />
                            </action>
                        </pluginExecution>
                        <pluginExecution>
                            <pluginExecutionFilter>
                                <groupId>org.codehaus.gmaven</groupId>
                                <artifactId>gmaven-plugin</artifactId>
261
                                <versionRange>[1.0,)</versionRange>
262 263 264 265 266 267 268 269 270 271 272 273 274
                                <goals>
                                    <goal>testCompile</goal>
                                    <goal>generateTestStubs</goal>
                                </goals>
                            </pluginExecutionFilter>
                            <action>
                                <ignore />
                            </action>
                        </pluginExecution>
                    </pluginExecutions>
                </lifecycleMappingMetadata>
            </configuration>
        </plugin>        
275 276 277 278
        <plugin>
          <!-- make sure our code doesn't have 1.6 dependencies except where we know it -->
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>animal-sniffer-maven-plugin</artifactId>
279
          <version>1.9</version>
280 281 282 283 284 285 286 287
          <executions>
            <execution>
              <goals>
                <goal>check</goal>
              </goals>
              <phase>test</phase>
            </execution>
          </executions>
288 289 290 291 292 293 294 295
          <configuration>
            <!-- outside <execution> so that we can run 'animal-sniffer:check' from the top without breaking anything  -->
            <signature>
              <groupId>org.codehaus.mojo.signature</groupId>
              <artifactId>java15</artifactId>
              <version>1.0</version>
            </signature>
          </configuration>
296
        </plugin>
297 298
      </plugins>
    </pluginManagement>
299 300 301 302 303 304 305
    <extensions>
      <extension>
        <groupId>org.kohsuke</groupId>
        <artifactId>wagon-gitsite</artifactId>
        <version>0.3.5</version>
      </extension>
    </extensions>
306 307 308 309
  </build>

  <repositories>
    <repository>
310 311
      <id>repo.jenkins-ci.org</id>
      <url>http://repo.jenkins-ci.org/public/</url>
312 313 314 315 316 317 318 319 320 321 322
      <releases>
        <enabled>true</enabled>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>
  </repositories>

  <pluginRepositories>
    <pluginRepository>
323 324
      <id>repo.jenkins-ci.org</id>
      <url>http://repo.jenkins-ci.org/public/</url>
325 326 327 328 329 330 331 332 333
      <releases>
        <enabled>true</enabled>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </pluginRepository>
  </pluginRepositories>

334
  <distributionManagement>
335 336 337 338
    <site>
      <id>github-pages</id>
      <url>gitsite:git@github.com/jenkinsci/maven-site.git:plugin-parent</url>
    </site>
339
    <snapshotRepository>
340
      <id>maven.jenkins-ci.org</id>
K
Kohsuke Kawaguchi 已提交
341
      <url>http://maven.jenkins-ci.org:8081/content/repositories/snapshots</url>
342 343
    </snapshotRepository>
  </distributionManagement>
344 345 346 347 348 349 350 351 352 353 354 355 356 357

  <profiles>
    <profile>
      <id>all-tests</id>
      <activation>
        <property>
          <name>!test</name>
        </property>
      </activation>
      <properties>
        <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
      </properties>
    </profile>
  </profiles>
358
</project>