pom.xml 12.8 KB
Newer Older
1 2 3
<?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>
4

5
  <parent>
6
    <groupId>org.jenkins-ci</groupId>
K
Kohsuke Kawaguchi 已提交
7
    <artifactId>jenkins</artifactId>
K
Kohsuke Kawaguchi 已提交
8
    <version>1.34</version>
9
    <relativePath />
10 11
  </parent>

12
  <groupId>org.jenkins-ci.plugins</groupId>
13
  <artifactId>plugin</artifactId>
14
  <name>Jenkins plugin POM</name>
15
  <version>1.613-SNAPSHOT</version>
16 17 18 19 20 21 22
  <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 已提交
23 24 25
    <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>
26
    <tag>HEAD</tag>
27 28 29 30
  </scm>

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

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

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

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

      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>
75 76 77 78
    <dependency>
      <!-- for JRE requirement check annotation -->
      <groupId>org.codehaus.mojo</groupId>
      <artifactId>animal-sniffer-annotations</artifactId>
79
      <version>1.9</version>
80 81 82
      <scope>provided</scope>
      <optional>true</optional><!-- no need to have this at runtime -->
    </dependency>
83 84 85 86 87 88 89 90 91 92
  </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 已提交
93
        <groupId>org.jenkins-ci.tools</groupId>
94 95 96 97
        <artifactId>maven-hpi-plugin</artifactId>
        <extensions>true</extensions>
        <configuration>
          <showDeprecation>true</showDeprecation>
98
          <contextPath>/jenkins</contextPath>
99 100 101 102 103
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.kohsuke.stapler</groupId>
        <artifactId>maven-stapler-plugin</artifactId>
104
        <!-- version specified in parent pom -->
105 106 107 108
        <extensions>true</extensions>
      </plugin>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
109
        <!-- version specified in parent pom -->
110
        <configuration>
111
          <goals>deploy</goals>
112 113 114 115 116
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.jvnet.localizer</groupId>
        <artifactId>maven-localizer-plugin</artifactId>
117
        <!-- version specified in parent pom -->
118 119 120 121 122 123 124 125 126 127 128 129 130 131
        <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>
132
        <!-- version specified in parent pom -->
133 134
      </plugin>
      <plugin>
K
Kohsuke Kawaguchi 已提交
135
        <groupId>org.codehaus.gmaven</groupId>
136
        <artifactId>gmaven-plugin</artifactId>
137
        <!-- version specified in grandparent pom -->
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
        <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>
158
        <version>2.16</version>
159 160 161 162 163 164 165
        <configuration>
          <systemProperties>
            <property>
              <name>hudson.udp</name>
              <value>33849</value>
            </property>
          </systemProperties>
166 167
          <reuseForks>true</reuseForks>
          <forkCount>${concurrency}</forkCount>
168 169
        </configuration>
      </plugin>
170 171 172
      <plugin>
        <groupId>com.cloudbees</groupId>
        <artifactId>maven-license-plugin</artifactId>
173
        <!-- version specified in grandparent pom -->
174 175 176 177 178
        <executions>
          <execution>
            <goals>
              <goal>process</goal>
            </goals>
179
            <phase>prepare-package</phase>
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 213
            <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>
214
    </plugins>
215 216 217 218 219 220 221 222 223 224 225
    <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>
226 227 228 229
            <additionalProjectnatures>
              <!-- enable Groovy nature by default for DSLD support  -->
              <projectnature>org.eclipse.jdt.groovy.core.groovyNature</projectnature>
            </additionalProjectnatures>
230 231
          </configuration>
        </plugin>
232 233 234 235 236 237 238 239 240
        <!--
            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 已提交
241
            <version>1.0.0</version>
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
            <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>
262
                                <versionRange>[1.0,)</versionRange>
263 264 265 266 267 268 269 270 271 272 273 274 275
                                <goals>
                                    <goal>testCompile</goal>
                                    <goal>generateTestStubs</goal>
                                </goals>
                            </pluginExecutionFilter>
                            <action>
                                <ignore />
                            </action>
                        </pluginExecution>
                    </pluginExecutions>
                </lifecycleMappingMetadata>
            </configuration>
        </plugin>        
276 277 278 279
        <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>
280
          <version>1.9</version>
281 282 283 284 285 286 287 288
          <executions>
            <execution>
              <goals>
                <goal>check</goal>
              </goals>
              <phase>test</phase>
            </execution>
          </executions>
289 290 291 292 293 294 295 296
          <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>
297
        </plugin>
298 299
      </plugins>
    </pluginManagement>
300 301 302 303 304 305 306
    <extensions>
      <extension>
        <groupId>org.kohsuke</groupId>
        <artifactId>wagon-gitsite</artifactId>
        <version>0.3.5</version>
      </extension>
    </extensions>
307 308 309 310
  </build>

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

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

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

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