Skip to content

Commit

Permalink
Review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rantoniuk committed Oct 27, 2020
1 parent 287c8bf commit a010764
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 10 deletions.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 2
updates:
- package-ecosystem: "maven"
directory: "/"
schedule:
interval: "monthly"
ignore:
# core is using lower Guava version, don't touch it unless you want things to blow up on client installations at runtime
- dependency-name: "com.google.guava:guava"
# we don't want to automatically bump core
- dependency-name: "org.jenkins-ci.main:jenkins-core"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
2 changes: 2 additions & 0 deletions .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-Pconsume-incrementals
-Pmight-produce-incrementals
26 changes: 16 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<connection>scm:git:git://github.com/jenkinsci/ssh-agent-plugin.git</connection>
<developerConnection>scm:git:git@github.com:jenkinsci/ssh-agent-plugin.git</developerConnection>
<url>http://github.com/jenkinsci/ssh-agent-plugin</url>
<tag>HEAD</tag>
<tag>${scmTag}</tag>
</scm>

<properties>
Expand Down Expand Up @@ -173,16 +173,22 @@
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>structs</artifactId>
</dependency>
<dependency>
<groupId>org.jenkins-ci</groupId>
<artifactId>symbol-annotation</artifactId>
</dependency>

</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<groupId>org.jenkins-ci.tools</groupId>
<artifactId>maven-hpi-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<pluginFirstClassLoader>true</pluginFirstClassLoader>
<compatibleSinceVersion>1.5</compatibleSinceVersion>
<minimumJavaVersion>${java.level}</minimumJavaVersion>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit a010764

Please sign in to comment.