pom.xml 27.1 KB
Newer Older
1
<?xml version="1.0" encoding="UTF-8"?>
K
kohsuke 已提交
2 3 4
<!--
The MIT License

5
Copyright (c) 2004-2011, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh
K
kohsuke 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
25
<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">
K
kohsuke 已提交
26
  <modelVersion>4.0.0</modelVersion>
27

K
kohsuke 已提交
28
  <parent>
29 30
    <groupId>org.jenkins-ci</groupId>
    <artifactId>jenkins</artifactId>
C
Christoph Kutzinski 已提交
31
    <version>1.25</version>
K
kohsuke 已提交
32
  </parent>
33

34
  <groupId>org.jenkins-ci.main</groupId>
K
kohsuke 已提交
35
  <artifactId>pom</artifactId>
36
  <version>1.480-SNAPSHOT</version>
K
kohsuke 已提交
37
  <packaging>pom</packaging>
38

39
  <name>Jenkins main module</name>
40
  <description>The module that constitutes the main jenkins.war</description>
41 42 43 44 45 46 47
  <licenses>
    <license>
      <name>The MIT license</name>
      <url>http://www.opensource.org/licenses/mit-license.php</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
O
Olivier Lamy 已提交
48

K
kohsuke 已提交
49 50
  <modules>
    <module>core</module>
51
    <module>maven-plugin</module>
52
    <module>ui-samples-plugin</module>
K
kohsuke 已提交
53
    <module>war</module>
K
kohsuke 已提交
54
    <module>test</module>
55
    <module>cli</module>
K
kohsuke 已提交
56
  </modules>
57

58
  <scm>
59 60 61
    <connection>scm:git:git://github.com/jenkinsci/jenkins.git</connection>
    <developerConnection>scm:git:ssh://git@github.com/jenkinsci/jenkins.git</developerConnection>
    <url>https://github.com/jenkinsci/jenkins</url>
62
  </scm>
63 64 65 66 67 68 69 70 71 72 73
  <distributionManagement>
    <site>
      <id>hudson-www</id>
      <url>scp://jenkins-ci.org/home/kohsuke/www/hudson-labs.org/maven-site/</url>
    </site>
    <snapshotRepository>
      <id>maven.jenkins-ci.org</id>
      <url>http://maven.jenkins-ci.org:8081/content/repositories/snapshots</url>
    </snapshotRepository>
  </distributionManagement>

O
olivier lamy 已提交
74 75 76 77 78
  <issueManagement>
    <system>jira</system>
    <url>https://issues.jenkins-ci.org/browse/JENKINS/component/15593</url>
  </issueManagement>

79 80 81 82
  <properties>
    <!-- *.html files are in UTF-8, and *.properties are in iso-8859-1, so this configuration is acturally incorrect,
    but this suppresses a warning from Maven, and as long as we don't do filtering we should be OK. -->
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
83
    <build.type>private</build.type>
O
olivier lamy 已提交
84 85 86 87 88 89 90 91

    <!-- configuration for patch tracker plugin  -->
    <project.patchManagement.system>github</project.patchManagement.system>
    <patch.request.organisation>jenkinsci</patch.request.organisation>
    <patch.request.repository>jenkins</patch.request.repository>
    <project.patchManagement.url>https://api.github.com</project.patchManagement.url>
    <patch.tracker.serverId>jenkins-jira</patch.tracker.serverId>

92
    <slf4jVersion>1.6.2</slf4jVersion> <!-- < 1.6.x version didn't specify the license (MIT) -->
93
    <netbeans.compile.on.save>none</netbeans.compile.on.save> <!-- we rely on Maven source generation -->
94 95
  </properties>

O
olivier lamy 已提交
96 97 98



99 100
  <repositories>
    <repository>
101 102
      <id>repo.jenkins-ci.org</id>
      <url>http://repo.jenkins-ci.org/public/</url>
103 104 105 106 107 108 109
      <releases>
        <enabled>true</enabled>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>
110 111 112 113 114 115 116 117 118 119
    <repository><!-- only until we release ant and javadoc plugins -->
      <id>maven.jenkins-ci.org</id>
      <url>http://maven.jenkins-ci.org/content/repositories/snapshots/</url>
      <releases>
        <enabled>false</enabled>
      </releases>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
120 121 122
  </repositories>
  <pluginRepositories>
    <pluginRepository>
123 124
      <id>repo.jenkins-ci.org</id>
      <url>http://repo.jenkins-ci.org/public/</url>
125 126 127 128 129 130 131 132 133 134 135
      <releases>
        <enabled>true</enabled>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </pluginRepository>
  </pluginRepositories>

  <dependencyManagement>
    <dependencies>
136

137 138 139
      <dependency>
        <groupId>org.apache.ant</groupId>
        <artifactId>ant</artifactId>
K
Kohsuke Kawaguchi 已提交
140
        <version>1.8.3</version>
141 142
      </dependency>

143 144 145 146 147
      <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
        <version>1.4</version>
      </dependency>
148

149 150
      <dependency>
        <groupId>junit</groupId>
151
        <artifactId>junit-dep</artifactId>
152 153 154
        <version>4.10</version>
      </dependency>

155 156 157 158 159 160 161 162 163 164 165 166
      <dependency>
        <groupId>org.hamcrest</groupId>
        <artifactId>hamcrest-core</artifactId>
        <version>1.2.1</version>
      </dependency>

      <dependency>
        <groupId>org.hamcrest</groupId>
        <artifactId>hamcrest-library</artifactId>
        <version>1.2.1</version>
      </dependency>

167 168 169 170
      <dependency>
        <groupId>org.mockito</groupId>
        <artifactId>mockito-core</artifactId>
        <version>1.8.5</version>
171
      </dependency>
172 173 174 175 176 177 178 179 180 181 182
      
      <dependency>
        <groupId>org.powermock</groupId>
        <artifactId>powermock-module-junit4</artifactId>
        <version>1.4.10</version>
      </dependency>
      <dependency>
        <groupId>org.powermock</groupId>
        <artifactId>powermock-api-mockito</artifactId>
        <version>1.4.10</version>
      </dependency>
183 184 185 186 187 188

      <dependency>
        <groupId>commons-httpclient</groupId>
        <artifactId>commons-httpclient</artifactId>
        <version>3.1</version>
      </dependency>
189 190 191 192

      <dependency>
        <groupId>org.jenkins-ci.main</groupId>
        <artifactId>remoting</artifactId>
K
Kohsuke Kawaguchi 已提交
193
        <version>2.16</version>
194
      </dependency>
195 196 197 198

      <dependency>
        <groupId>com.google.guava</groupId>
        <artifactId>guava</artifactId>
199
        <version>11.0.1</version>
200
      </dependency>
201 202 203 204 205 206 207 208
      
      <dependency>
        <!-- we'd like to use stock Guice, but that breaks Maven embedder
               because it uses a modified Guice called Sisu -->
        <groupId>org.sonatype.sisu</groupId>
        <artifactId>sisu-guice</artifactId>
        <version>3.1.0</version>
      </dependency>
209

210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
      <!-- SLF4J used in maven-plugin and core -->
      <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-api</artifactId>
        <version>${slf4jVersion}</version>
      </dependency>
      <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-nop</artifactId>
        <version>${slf4jVersion}</version>
      </dependency>
      <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-jdk14</artifactId>
        <version>${slf4jVersion}</version>
      </dependency>
      <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>jcl-over-slf4j</artifactId>
        <version>${slf4jVersion}</version>
      </dependency>
231 232 233 234 235
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <dependency>
      <!-- for JRE requirement check annotation -->
236 237 238
      <groupId>org.codehaus.mojo</groupId>
      <artifactId>animal-sniffer-annotations</artifactId>
      <version>1.7</version>
239
      <scope>provided</scope>
240 241 242 243 244 245 246 247 248
      <optional>true</optional><!-- no need to have this at runtime -->
    </dependency>
    <dependency>
      <groupId>org.jvnet.hudson</groupId>
      <artifactId>test-annotations</artifactId>
      <version>1.0</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
249

250
  <build>
K
kohsuke 已提交
251
    <defaultGoal>install</defaultGoal>
S
Stephen Connolly 已提交
252 253 254 255 256 257 258 259 260 261
    <resources>
      <resource>
        <directory>${basedir}/src/main/resources</directory>
        <filtering>false</filtering>
      </resource>
      <resource>
        <directory>${basedir}/src/filter/resources</directory>
        <filtering>true</filtering>
      </resource>
    </resources>
A
abayer 已提交
262 263
    <pluginManagement>
      <plugins>
264 265 266
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>build-helper-maven-plugin</artifactId>
267
          <version>1.7</version>
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
          <executions>
            <execution>
              <id>timestamp-property</id>
              <goals>
                <goal>timestamp-property</goal>
              </goals>
              <configuration>
                <name>now</name>
                <pattern>MM/dd/yyyy HH:mm z</pattern>
                <locale>en_US</locale>
              </configuration>
            </execution>
            <execution>
              <id>version-property</id>
              <goals>
                <goal>regex-property</goal>
              </goals>
              <configuration>
                <name>build.version</name>
                <value>${project.version}</value>
                <regex>-SNAPSHOT</regex>
                <replacement>-SNAPSHOT (${build.type}-${now}-${user.name})</replacement>
290
                <failIfNoMatch>false</failIfNoMatch>
291 292 293 294
              </configuration>
            </execution>
          </executions>
        </plugin>
A
abayer 已提交
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
        <plugin>
          <groupId>org.kohsuke.gmaven</groupId>
          <artifactId>gmaven-plugin</artifactId>
          <version>1.0-rc-5-patch-2</version>
          <dependencies>
            <dependency><!-- this needs to be visible to Ant inside GMaven, so has to be a plugin dependency -->
              <groupId>org.apache.ant</groupId>
              <artifactId>ant-junit</artifactId>
              <version>1.7.0</version>
            </dependency>
            <dependency>
              <groupId>net.sourceforge.cobertura</groupId>
              <artifactId>cobertura</artifactId>
              <version>1.9</version>
            </dependency>
            <dependency>
              <!-- this provided scope dependency doesn't get added to GMaven unless explicitly added here -->
              <groupId>javax.servlet</groupId>
              <artifactId>servlet-api</artifactId>
              <version>2.4</version>
            </dependency>
          </dependencies>
        </plugin>
318
        <plugin>
S
Seiji Sogabe 已提交
319 320
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-deploy-plugin</artifactId>
321 322
          <version>2.6</version>
        </plugin>
323 324 325 326
        <plugin>
          <artifactId>maven-gpg-plugin</artifactId>
          <version>1.2</version>
        </plugin>
S
Seiji Sogabe 已提交
327 328 329 330
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-install-plugin</artifactId>
          <version>2.3.1</version>
331
        </plugin>
S
Seiji Sogabe 已提交
332 333
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
334
          <artifactId>maven-javadoc-plugin</artifactId>
335
          <version>2.8</version>
336
        </plugin>
337
        <plugin>
S
Seiji Sogabe 已提交
338
          <groupId>org.apache.maven.plugins</groupId>
339 340 341
          <artifactId>maven-jar-plugin</artifactId>
          <version>2.3.1</version>
        </plugin>
342 343 344
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-war-plugin</artifactId>
345
          <version>2.1.1</version>
346
        </plugin>
347
        <plugin>
S
Seiji Sogabe 已提交
348
          <groupId>org.apache.maven.plugins</groupId>
349
          <artifactId>maven-surefire-plugin</artifactId>
O
olivier lamy 已提交
350
          <version>2.10</version>
S
Seiji Sogabe 已提交
351 352 353
          <configuration>
            <systemPropertyVariables>
              <java.io.tmpdir>${project.build.directory}</java.io.tmpdir>
354
              <forkedProcessTimeoutInSeconds>3600</forkedProcessTimeoutInSeconds>
355
              <java.awt.headless>true</java.awt.headless>
S
Seiji Sogabe 已提交
356 357
            </systemPropertyVariables>
          </configuration>
358 359
        </plugin>
        <plugin>
S
Seiji Sogabe 已提交
360
          <groupId>org.apache.maven.plugins</groupId>
361
          <artifactId>maven-dependency-plugin</artifactId>
362
          <version>2.3</version>
363 364
        </plugin>
        <plugin>
S
Seiji Sogabe 已提交
365
          <groupId>org.apache.maven.plugins</groupId>
366
          <artifactId>maven-assembly-plugin</artifactId>
367
          <version>2.2.1</version>
368
        </plugin>
S
Stephen Connolly 已提交
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
        <plugin>
          <artifactId>maven-jarsigner-plugin</artifactId>
          <version>1.2</version>
          <configuration>
            <!--
              during the development, debug profile will cause
              the jars to be signed by a self-certified dummy public key.

              For release, you should define the real values in ~/.m2/settings.xml
            -->
            <alias>${hudson.sign.alias}</alias>
            <storepass>${hudson.sign.storepass}</storepass>
            <keystore>${hudson.sign.keystore}</keystore>
          </configuration>
        </plugin>
S
Seiji Sogabe 已提交
384 385 386
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-resources-plugin</artifactId>
387
          <version>2.5</version>
S
Seiji Sogabe 已提交
388
        </plugin>
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
        <plugin>
          <!--
            Both test harness and core uses stapler as an extension,
            and apparently without having extension preloaded at the parent, the main artifact of the 'test' module
            ends up installed with 'stapler-jar' extension (which normally is an indication that the ArtifactTypeHandler
            defined in this extension is not getting picked up.)

            To avoid this problem, I'm defining an extension here. Not sure if the nested <dependencies> is necessary.
            It's also possible that I misdiagnosed the problem and the root cause is something entirely different.

            To test if you can remove this work around, do a rebuild from main and see if the test harness
            is installed with the right extension into the local repository.
          -->
          <groupId>org.kohsuke.stapler</groupId>
          <artifactId>maven-stapler-plugin</artifactId>
404
          <version>1.16</version>
405 406 407 408 409 410 411 412 413
          <extensions>true</extensions>
          <dependencies>
            <dependency>
              <groupId>org.jvnet.maven-jellydoc-plugin</groupId>
              <artifactId>maven-jellydoc-plugin</artifactId>
              <version>1.4</version>
            </dependency>
          </dependencies>
        </plugin>
K
Kohsuke Kawaguchi 已提交
414 415 416 417 418
        <plugin>
          <groupId>org.kohsuke</groupId>
          <artifactId>access-modifier-checker</artifactId>
          <version>1.0</version>
        </plugin>
419 420 421
        <plugin>
          <groupId>com.cloudbees</groupId>
          <artifactId>maven-license-plugin</artifactId>
422
          <version>1.6</version>
423 424 425 426 427 428 429 430
          <executions>
            <execution>
              <goals>
                <goal>process</goal>
              </goals>
              <phase>compile</phase>
              <configuration>
                <requireCompleteLicenseInfo>true</requireCompleteLicenseInfo>
431
                <script>../licenseCompleter.groovy</script>
432 433 434 435
              </configuration>
            </execution>
          </executions>
        </plugin>
436 437 438 439 440 441 442 443 444
        <plugin>
          <!-- see http://maven-junit-plugin.kenai.com/ for more info -->
          <groupId>org.kohsuke</groupId>
          <artifactId>maven-junit-plugin</artifactId>
          <version>1.9</version>
         </plugin>
        <plugin>
          <groupId>org.jvnet.localizer</groupId>
          <artifactId>maven-localizer-plugin</artifactId>
445
          <version>1.12</version>
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
         </plugin>
        <plugin>
          <groupId>org.jvnet.hudson.tools</groupId>
          <artifactId>maven-encoding-plugin</artifactId>
          <version>1.1</version>
        </plugin>
        <plugin>
          <groupId>com.infradna.tool</groupId>
          <artifactId>bridge-method-injector</artifactId>
          <version>1.4</version>
        </plugin>
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>antlr-maven-plugin</artifactId>
          <version>2.1</version>
        </plugin>
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>apt-maven-plugin</artifactId>
          <version>1.0-alpha-4</version>
        </plugin>
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>cobertura-maven-plugin</artifactId>
470
          <version>2.5</version>
471 472 473 474
        </plugin>
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>findbugs-maven-plugin</artifactId>
475
          <version>2.3.2</version>
476 477 478 479 480 481 482 483 484 485
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-pmd-plugin</artifactId>
          <version>2.5</version>
         </plugin>
        <plugin>
          <!-- this is really just a patched version of maven-jetty-plugin to workaround issue #932 -->
          <groupId>org.jenkins-ci.tools</groupId>
          <artifactId>maven-jenkins-dev-plugin</artifactId>
486
          <version>6.1.26-jenkins-2</version>
487 488 489 490
        </plugin>
        <plugin>
          <groupId>org.jvnet.updatecenter2</groupId>
          <artifactId>maven-makepkgs-plugin</artifactId>
491 492
          <version>0.5.1</version>
        </plugin>
493 494 495
        <plugin>
          <groupId>org.jenkins-ci.tools</groupId>
          <artifactId>maven-hpi-plugin</artifactId>
496
          <version>1.88</version>
497
        </plugin>
498 499 500 501 502
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-site-plugin</artifactId>
          <version>3.0</version>
        </plugin>
A
abayer 已提交
503 504
      </plugins>
    </pluginManagement>
505

506
    <plugins>
507 508 509 510
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
      </plugin>
511 512
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
513
        <version>2.1</version>
514
        <configuration>
515
          <!-- enable release profile during the release, create IPS package, and sign bits. -->
K
kohsuke 已提交
516
          <prepareVerifyArgs>-P release,sign</prepareVerifyArgs>
517 518
          <!-- work around for a bug in javadoc plugin that causes the release to fail. see MRELEASE-271 -->
          <preparationGoals>clean install</preparationGoals>
519
          <goals>-DskipTests javadoc:javadoc animal-sniffer:check deploy javadoc:aggregate</goals>
K
Kohsuke Kawaguchi 已提交
520 521
          <pushChanges>false</pushChanges>
          <localCheckout>true</localCheckout>
522
          <tagNameFormat>jenkins-@{project.version}</tagNameFormat>
523 524
        </configuration>
      </plugin>
K
kohsuke 已提交
525 526
      <plugin>
        <artifactId>maven-remote-resources-plugin</artifactId>
527
        <version>1.2</version>
K
kohsuke 已提交
528 529 530 531 532 533 534 535 536 537 538 539 540
        <executions>
          <execution>
            <goals>
              <goal>process</goal>
            </goals>
            <configuration>
              <resourceBundles>
                <resourceBundle>org.jvnet.hudson:license:1.0</resourceBundle>
              </resourceBundles>
            </configuration>
          </execution>
        </executions>
      </plugin>
541 542
      <plugin>
        <!-- make sure our code doesn't have 1.6 dependencies except where we know it -->
543 544 545
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>animal-sniffer-maven-plugin</artifactId>
        <version>1.7</version>
546 547
        <configuration>
          <signature>
548 549
            <groupId>org.codehaus.mojo.signature</groupId>
            <artifactId>java15</artifactId>
550 551 552
            <version>1.0</version>
          </signature>
        </configuration>
553
      </plugin>
554

555
      <plugin>
556
        <artifactId>maven-compiler-plugin</artifactId>
O
olivier lamy 已提交
557
        <version>2.5</version>
558
        <configuration><!-- we specify this in the parent POM, so this is redundant, but otherwise IntelliJ is unhappy -->
559 560
          <source>1.5</source>
          <target>1.5</target>
O
olivier lamy 已提交
561 562
          <!-- default reuseCreated is more performant 
          feel free to uncomment if you have any issues on your platform
563
          <compilerReuseStrategy>alwaysNew</compilerReuseStrategy>
O
olivier lamy 已提交
564
          -->
565 566 567
        </configuration>
      </plugin>

568
      <plugin>
S
Seiji Sogabe 已提交
569
        <groupId>org.apache.maven.plugins</groupId>
570
        <artifactId>maven-enforcer-plugin</artifactId>
571
        <version>1.0.1</version>
572 573 574 575 576 577 578 579 580
        <executions>
          <execution>
            <goals>
              <goal>enforce</goal>
            </goals>
            <configuration>
              <rules>
                <!-- There is a bug in JDK 1.5's compiler therefore need to compile with 1.6 -->
                <requireJavaVersion>
581
                  <version>1.6.0-18</version>
582
                </requireJavaVersion>
583 584 585
                <requireMavenVersion>
                  <version>3.0</version>
                </requireMavenVersion>
586 587 588 589 590 591
              </rules>
            </configuration>
          </execution>
        </executions>
      </plugin>

592 593 594 595 596
      <plugin>
        <!--
          Since some developers try to run hudson-dev:run from main, define it here so that at least the plugin resolves.
          This enables us to report a better error message.
        -->
597 598
        <groupId>org.jenkins-ci.tools</groupId>
        <artifactId>maven-jenkins-dev-plugin</artifactId>
599
        <version>8.1.4.v20120524-jenkins-1</version>
600 601
      </plugin>

S
sorokh 已提交
602
      <!--<plugin>
K
kohsuke 已提交
603 604 605 606 607 608 609 610 611
        <groupId>org.jvnet.fix1600</groupId>
        <artifactId>fix1600</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>fix</goal>
            </goals>
          </execution>
        </executions>
S
sorokh 已提交
612
      </plugin>-->
613
      <plugin>
K
Kohsuke Kawaguchi 已提交
614
        <groupId>org.codehaus.gmaven</groupId>
615
        <artifactId>gmaven-plugin</artifactId>
K
Kohsuke Kawaguchi 已提交
616
        <version>1.3</version>
617 618 619 620 621 622 623 624 625 626
        <executions>
          <execution>
            <goals>
              <goal>generateStubs</goal>
              <goal>compile</goal>
              <goal>generateTestStubs</goal>
              <goal>testCompile</goal>
            </goals>
          </execution>
        </executions>
K
Kohsuke Kawaguchi 已提交
627 628 629 630 631 632 633 634 635 636 637 638
        <configuration>
           <!-- 1.8 not yet supported by plugin but 1.7 works
                here so long as we provide explicit version -->
           <providerSelection>1.7</providerSelection>
        </configuration>
        <dependencies>
          <dependency>
            <groupId>org.codehaus.gmaven.runtime</groupId>
            <artifactId>gmaven-runtime-1.7</artifactId>
            <version>1.3</version>
          </dependency>
        </dependencies>
639
      </plugin>
640
    </plugins>
641

642
  </build>
643

644
  <profiles>
A
abayer 已提交
645
    <profile>
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669
      <id>rc</id>
      <properties>
        <build.type>rc</build.type>
      </properties>
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.codehaus.mojo</groupId>
              <artifactId>build-helper-maven-plugin</artifactId>
              <executions>
                <execution>
                  <id>version-property</id>
                  <configuration>
                    <replacement>-RC (${now})</replacement>
                  </configuration>
                </execution>
              </executions>
            </plugin>
          </plugins>
        </pluginManagement>
      </build>
    </profile>
    <profile>
A
abayer 已提交
670 671 672 673 674 675
      <id>metrics</id>
      <reporting>
        <plugins>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>findbugs-maven-plugin</artifactId>
676
            <version>2.3.2</version>
A
abayer 已提交
677 678 679 680
            <configuration>
              <threshold>High</threshold>
            </configuration>
          </plugin>
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696
          <!--<plugin>-->
            <!--<groupId>org.apache.maven.plugins</groupId>-->
            <!--<artifactId>maven-pmd-plugin</artifactId>-->
            <!--<version>2.5</version>-->
            <!--<configuration>-->
              <!--&lt;!&ndash;rulesets>-->
                  <!--<ruleset>ruleset.xml</ruleset>-->
                  <!--</rulesets&ndash;&gt;-->
              <!--<targetJdk>1.5</targetJdk>-->
            <!--</configuration>-->
          <!--</plugin>-->
          <!--<plugin>-->
            <!--<groupId>org.apache.maven.plugins</groupId>-->
            <!--<artifactId>maven-checkstyle-plugin</artifactId>-->
            <!--<version>2.6</version>-->
          <!--</plugin>-->
A
abayer 已提交
697 698 699
        </plugins>
      </reporting>
    </profile>
700 701 702 703 704 705
    <profile>
      <id>debug</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <properties>
706
        <hudson.sign.alias>jenkins</hudson.sign.alias>
707
        <hudson.sign.keystore>../dummy.keystore</hudson.sign.keystore>
708
        <hudson.sign.storepass>jenkins</hudson.sign.storepass>
709 710
      </properties>
    </profile>
K
kohsuke 已提交
711 712 713 714 715 716 717
    <profile>
      <id>sorcerer</id>
      <reporting>
        <plugins>
          <plugin>
            <groupId>org.jvnet.sorcerer</groupId>
            <artifactId>maven-sorcerer-plugin</artifactId>
A
abayer 已提交
718
            <version>0.8</version>
K
kohsuke 已提交
719 720 721
          </plugin>
        </plugins>
      </reporting>
722 723 724 725 726
      <build>
        <plugins>
          <plugin>
            <groupId>org.jvnet.sorcerer</groupId>
            <artifactId>maven-sorcerer-plugin</artifactId>
A
abayer 已提交
727
            <version>0.8</version>
728 729 730
          </plugin>
        </plugins>
      </build>
K
kohsuke 已提交
731
    </profile>
732 733 734 735 736 737 738 739 740 741 742 743 744 745
    <profile>
      <id>release</id>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <inherited>false</inherited>
            <executions>
              <execution>
                <goals>
                  <goal>attached</goal>
                </goals>
                <phase>package</phase>
                <configuration>
S
Stephen Connolly 已提交
746
                  <finalName>jenkins-${project.version}</finalName>
747 748 749 750 751 752 753
                  <descriptors>
                    <descriptor>assembly-src.xml</descriptor>
                  </descriptors>
                </configuration>
              </execution>
            </executions>
          </plugin>
K
Kohsuke Kawaguchi 已提交
754 755 756 757 758 759 760 761 762 763 764 765
          <plugin>
            <artifactId>maven-gpg-plugin</artifactId>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
766 767 768
        </plugins>
      </build>
    </profile>
S
Seiji Sogabe 已提交
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
    <profile>
      <id>m2e</id>
      <properties>
        <m2BuildDirectory>target</m2BuildDirectory>
      </properties>
      <activation>
        <property>
          <name>m2e.version</name>
        </property>
      </activation>
      <build>
        <directory>${m2BuildDirectory}</directory>
        <plugins>
          <plugin>
            <groupId>org.maven.ide.eclipse</groupId>
            <artifactId>lifecycle-mapping</artifactId>
            <version>0.12.0</version>
            <configuration>
              <mappingId>customizable</mappingId>
              <configurators>
                <configurator id="org.maven.ide.eclipse.jdt.javaConfigurator" />
                <configurator id="org.maven.ide.eclipse.plexus.annotations.plexusConfigurator" />
              </configurators>
              <mojoExecutions>
                <mojoExecution>org.apache.maven.plugins:maven-resources-plugin::</mojoExecution>
              </mojoExecutions>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
800
  </profiles>
801
</project>