Skip to content

Commit

Permalink
updated pom.xml according to INFRA-588
Browse files Browse the repository at this point in the history
  • Loading branch information
scaytrase committed Sep 16, 2016
1 parent 7144ad9 commit f5541a5
Showing 1 changed file with 134 additions and 132 deletions.
266 changes: 134 additions & 132 deletions pom.xml
@@ -1,34 +1,65 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<modelVersion>4.0.0</modelVersion> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent> <modelVersion>4.0.0</modelVersion>
<groupId>org.jenkins-ci.plugins</groupId> <parent>
<artifactId>plugin</artifactId> <groupId>org.jenkins-ci.plugins</groupId>
<version>1.577</version> <artifactId>plugin</artifactId>
</parent> <version>2.11</version>
<relativePath/>
</parent>
<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.
-->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<artifactId>stashNotifier</artifactId>
<version>1.11.2-SNAPSHOT</version>
<name>Stash Notifier</name>
<description>
Jenkins plugin to notify Atlassian Stash (Bitbucket) git repository servers of
build results through the Stash build API.
</description>
<url>http://wiki.jenkins-ci.org/display/JENKINS/StashNotifier+Plugin</url>


<artifactId>stashNotifier</artifactId> <scm>
<version>1.12-SNAPSHOT</version> <connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
<name>Stash Notifier</name> <developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
<description> <url>http://github.com/jenkinsci/${project.artifactId}-plugin</url>
Jenkins plugin to notify Atlassian Stash (Bitbucket) git repository servers of </scm>
build results through the Stash build API.
</description>
<url>http://wiki.jenkins-ci.org/display/JENKINS/StashNotifier+Plugin</url>
<packaging>hpi</packaging>


<scm> <developers>
<connection>scm:git:https://github.com/jenkinsci/stashnotifier-plugin.git</connection> <developer>
<developerConnection>scm:git:https://github.com/jenkinsci/stashnotifier-plugin.git</developerConnection> <id>gruetter</id>
<url>https://github.com/jenkinsci/stashnotifier-plugin</url> <name>Georg Gruetter</name>
<tag>HEAD</tag> </developer>
</scm> <developer>
<id>scaytrase</id>
<name>Pavel Batanov</name>
</developer>
</developers>


<distributionManagement> <repositories>
<repository> <repository>
<id>maven.jenkins-ci.org</id> <id>repo.jenkins-ci.org</id>
<url>http://maven.jenkins-ci.org:8081/content/repositories/releases/</url> <url>https://repo.jenkins-ci.org/public/</url>
</repository> </repository>
</distributionManagement> </repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>


<reporting> <reporting>
<plugins> <plugins>
Expand All @@ -52,108 +83,79 @@
</plugins> </plugins>
</reporting> </reporting>


<developers> <dependencies>
<developer> <dependency>
<id>gruetter</id> <groupId>com.google.guava</groupId>
<name>Georg Gruetter</name> <artifactId>guava</artifactId>
</developer> <version>19.0</version>
<developer> </dependency>
<id>scaytrase</id> <dependency>
<name>Pavel Batanov</name> <groupId>org.apache.httpcomponents</groupId>
</developer> <artifactId>httpclient</artifactId>
</developers> <version>4.3.5</version>

</dependency>
<properties> <dependency>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <groupId>org.jenkins-ci.plugins</groupId>
</properties> <artifactId>git</artifactId>

<version>2.0</version>
<repositories> <type>jar</type>
<repository> </dependency>
<id>repo.jenkins-ci.org</id> <dependency>
<url>http://repo.jenkins-ci.org/public/</url> <groupId>org.jenkins-ci.plugins</groupId>
</repository> <artifactId>credentials</artifactId>
</repositories> <version>1.22</version>

<type>jar</type>
<dependencies> </dependency>
<dependency> <dependency>
<groupId>com.google.guava</groupId> <groupId>org.jenkins-ci.plugins</groupId>
<artifactId>guava</artifactId> <artifactId>plain-credentials</artifactId>
<version>19.0</version> <version>1.1</version>
</dependency> <type>jar</type>
<dependency> </dependency>
<groupId>org.apache.httpcomponents</groupId> <dependency>
<artifactId>httpclient</artifactId> <groupId>junit</groupId>
<version>4.3.5</version> <artifactId>junit</artifactId>
</dependency> <version>4.12</version>
<dependency> <scope>test</scope>
<groupId>org.jenkins-ci.plugins</groupId> </dependency>
<artifactId>git</artifactId> <dependency>
<version>2.0</version> <groupId>org.powermock</groupId>
<type>jar</type> <artifactId>powermock-module-junit4</artifactId>
</dependency> <version>1.6.2</version>
<dependency> <scope>test</scope>
<groupId>org.jenkins-ci.plugins</groupId> </dependency>
<artifactId>credentials</artifactId> <dependency>
<version>1.22</version> <groupId>org.powermock</groupId>
<type>jar</type> <artifactId>powermock-api-mockito</artifactId>
</dependency> <version>1.6.2</version>
<dependency> <scope>test</scope>
<groupId>org.jenkins-ci.plugins</groupId> </dependency>
<artifactId>plain-credentials</artifactId> <dependency>
<version>1.1</version> <groupId>org.jenkins-ci.plugins</groupId>
<type>jar</type> <artifactId>token-macro</artifactId>
</dependency> <version>1.11</version>
<dependency> <type>jar</type>
<groupId>junit</groupId> </dependency>
<artifactId>junit</artifactId> </dependencies>
<version>4.12</version> <build>
<scope>test</scope> <plugins>
</dependency> <plugin>
<dependency> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.powermock</groupId> <artifactId>maven-surefire-plugin</artifactId>
<artifactId>powermock-module-junit4</artifactId> <configuration>
<version>1.6.2</version> <excludes>
<scope>test</scope> <exclude>InjectedTest.java</exclude>
</dependency> </excludes>
<dependency> </configuration>
<groupId>org.powermock</groupId> </plugin>
<artifactId>powermock-api-mockito</artifactId> <plugin>
<version>1.6.2</version> <groupId>org.jenkins-ci.tools</groupId>
<scope>test</scope> <artifactId>maven-hpi-plugin</artifactId>
</dependency> <extensions>true</extensions>
<dependency> <configuration>
<groupId>org.jenkins-ci.plugins</groupId> <compatibleSinceVersion>1.9</compatibleSinceVersion>
<artifactId>token-macro</artifactId> </configuration>
<version>1.11</version> </plugin>
<type>jar</type> </plugins>
</dependency> </build>
</dependencies>

<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>InjectedTest.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.jenkins-ci.tools</groupId>
<artifactId>maven-hpi-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<compatibleSinceVersion>1.9</compatibleSinceVersion>
</configuration>
</plugin>
</plugins>
</build>
</project> </project>

0 comments on commit f5541a5

Please sign in to comment.