pom.xml 23.8 KB
Newer Older
K
kohsuke 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<!--
The MIT License

Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Daniel Dyer, Erik Ramfelt, Stephen Connolly, Tom Huybrechts

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.
-->

K
TAB->WS  
kohsuke 已提交
25 26 27
<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>
28
    <groupId>org.jvnet.hudson.main</groupId>
K
TAB->WS  
kohsuke 已提交
29
    <artifactId>pom</artifactId>
30
    <version>1.323-SNAPSHOT</version>
K
TAB->WS  
kohsuke 已提交
31 32
    <relativePath>../pom.xml</relativePath>
  </parent>
33

K
TAB->WS  
kohsuke 已提交
34 35 36
  <artifactId>hudson-core</artifactId>
  <packaging>stapler-jar</packaging>
  <name>Hudson core</name>
37 38 39
  <description>
    Contains the core Hudson code and view files to render HTML.
  </description>
40

K
TAB->WS  
kohsuke 已提交
41 42
  <build>
    <plugins>
43 44 45
      <plugin>
        <groupId>org.jvnet.hudson.tools</groupId>
        <artifactId>maven-encoding-plugin</artifactId>
K
kohsuke 已提交
46
        <version>1.1</version>
47 48 49 50 51 52 53 54 55
        <executions>
          <execution>
            <goals>
              <goal>check-encoding</goal>
            </goals>
            <phase>compile</phase>
          </execution>
        </executions>
      </plugin>
K
TAB->WS  
kohsuke 已提交
56 57 58
      <plugin>
        <groupId>org.kohsuke.stapler</groupId>
        <artifactId>maven-stapler-plugin</artifactId>
K
kohsuke 已提交
59
        <version>1.12</version>
K
TAB->WS  
kohsuke 已提交
60
        <extensions>true</extensions>
K
kohsuke 已提交
61 62 63 64 65 66 67
        <dependencies>
          <dependency>
            <groupId>org.jvnet.maven-jellydoc-plugin</groupId>
            <artifactId>maven-jellydoc-plugin</artifactId>
            <version>1.4</version>
          </dependency>
        </dependencies>
K
TAB->WS  
kohsuke 已提交
68 69 70 71
      </plugin>
      <plugin>
        <groupId>org.jvnet.localizer</groupId>
        <artifactId>maven-localizer-plugin</artifactId>
72
        <version>1.9</version>
K
TAB->WS  
kohsuke 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
        <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-antlr-plugin</artifactId>
        <configuration>
          <sourceDirectory>${basedir}/src/main/grammar</sourceDirectory>
          <grammars>crontab.g</grammars>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>generate</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
100 101
        <groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
        <artifactId>maven-antrun-extended-plugin</artifactId>
K
TAB->WS  
kohsuke 已提交
102 103 104 105 106 107
        <executions>
          <execution>
            <phase>generate-resources</phase>
            <configuration>
              <tasks>
                <tstamp>
108
                  <format property="now" pattern="MM/dd/yyyy hh:mm" unit="hour" />
K
TAB->WS  
kohsuke 已提交
109
                </tstamp>
110
                <property name="build.version" value="${version} (private-${now}-${user.name})" />
K
TAB->WS  
kohsuke 已提交
111 112
                <!-- default to release version -->
                <!-- put the version file -->
113
                <echo message="The build id is: ${build.version}" />
K
kohsuke 已提交
114
                <mkdir dir="target/classes/hudson/model" />
115
                <echo file="target/classes/hudson/model/hudson-version.properties">version=${build.version}
K
TAB->WS  
kohsuke 已提交
116
                </echo>
117 118 119 120

                <!-- download winsw.exe -->
                <mkdir dir="target/classes/windows-service" />
                <resolveArtifact artifactId="winsw" tofile="target/classes/windows-service/hudson.exe" />
K
TAB->WS  
kohsuke 已提交
121 122 123 124 125 126 127 128
              </tasks>
            </configuration>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
129
      <plugin><!-- set main class -->
K
TAB->WS  
kohsuke 已提交
130 131 132 133 134 135
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifest>
              <mainClass>hudson.Main</mainClass>
              <addClasspath>true</addClasspath>
136
              <classpathPrefix />
K
TAB->WS  
kohsuke 已提交
137 138 139 140
            </manifest>
          </archive>
        </configuration>
      </plugin>
141 142 143 144 145 146 147 148 149 150 151 152 153
      <plugin>
        <!--
          Configuration for generating Wiki page.
          This kicks in with the release profile, or by manually running "mvn apt:process"
        -->
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>apt-maven-plugin</artifactId>
        <version>1.0-alpha-2</version>
        <configuration>
          <force>true</force><!-- disable staleness check -->
          <factory>org.jvnet.hudson.tools.ExtensionPointListerFactory</factory>
          <options>
            <option>page=Extension points</option>
K
kohsuke 已提交
154
            <option>target=${project.basedir}/target/extension-points.wiki</option>
155 156 157 158 159 160
          </options>
        </configuration>
        <dependencies>
          <dependency>
            <groupId>org.jvnet.hudson.tools</groupId>
            <artifactId>extension-point-lister</artifactId>
161
            <version>1.4</version>
162 163 164 165 166 167 168 169 170 171 172 173 174
            <exclusions>
               <exclusion>
                 <groupId>com.sun</groupId>
                 <artifactId>tools</artifactId>
               </exclusion>
              <exclusion>
                <groupId>commons-logging</groupId>
                <artifactId>commons-logging</artifactId>
              </exclusion>
             </exclusions>
          </dependency>
        </dependencies>
      </plugin>
K
TAB->WS  
kohsuke 已提交
175 176 177 178 179 180 181 182 183 184 185
    </plugins>
  </build>

  <profiles>
    <profile>
      <id>debug</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
    </profile>
    <profile>
K
kohsuke 已提交
186
      <id>release</id>
K
TAB->WS  
kohsuke 已提交
187 188 189 190
      <properties>
        <!-- for releases, just use the POM version. See above ant-run plugin for how this gets used. -->
        <build.version>${version}</build.version>
      </properties>
191 192
      <build>
        <plugins>
K
kohsuke 已提交
193
          <plugin><!-- execute apt:process for "Extension points" Wiki page generation -->
194 195 196 197 198 199 200 201 202 203 204
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>apt-maven-plugin</artifactId>
            <version>1.0-alpha-2</version>
            <executions>
              <execution>
                <goals>
                  <goal>process</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
K
kohsuke 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
          <plugin>
            <!--
              generate jelly taglib docs from src/main/resoruces.
              this is necessary in addition to the <reporting> configuration
              to get the results deployed.
            -->
            <groupId>org.kohsuke.stapler</groupId>
            <artifactId>maven-stapler-plugin</artifactId>
            <executions>
              <execution>
                <goals>
                  <goal>jelly-taglibdoc</goal>
                </goals>
                <configuration>
                  <patterns>
                    <pattern>/lib/.*</pattern>
                  </patterns>
                </configuration>
              </execution>
            </executions>
          </plugin>
226 227
        </plugins>
      </build>
K
TAB->WS  
kohsuke 已提交
228
    </profile>
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
    <profile>
      <!-- run findbugs for better error detection -->
      <id>findbugs</id>
      <reporting>
        <plugins>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>findbugs-maven-plugin</artifactId>
            <version>1.2</version>
            <configuration>
              <effort>Max</effort>
              <threshold>Normal</threshold>
              <onlyAnalyze>hudson.-</onlyAnalyze>
              <excludeFilterFile>src/findbugs-filter.xml</excludeFilterFile>
            </configuration>
          </plugin>
        </plugins>
      </reporting>
    </profile>
248 249 250 251 252 253 254 255
    <profile>
      <!--
        Obtain code coverage report. This is done by running Unit tests on our own and suppressing surefire.
      -->
      <id>cobertura</id>
      <build>
        <plugins>
          <plugin>
256
            <groupId>org.kohsuke.gmaven</groupId>
257 258 259 260 261 262 263 264 265
            <artifactId>gmaven-plugin</artifactId>
            <executions>
              <!-- run unit test -->
              <execution>
                <phase>test</phase>
                <goals>
                  <goal>execute</goal>
                </goals>
                <configuration>
266 267 268
                  <scriptpath>
                    <element>${project.basedir}/src/build-script</element>
                  </scriptpath>
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
                  <source>${project.basedir}/src/build-script/unitTest.groovy</source>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <!-- unit tests are run by GMaven through Ant. -->
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
              <skipTests>true</skipTests>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
K
TAB->WS  
kohsuke 已提交
284 285 286 287
  </profiles>

  <dependencies>
    <dependency>
288
      <groupId>${project.groupId}</groupId>
K
TAB->WS  
kohsuke 已提交
289 290 291
      <artifactId>remoting</artifactId>
      <version>${project.version}</version>
    </dependency>
292 293 294 295 296
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>cli</artifactId>
      <version>${project.version}</version>
    </dependency>
K
kohsuke 已提交
297 298 299 300
    <dependency>
      <groupId>org.jvnet.hudson</groupId>
      <artifactId>jtidy</artifactId>
      <version>4aug2000r7-dev-hudson-1</version>
301 302 303 304 305 306
      <exclusions>
        <exclusion>
          <groupId>jdom</groupId>
          <artifactId>jdom</artifactId>
        </exclusion>
      </exclusions>
307
    </dependency>
308

K
kohsuke 已提交
309 310 311 312 313
    <dependency>
      <groupId>org.jruby.ext.posix</groupId>
      <artifactId>jna-posix</artifactId>
      <version>1.0.1</version>
    </dependency>
K
kohsuke 已提交
314 315 316 317 318
    <dependency>
      <groupId>org.kohsuke</groupId>
      <artifactId>trilead-putty-extension</artifactId>
      <version>1.0</version>
    </dependency>
K
TAB->WS  
kohsuke 已提交
319 320
    <dependency>
      <groupId>org.kohsuke.stapler</groupId>
321
      <artifactId>stapler-jelly</artifactId>
322
      <version>1.114</version>
323 324 325 326 327 328 329 330 331 332 333 334 335 336
      <exclusions>
        <exclusion>
          <groupId>dom4j</groupId>
          <artifactId>dom4j</artifactId>
        </exclusion>
        <exclusion>
          <groupId>commons-jelly</groupId>
          <artifactId>commons-jelly</artifactId>
        </exclusion>
        <exclusion>
          <groupId>commons-jexl</groupId>
          <artifactId>commons-jexl</artifactId>
        </exclusion>
      </exclusions>
K
TAB->WS  
kohsuke 已提交
337
    </dependency>
338 339 340 341 342
    <dependency>
      <groupId>args4j</groupId>
      <artifactId>args4j</artifactId>
      <version>2.0.13</version>
    </dependency>
343 344 345
    <dependency>
      <groupId>org.jvnet.hudson</groupId>
      <artifactId>annotation-indexer</artifactId>
K
kohsuke 已提交
346
      <version>1.1</version>
347
    </dependency>
K
kohsuke 已提交
348 349 350
    <dependency>
      <groupId>org.jvnet.localizer</groupId>
      <artifactId>localizer</artifactId>
351
      <version>1.9</version>
K
kohsuke 已提交
352
    </dependency>
353 354 355 356 357
    <dependency>
      <groupId>org.kohsuke</groupId>
      <artifactId>graph-layouter</artifactId>
      <version>1.0</version>
    </dependency>
K
kohsuke 已提交
358 359 360 361 362 363
    <dependency>
      <groupId>antlr</groupId>
      <artifactId>antlr</artifactId>
      <version>2.7.6</version>
    </dependency>
    <dependency>
364
      <groupId>org.jvnet.hudson</groupId>
K
kohsuke 已提交
365
      <artifactId>xstream</artifactId>
366
      <version>1.3.1-hudson-3</version>
K
kohsuke 已提交
367 368 369 370
    </dependency>
    <dependency>
      <groupId>jfree</groupId>
      <artifactId>jfreechart</artifactId>
371
      <version>1.0.9</version>
K
kohsuke 已提交
372 373
    </dependency>
    <dependency>
374
      <groupId>org.apache.ant</groupId>
K
kohsuke 已提交
375
      <artifactId>ant-junit</artifactId>
376
      <version>1.7.0</version>
K
kohsuke 已提交
377 378
    </dependency>
    <dependency>
379
      <groupId>org.apache.ant</groupId>
K
kohsuke 已提交
380
      <artifactId>ant</artifactId>
381
      <version>1.7.0</version>
K
kohsuke 已提交
382 383 384 385 386
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.4</version>
387
      <scope>provided</scope>
K
kohsuke 已提交
388 389 390 391
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
392
      <version>1.3.1</version>
K
kohsuke 已提交
393
    </dependency>
394 395 396 397 398
    <dependency><!-- hudson doesn't use this directly, but some plugins wanted to use the latest -->
      <groupId>commons-lang</groupId>
      <artifactId>commons-lang</artifactId>
      <version>2.4</version>
    </dependency>
K
kohsuke 已提交
399 400 401 402
    <dependency>
      <groupId>commons-digester</groupId>
      <artifactId>commons-digester</artifactId>
      <version>1.7</version>
403 404 405 406 407 408
      <exclusions>
        <exclusion>
          <groupId>xml-apis</groupId>
          <artifactId>xml-apis</artifactId>
        </exclusion>
      </exclusions>
K
kohsuke 已提交
409
    </dependency>
K
kohsuke 已提交
410 411 412 413 414 415 416
    <dependency>
      <!--
        The version included in the transitive dependency doesn't have the source zip,
        so explicitly using the newer version.
      -->
      <groupId>commons-beanutils</groupId>
      <artifactId>commons-beanutils</artifactId>
417
      <version>1.8.0</version>
K
kohsuke 已提交
418 419
    </dependency>
    <dependency>
K
kohsuke 已提交
420 421 422
      <groupId>javax.mail</groupId>
      <artifactId>mail</artifactId>
      <version>1.4</version>
423 424 425 426 427 428
      <exclusions>
        <exclusion><!-- using a patched version -->
          <groupId>javax.activation</groupId>
          <artifactId>activation</artifactId>
        </exclusion>
      </exclusions>
K
kohsuke 已提交
429 430
    </dependency>
    <dependency>
431
      <groupId>org.jvnet.hudson</groupId>
K
kohsuke 已提交
432
      <artifactId>activation</artifactId>
433
      <version>1.1.1-hudson-1</version>
K
kohsuke 已提交
434 435
    </dependency>
    <dependency>
K
kohsuke 已提交
436
      <groupId>org.jvnet.hudson.dom4j</groupId>
K
kohsuke 已提交
437
      <artifactId>dom4j</artifactId>
K
kohsuke 已提交
438
      <version>1.6.1-hudson-1</version>
439 440 441 442 443 444
      <exclusions>
        <exclusion>
          <groupId>xml-apis</groupId>
          <artifactId>xml-apis</artifactId>
        </exclusion>
      </exclusions>
K
kohsuke 已提交
445
    </dependency>
446 447 448 449
    <dependency>
      <groupId>jaxen</groupId>
      <artifactId>jaxen</artifactId>
      <version>1.1-beta-11</version>
K
kohsuke 已提交
450 451 452 453 454
      <exclusions>
        <exclusion>
          <groupId>dom4j</groupId>
          <artifactId>dom4j</artifactId>
        </exclusion>
455 456 457 458
        <exclusion>
          <groupId>xom</groupId>
          <artifactId>xom</artifactId>
        </exclusion>
459 460 461 462 463 464 465 466 467 468 469 470
        <exclusion>
          <groupId>xml-apis</groupId>
          <artifactId>xml-apis</artifactId>
        </exclusion>
        <exclusion>
          <groupId>xerces</groupId>
          <artifactId>xercesImpl</artifactId>
        </exclusion>
        <exclusion>
          <groupId>jdom</groupId>
          <artifactId>jdom</artifactId>
        </exclusion>
K
kohsuke 已提交
471
      </exclusions>
472
    </dependency>
K
kohsuke 已提交
473 474 475 476 477 478 479 480 481
    <dependency>
      <groupId>commons-jelly</groupId>
      <artifactId>commons-jelly-tags-fmt</artifactId>
      <version>1.0</version>
    </dependency>
    <dependency>
      <groupId>commons-jelly</groupId>
      <artifactId>commons-jelly-tags-xml</artifactId>
      <version>1.1</version>
482 483 484 485 486 487 488 489 490 491 492 493 494
      <exclusions>
        <exclusion>
          <groupId>commons-jelly</groupId>
          <artifactId>commons-jelly</artifactId>
        </exclusion>
        <exclusion>
          <groupId>commons-jexl</groupId>
          <artifactId>commons-jexl</artifactId>
        </exclusion>
        <exclusion>
          <groupId>commons-jelly</groupId>
          <artifactId>commons-jelly-tags-junit</artifactId>
        </exclusion>
495 496 497 498
        <exclusion>
          <groupId>xml-apis</groupId>
          <artifactId>xml-apis</artifactId>
        </exclusion>
499 500 501 502
        <exclusion>
          <groupId>xalan</groupId>
          <artifactId>xalan</artifactId>
        </exclusion>
503 504 505 506 507 508 509 510
        <exclusion>
          <groupId>xerces</groupId>
          <artifactId>xercesImpl</artifactId>
        </exclusion>
        <exclusion>
          <groupId>dom4j</groupId>
          <artifactId>dom4j</artifactId>
        </exclusion>
511
      </exclusions>
K
kohsuke 已提交
512 513
    </dependency>
    <dependency>
514
      <groupId>org.jvnet.hudson</groupId>
K
kohsuke 已提交
515
      <artifactId>commons-jelly-tags-define</artifactId>
516
      <version>1.0.1-hudson-20071021</version>
517 518 519 520 521 522 523 524 525 526
      <exclusions>
        <exclusion>
          <groupId>dom4j</groupId>
          <artifactId>dom4j</artifactId>
        </exclusion>
        <exclusion>
          <groupId>commons-cli</groupId>
          <artifactId>commons-cli</artifactId>
        </exclusion>
      </exclusions>
K
kohsuke 已提交
527 528
    </dependency>
    <dependency>
529
      <groupId>org.jvnet.hudson</groupId>
K
kohsuke 已提交
530
      <artifactId>commons-jexl</artifactId>
531
      <version>1.1-hudson-20090508</version>
K
kohsuke 已提交
532 533
    </dependency>
    <dependency>
534
      <groupId>org.jvnet.hudson</groupId>
K
kohsuke 已提交
535
      <artifactId>commons-jelly</artifactId>
K
kohsuke 已提交
536
      <version>1.1-hudson-20090709</version>
K
kohsuke 已提交
537 538
    </dependency>
    <dependency>
539 540 541
      <groupId>org.acegisecurity</groupId>
      <artifactId>acegi-security</artifactId>
      <version>1.0.5</version>
K
kohsuke 已提交
542
      <exclusions>
K
kohsuke 已提交
543
        <exclusion>
544 545
          <groupId>org.springframework</groupId>
          <artifactId>spring-remoting</artifactId>
K
kohsuke 已提交
546
        </exclusion>
547 548 549 550
        <exclusion>
          <groupId>org.springframework</groupId>
          <artifactId>spring-support</artifactId>
        </exclusion>
K
kohsuke 已提交
551
      </exclusions>
K
kohsuke 已提交
552
    </dependency>
553 554
    <dependency>
      <groupId>org.codehaus.groovy</groupId>
555 556
      <artifactId>groovy-all</artifactId>
      <version>1.6.0</version>
557 558 559 560 561 562 563 564
    </dependency>
    <dependency>
      <!--
        for Grails spring bean builder.
        Ideally we should be able to modify BeanBuilder so as not to depend on this.
      -->
      <groupId>org.springframework</groupId>
      <artifactId>spring-web</artifactId>
565
      <version>2.5</version>
566 567 568 569
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
570
      <version>2.5</version>
571 572 573 574
    </dependency>
    <dependency><!-- Hudson core doesn't use it but HUDSON-3811 requires us to put it. -->
      <groupId>org.springframework</groupId>
      <artifactId>spring-aop</artifactId>
575
      <version>2.5</version>
576
    </dependency>
577 578 579 580 581
    <dependency>
      <groupId>xpp3</groupId>
      <artifactId>xpp3</artifactId>
      <version>1.1.3.3</version>
    </dependency>
K
kohsuke 已提交
582 583 584
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
K
kohsuke 已提交
585
      <version>4.3.1</version>
K
kohsuke 已提交
586
    </dependency>
K
kohsuke 已提交
587
    <dependency><!-- needed by Jelly -->
588
      <groupId>javax.servlet</groupId>
K
kohsuke 已提交
589 590 591
      <artifactId>jstl</artifactId>
      <version>1.1.0</version>
    </dependency>
592 593 594 595 596
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.1</version>
    </dependency>
597 598 599
    <dependency>
      <groupId>com.sun.xml.txw2</groupId>
      <artifactId>txw2</artifactId>
K
kohsuke 已提交
600
      <version>20070624</version>
601
    </dependency>
602 603 604 605 606
    <dependency>
      <groupId>commons-collections</groupId>
      <artifactId>commons-collections</artifactId>
      <version>3.2</version>
    </dependency>
607 608 609
    <dependency>
      <groupId>org.jvnet.winp</groupId>
      <artifactId>winp</artifactId>
610
      <version>1.13</version>
611
    </dependency>
612 613 614 615 616
    <dependency>
      <groupId>org.jvnet.hudson</groupId>
      <artifactId>memory-monitor</artifactId>
      <version>1.1</version>
    </dependency>
K
kohsuke 已提交
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659
    <dependency>
      <groupId>com.octo.captcha</groupId>
      <artifactId>jcaptcha-all</artifactId>
      <version>1.0-RC6</version>
      <exclusions>
        <exclusion>
          <groupId>hsqldb</groupId>
          <artifactId>hsqldb</artifactId>
        </exclusion>
        <exclusion>
          <groupId>hsqldb</groupId>
          <artifactId>hsqldb</artifactId>
        </exclusion>
        <exclusion>
          <groupId>net.sf.ehcache</groupId>
          <artifactId>ehcache</artifactId>
        </exclusion>
        <exclusion>
          <groupId>quartz</groupId>
          <artifactId>quartz</artifactId>
        </exclusion>
        <exclusion>
          <groupId>xerces</groupId>
          <artifactId>xercesImpl</artifactId>
        </exclusion>
        <exclusion>
          <groupId>xerces</groupId>
          <artifactId>xmlParserAPIs</artifactId>
        </exclusion>
        <exclusion>
          <groupId>org.springframework</groupId>
          <artifactId>spring</artifactId>
        </exclusion>
        <exclusion>
          <groupId>commons-dbcp</groupId>
          <artifactId>commons-dbcp</artifactId>
        </exclusion>
        <exclusion>
          <groupId>concurrent</groupId>
          <artifactId>concurrent</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
660 661 662 663 664
    <dependency><!-- StAX implementation. See HUDSON-2547. -->
      <groupId>org.codehaus.woodstox</groupId>
      <artifactId>wstx-asl</artifactId>
      <version>3.2.7</version>
    </dependency>
665 666 667
    <dependency>
      <groupId>com.sun.winsw</groupId>
      <artifactId>winsw</artifactId>
668
      <version>1.8</version>
669 670 671 672
      <classifier>bin</classifier>
      <type>exe</type>
      <scope>provided</scope><!-- this isn't really a dependency that Maven should care about, so putting 'provided' -->
    </dependency>
673 674 675
    <dependency>
      <groupId>net.java.dev.jna</groupId>
      <artifactId>jna</artifactId>
676
      <version>3.0.9</version><!-- executabe-war hardcodes this version, so when you change this, update executable-war as well -->
677
    </dependency>
678 679 680 681 682
    <dependency>
      <groupId>com.sun.akuma</groupId>
      <artifactId>akuma</artifactId>
      <version>1.1</version><!-- executabe-war hardcodes this version, so when you change this, update executable-war as well -->
    </dependency>
K
kohsuke 已提交
683 684 685
    <dependency>
      <groupId>org.jvnet.libpam4j</groupId>
      <artifactId>libpam4j</artifactId>
K
kohsuke 已提交
686
      <version>1.2</version>
K
kohsuke 已提交
687
    </dependency>
688 689 690
    <dependency>
      <groupId>org.jvnet.libzfs</groupId>
      <artifactId>libzfs</artifactId>
K
kohsuke 已提交
691
      <version>0.5</version>
692 693 694 695
    </dependency>
    <dependency>
      <groupId>com.sun.solaris</groupId>
      <artifactId>embedded_su4j</artifactId>
K
bug fix  
kohsuke 已提交
696
      <version>1.1</version>
697
    </dependency>
698 699 700
    <dependency>
      <groupId>net.java.sezpoz</groupId>
      <artifactId>sezpoz</artifactId>
J
jglick 已提交
701
      <version>1.4</version>
702
    </dependency>
703 704 705
    <dependency>
      <groupId>org.jvnet.hudson</groupId>
      <artifactId>jinterop-wmi</artifactId>
K
kohsuke 已提交
706
      <version>1.0</version>
707
    </dependency>
708 709 710 711 712 713
    <dependency>
      <groupId>org.kohsuke.metainf-services</groupId>
      <artifactId>metainf-services</artifactId>
      <version>1.1</version>
      <optional>true</optional>
    </dependency>
K
kohsuke 已提交
714

715 716 717 718 719 720 721 722
    <!-- offline profiler API to put in the classpath if we need it -->
    <!--dependency>
      <groupId>com.yourkit.api</groupId>
      <artifactId>yjp</artifactId>
      <version>dontcare</version>
      <scope>system</scope>
      <systemPath>/usr/local/yjp/lib/yjp.jar</systemPath>
    </dependency-->
K
kohsuke 已提交
723
  </dependencies>
K
kohsuke 已提交
724

K
kohsuke 已提交
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
  <reporting>
    <plugins>
      <plugin><!-- generate Jelly tag lib documentation -->
        <groupId>org.kohsuke.stapler</groupId>
        <artifactId>maven-stapler-plugin</artifactId>
        <configuration>
          <patterns>
            <pattern>/lib/.*</pattern>
          </patterns>
        </configuration>
      </plugin>
      <plugin><!-- skip slow dependency analysis -->
        <artifactId>maven-project-info-reports-plugin</artifactId>
        <configuration>
          <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
        </configuration>
      </plugin> 
    </plugins>
  </reporting>
744
</project>