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>
J
Jesse Glick 已提交
7
    <version>1.33</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.574-SNAPSHOT</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 26 27 28
  </scm>

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

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

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

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

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

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

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

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

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