Skip to content

Commit

Permalink
JENKINS-31639 Notify user about plugin changes causing compatibilities
Browse files Browse the repository at this point in the history
  • Loading branch information
aquarellian committed Nov 18, 2015
1 parent a36eb88 commit 9087155
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 16 deletions.
43 changes: 29 additions & 14 deletions pom.xml
@@ -1,12 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<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"
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.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.580.1</version>
<relativePath />
<relativePath/>
</parent>

<artifactId>sonar-gerrit</artifactId>
Expand All @@ -24,22 +25,23 @@
</licenses>

<developers>
<developer>
<id>aquarellian</id>
<name>Tatiana Didik (Goretskaya)</name>
<email>aquarellian@gmail.com</email>
</developer>
<developer>
<id>adidik</id>
<name>Aleksey Didik</name>
</developer>
<developer>
<id>aquarellian</id>
<name>Tatiana Didik (Goretskaya)</name>
<email>aquarellian@gmail.com</email>
</developer>
<developer>
<id>adidik</id>
<name>Aleksey Didik</name>
</developer>
</developers>
<scm>
<connection>scm:git:ssh://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com/jenkinsci/${project.artifactId}-plugin.git</developerConnection>
<developerConnection>scm:git:ssh://git@github.com/jenkinsci/${project.artifactId}-plugin.git
</developerConnection>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
<tag>sonar-gerrit-1.0.2</tag>
</scm>
<tag>sonar-gerrit-1.0.2</tag>
</scm>

<repositories>
<repository>
Expand All @@ -54,6 +56,19 @@
</pluginRepository>
</pluginRepositories>

<build>
<plugins>
<plugin>
<groupId>org.jenkins-ci.tools</groupId>
<artifactId>maven-hpi-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<compatibleSinceVersion>1.0</compatibleSinceVersion>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>com.sonyericsson.hudson.plugins.gerrit</groupId>
Expand Down
3 changes: 1 addition & 2 deletions src/main/resources/index.jelly
@@ -1,7 +1,6 @@
<?jelly escape-by-default='true'?>
<!--
This view is used to render the installed plugins page.
-->
<div>
This plugin allows to submit issues from Sonar to Gerrit as comments directly.
This plugin allows to submit issues from <a href="http://www.sonarqube.org/">SonarQube</a> to <a href="https://www.gerritcodereview.com">Gerrit</a> as comments directly.
</div>

0 comments on commit 9087155

Please sign in to comment.