~ubuntu-branches/ubuntu/saucy/jenkins/saucy

« back to all changes in this revision

Viewing changes to .pc/build/disable-plugins.patch/war/pom.xml

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-01-10 09:50:50 UTC
  • mfrom: (5.1.10 experimental)
  • Revision ID: package-import@ubuntu.com-20130110095050-kj8xuw20gcfh62k3
Tags: 1.480.2+dfsg-1~exp1
* New upstream release (Closes: #696816, #697617):
  - d/control: Added new BD on libjbcrypt-java.
  - d/control: Versioned BD jenkins-winstone >= 0.9.10-jenkins-40.
  - d/control: Versioned BD jenkins-trilead-ssh2 >= 214-jenkins-1.
  - Fixes the following security vulnerabilities:
    CVE-2012-6072, CVE-2012-6073, CVE-2012-6072, CVE-2013-0158.
* Tidied lintian warnings.
* Bumped Standards-Version: 3.9.4, no changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
  <parent>
29
29
    <groupId>org.jenkins-ci.main</groupId>
30
30
    <artifactId>pom</artifactId>
31
 
    <version>1.466.2</version>
 
31
    <version>1.480.2</version>
32
32
    <relativePath>../pom.xml</relativePath>
33
33
  </parent>
34
34
 
71
71
          <groupId>javax.servlet</groupId>
72
72
          <artifactId>jsp-api</artifactId>
73
73
        </exclusion>
 
74
        <!-- Stapler 1.195 fails to declare this as optional, and the 1.1 version lacks a license: -->
 
75
        <exclusion>
 
76
          <artifactId>metainf-services</artifactId>
 
77
          <groupId>org.kohsuke.metainf-services</groupId>
 
78
        </exclusion>
74
79
      </exclusions>
75
80
    </dependency>
76
81
    <!-- declare this in reactors, so i can use now directly : mvn install -pl war -am to get the war  -->
99
104
      -->
100
105
      <groupId>org.jenkins-ci</groupId>
101
106
      <artifactId>winstone</artifactId>
102
 
      <version>0.9.10-jenkins-36</version>
 
107
      <version>0.9.10-jenkins-40</version>
103
108
      <scope>test</scope>
104
109
    </dependency>
105
110
    <dependency>
106
111
      <groupId>org.jenkins-ci.modules</groupId>
107
112
      <artifactId>instance-identity</artifactId>
108
 
      <version>1.1</version>
 
113
      <version>1.2</version>
109
114
    </dependency>
110
115
    <dependency>
111
116
      <groupId>org.jenkins-ci.modules</groupId>
251
256
                <artifactItem>
252
257
                  <groupId>org.jenkins-ci.plugins</groupId>
253
258
                  <artifactId>subversion</artifactId>
254
 
                  <version>1.34</version>
 
259
                  <version>1.39</version>
255
260
                  <type>hpi</type>
256
261
                </artifactItem>
257
262
                <artifactItem>
278
283
                  <version>1.8</version>
279
284
                  <type>hpi</type>
280
285
                </artifactItem>
 
286
                <artifactItem>
 
287
                  <groupId>org.jenkins-ci.plugins</groupId>
 
288
                  <artifactId>external-monitor-job</artifactId>
 
289
                  <version>1.1</version>
 
290
                  <type>hpi</type>
 
291
                </artifactItem>
 
292
                <artifactItem>
 
293
                  <groupId>org.jenkins-ci.plugins</groupId>
 
294
                  <artifactId>ldap</artifactId>
 
295
                  <version>1.1</version>
 
296
                  <type>hpi</type>
 
297
                </artifactItem>
 
298
                <artifactItem>
 
299
                  <groupId>org.jenkins-ci.plugins</groupId>
 
300
                  <artifactId>pam-auth</artifactId>
 
301
                  <version>1.0</version>
 
302
                  <type>hpi</type>
 
303
                </artifactItem>
281
304
              </artifactItems>
282
305
              <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/plugins</outputDirectory>
283
306
              <stripVersion>true</stripVersion>
342
365
          -->
343
366
          <reload>manual</reload>
344
367
          <connectors>
345
 
            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
 
368
            <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
346
369
                <port>${port}</port>
347
370
            </connector>
348
371
          </connectors>
356
379
            -->
357
380
            <additionalClassesDirectory>../core/target/classes</additionalClassesDirectory>
358
381
          </additionalClassesDirectories>
359
 
          <userRealms>
360
 
            <userRealm implementation="org.mortbay.jetty.security.HashUserRealm">
 
382
          <loginServices>
 
383
            <loginService implementation="org.eclipse.jetty.security.HashLoginService">
361
384
              <name>default</name>
362
385
              <config>${basedir}/src/realm.properties</config>
363
 
            </userRealm>
364
 
          </userRealms>
 
386
            </loginService>
 
387
          </loginServices>
365
388
          <systemProperties>
366
389
            <systemProperty>
367
390
              <name>JENKINS_HOME</name>
397
420
              <value><!-- run "mvn install" once will generate the.hpl -->
398
421
                  ${basedir}/../maven-plugin/target/test-classes/the.hpl,
399
422
                  ${basedir}/../ui-samples-plugin/target/test-classes/the.hpl,
400
 
                  ${project.build.directory}/${project.build.finalName}/WEB-INF/plugins/javadoc.hpi
 
423
                  ${project.build.directory}/${project.build.finalName}/WEB-INF/plugins/*.hpi
401
424
              </value>
402
425
            </systemProperty>
403
426
            <systemProperty>
415
438
              <value>true</value>
416
439
            </systemProperty>
417
440
          </systemProperties>
 
441
          <webApp>
 
442
            <configurationDiscovered>false</configurationDiscovered>
 
443
          </webApp>
418
444
        </configuration>
419
445
      </plugin>
420
446
    </plugins>