Skip to content

Commit

Permalink
pom.xml : fix whitespace and bump required Jenkins core version
Browse files Browse the repository at this point in the history
  • Loading branch information
jimklimov committed Jul 25, 2019
1 parent f4b67e3 commit 30ca891
Showing 1 changed file with 70 additions and 48 deletions.
118 changes: 70 additions & 48 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,96 +1,118 @@
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>instant-messaging-parent</artifactId>
<version>1.27</version>
<relativePath>../instant-messaging-parent-plugin/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>instant-messaging-parent</artifactId>
<version>1.27</version>
<relativePath>../instant-messaging-parent-plugin/pom.xml</relativePath>
</parent>

<artifactId>instant-messaging</artifactId>
<name>Jenkins instant-messaging plugin</name>
<version>1.36-SNAPSHOT</version>
<packaging>hpi</packaging>
<url>http://wiki.jenkins-ci.org/display/JENKINS/Instant+Messaging+Plugin</url>
<developers>
<developer>
<id>kutzi</id>
<name>Christoph Kutzinski</name>
<email>kutzi@gmx.de</email>
<timezone>1</timezone>
</developer>
<artifactId>instant-messaging</artifactId>
<name>Jenkins instant-messaging plugin</name>
<version>1.36-SNAPSHOT</version>
<packaging>hpi</packaging>
<url>http://wiki.jenkins-ci.org/display/JENKINS/Instant+Messaging+Plugin</url>
<developers>
<developer>
<id>kutzi</id>
<name>Christoph Kutzinski</name>
<email>kutzi@gmx.de</email>
<timezone>1</timezone>
</developer>
<developer>
<id>kohsuke</id>
<name>Kohsuke Kawaguchi</name>
<email>kk@kohsuke.org</email>
</developer>
</developers>
</developers>

<licenses>
<license>
<name>MIT license</name>
<comments>All source code is under the MIT license.</comments>
</license>
</licenses>

<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>

<dependencies>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>mailer</artifactId>
<version>1.7</version>
<!-- TODO: should be transformed into a optional dependency -->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>mailer</artifactId>
<version>1.7</version>
<!-- TODO: should be transformed into a optional dependency -->
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>matrix-project</artifactId>
<version>1.4</version>
<!-- TODO: should be transformed into a optional dependency -->
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>matrix-project</artifactId>
<version>1.4</version>
<!-- TODO: should be transformed into a optional dependency -->
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>junit</artifactId>
<version>1.7</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>junit</artifactId>
<version>1.7</version>
<groupId>org.jenkins-ci.main</groupId>
<artifactId>maven-plugin</artifactId>
<!-- needs hudson.model.User with getById() -->
<version>2.3</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.main</groupId>
<artifactId>jenkins-war</artifactId>
<type>war</type>
<!-- needs hudson.model.User with getById() -->
<version>2.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.main</groupId>
<artifactId>jenkins-core</artifactId>
<!-- needs hudson.model.User with getById() -->
<version>2.3</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
<scope>compile</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>

<scm>
<connection>scm:git:git@github.com:jenkinsci/instant-messaging-plugin.git</connection>
<developerConnection>scm:git:git@github.com:jenkinsci/instant-messaging-plugin.git</developerConnection>
<url>http://fisheye.jenkins-ci.org/browse/Jenkins/trunk/trunk/hudson/plugins/instant-messaging</url>
<tag>HEAD</tag>
</scm>
</scm>

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

0 comments on commit 30ca891

Please sign in to comment.