Skip to content

Commit

Permalink
Prepare new pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
Shcherbakov authored and Shcherbakov committed Oct 18, 2016
1 parent c819c80 commit 18f5087
Showing 1 changed file with 31 additions and 10 deletions.
41 changes: 31 additions & 10 deletions pom.xml
Expand Up @@ -5,15 +5,29 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<!-- Baseline Jenkins version you use to build and test the plugin. Users must have this version or newer to run. -->
<version>1.608</version>
<relativePath />
<version>2.11</version>
<relativePath/>
</parent>

<artifactId>zos-connector</artifactId>
<name>IBM z/OS Connector</name>
<version>1.2.4-SNAPSHOT</version>
<packaging>hpi</packaging>

<properties>
<!-- Baseline Jenkins version you use to build the plugin. Users must have this version or newer to run. -->
<jenkins.version>1.625.3</jenkins.version>
<!-- Java Level to use. Java 7 required when using core >= 1.612 -->
<java.level>7</java.level>
<!-- Jenkins Test Harness version you use to test the plugin. -->
<!-- For Jenkins version >= 1.580.1 use JTH 2.x or higher. -->
<jenkins-test-harness.version>2.13</jenkins-test-harness.version>
<!-- Other properties you may want to use:
~ hpi-plugin.version: The HPI Maven Plugin version used by the plugin..
~ stapler-plugin.version: The Stapler Maven plugin version required by the plugin.
-->
</properties>

<description>IBM z/OS FTP Connector - bunch of tools for integration with IBM z/OS</description>
<url>https://wiki.jenkins-ci.org/display/JENKINS/IBM+zOS+Connector</url>
<licenses>
Expand All @@ -38,19 +52,25 @@
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</repository>
<repository>
<id>central.maven.org</id>
<url>http://central.maven.org/maven2/</url>
<url>https://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
<url>https://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
<!-- If you want to depend on other plugins:
<dependencies>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>credentials</artifactId>
<version>1.9.4</version>
</dependency>
</dependencies>
-->

<dependencies>
<dependency>
<groupId>commons-net</groupId>
Expand All @@ -59,11 +79,12 @@
</dependency>
</dependencies>

<!-- Old release management
<distributionManagement>
<repository>
<id>maven.jenkins-ci.org</id>
<url>http://maven.jenkins-ci.org:8081/content/repositories/releases/</url>
</repository>
</distributionManagement>

-->
</project>

0 comments on commit 18f5087

Please sign in to comment.