~james-page/ubuntu/precise/jenkins/954960-1.424.6

« back to all changes in this revision

Viewing changes to .pc/dependency-upgrades/groovy-upgrade.patch/core/pom.xml

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2011-11-22 08:31:53 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20111122083153-u250qwk8a8whnbzh
Tags: 1.409.3-0ubuntu1
* New upstream release:
  - Refreshed patches.
  - d/maven.rules: Updated jenkins version to 1.409.3.
* Pickup new version of jenkins-winstone resolving XSS security 
  vulnerability (LP: #889181).
* d/patches/build/apt-stapler-processing.patch: Temporary patch to fix
  build when using later versions of stapler which use standard  
  Java annotation processing.

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.409.2</version>
 
31
    <version>1.409.3</version>
32
32
    <relativePath>../pom.xml</relativePath>
33
33
  </parent>
34
34
 
35
35
  <artifactId>jenkins-core</artifactId>
36
 
  <packaging>stapler-jar</packaging>
 
36
 
37
37
  <name>Jenkins core</name>
38
38
  <description>
39
39
    Contains the core Jenkins code and view files to render HTML.
71
71
        </executions>
72
72
      </plugin>
73
73
      <plugin>
 
74
        <groupId>org.apache.maven.plugins</groupId>
 
75
        <artifactId>maven-compiler-plugin</artifactId>
 
76
        <version>2.3.2</version>
 
77
        <configuration>
 
78
          <excludes>
 
79
             <exclude>**/os/solaris/*</exclude>
 
80
             <exclude>**/os/windows/*</exclude>
 
81
             <exclude>**/DCOMSandbox.java</exclude>
 
82
             <exclude>**/DotNet.java</exclude>
 
83
             <exclude>**/WindowsSlaveInstaller.java</exclude>
 
84
             <exclude>**/WindowsInstallerLink.java</exclude>
 
85
          </excludes>
 
86
          <testExcludes>
 
87
             <exclude>**/DCOMSandbox.java</exclude>
 
88
          </testExcludes>
 
89
        </configuration>
 
90
      </plugin>
 
91
      <plugin>
74
92
        <groupId>org.kohsuke.stapler</groupId>
75
93
        <artifactId>maven-stapler-plugin</artifactId>
76
 
        <extensions>true</extensions>
77
 
        <dependencies>
78
 
          <dependency>
79
 
            <groupId>org.jvnet.maven-jellydoc-plugin</groupId>
80
 
            <artifactId>maven-jellydoc-plugin</artifactId>
81
 
            <version>1.4</version>
82
 
          </dependency>
83
 
        </dependencies>
84
94
        <configuration>
85
95
          <fork>${staplerFork}</fork><!-- the source code is big enough now that otherwise it fails with OutOfMemoryError -->
86
96
          <maxmem>128m</maxmem>