Skip to content

Commit

Permalink
Merge 6f42ce3 into 82113d9
Browse files Browse the repository at this point in the history
  • Loading branch information
maxlaverse committed Jul 26, 2020
2 parents 82113d9 + 6f42ce3 commit f3e5bc3
Showing 1 changed file with 52 additions and 53 deletions.
105 changes: 52 additions & 53 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,23 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.2</version>
<version>4.2</version> <!-- or whatever the newest version available is -->
<!--Check https://mvnrepository.com/artifact/org.jenkins-ci.plugins/plugin?repo=jenkins-releases-->
<relativePath />
</parent>

<name>Kubernetes CLI Plugin</name>
<url>https://github.com/jenkinsci/kubernetes-cli-plugin</url>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>kubernetes-cli</artifactId>
<version>${revision}${changelist}</version>
<name>Kubernetes CLI Plugin</name>
<packaging>hpi</packaging>

<scm>
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com/jenkinsci/${project.artifactId}-plugin.git
</developerConnection>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
<tag>${scmTag}</tag>
</scm>

<developers>
<developer>
<id>max_laverse</id>
<name>Max Laverse</name>
</developer>
</developers>

<url>https://github.com/jenkinsci/kubernetes-cli-plugin</url>

<properties>
<revision>1.8.4</revision>
<changelist>-SNAPSHOT</changelist>
<java.level>8</java.level>
<hpi.compatibleSinceVersion>1.0.0</hpi.compatibleSinceVersion>

<!-- dependency versions -->
<jenkins.version>2.204.6</jenkins.version>
Expand All @@ -49,6 +36,52 @@
<surefire.rerunFailingTestsCount>0</surefire.rerunFailingTestsCount>
</properties>

<developers>
<developer>
<id>max_laverse</id>
<name>Max Laverse</name>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com/jenkinsci/${project.artifactId}-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
<tag>${scmTag}</tag>
</scm>

<!-- get every artifact through repo.jenkins-ci.org, which proxies all the artifacts that we need -->
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.204.x</artifactId>
<version>9</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>authentication-tokens</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
Expand Down Expand Up @@ -130,24 +163,6 @@
</dependency>
</dependencies>

<!-- just to fix enforcer RequireUpperBoundDeps -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>authentication-tokens</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.204.x</artifactId>
<version>9</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>

<!-- for code coverage -->
<build>
<plugins>
Expand All @@ -170,20 +185,4 @@
</plugin>
</plugins>
</build>

<!-- get every artifact through repo.jenkins-ci.org, which proxies all the artifacts that we need -->
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>

</project>

0 comments on commit f3e5bc3

Please sign in to comment.