Skip to content

Commit

Permalink
Allow Dependabot to update Jenkins core (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Mar 23, 2023
1 parent ac39e7d commit 6dc5666
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,15 @@
</dependency>
<dependency>
<groupId>org.jenkins-ci.main</groupId>
<artifactId>jenkins-war</artifactId>
<artifactId>jenkins-core</artifactId>
<version>${jenkins.version}</version>
<type>executable-war</type>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
Expand Down Expand Up @@ -208,13 +213,20 @@
<!-- Version specified in parent POM -->
<executions>
<execution>
<id>copy-dependencies</id>
<id>jenkins-war</id>
<goals>
<goal>copy-dependencies</goal>
<goal>copy</goal>
</goals>
<phase>process-test-classes</phase>
<configuration>
<includeTypes>executable-war</includeTypes>
<artifactItems>
<artifactItem>
<groupId>org.jenkins-ci.main</groupId>
<artifactId>jenkins-war</artifactId>
<version>${jenkins.version}</version>
<type>executable-war</type>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
</execution>
Expand Down

0 comments on commit 6dc5666

Please sign in to comment.