forked from checkstyle/sonar-checkstyle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue checkstyle#7: Change artifact name and provide deployment proce…
…ss (all except for module folder renaming)
- Loading branch information
Showing
3 changed files
with
49 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,38 +2,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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>org.sonarsource.checkstyle</groupId> | ||
<artifactId>checkstyle</artifactId> | ||
<groupId>com.github.checkstyle</groupId> | ||
<artifactId>checkstyle-sonar-plugin-parent</artifactId> | ||
<version>3.1-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
|
||
<name>SonarQube Checkstyle</name> | ||
<name>Checkstyle SonarQube plugin</name> | ||
<inceptionYear>2012</inceptionYear> | ||
<organization> | ||
<name>SonarSource</name> | ||
<url>http://www.sonarsource.com</url> | ||
<name>Checkstyle</name> | ||
<url>http://checkstyle.sourceforge.net</url> | ||
</organization> | ||
<licenses> | ||
<license> | ||
<name>GNU LGPL 3</name> | ||
<url>http://www.gnu.org/licenses/lgpl.txt</url> | ||
<name>LGPL-3.0</name> | ||
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<id>romani</id> | ||
<name>Roman Ivanov</name> | ||
<organization>Checkstyle</organization> | ||
<roles> | ||
<role>project admin, lead developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>rnveach</id> | ||
<name>Richard Veach</name> | ||
<organization>Checkstyle</organization> | ||
<roles> | ||
<role>developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>godin</id> | ||
<name>Evgeny Mandrikov</name> | ||
<organization>SonarSource</organization> | ||
<roles> | ||
<role>former developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>m-g-sonar</id> | ||
<name>Michael Gumowski</name> | ||
<organization>SonarSource</organization> | ||
<roles> | ||
<role>former developer</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<id>benzonico</id> | ||
<name>Nicolas Peru</name> | ||
<organization>SonarSource</organization> | ||
<roles> | ||
<role>former developer</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
|
||
|
@@ -43,16 +70,18 @@ | |
</modules> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:SonarQubeCommunity/sonar-checkstyle.git</connection> | ||
<developerConnection>scm:git:[email protected]:SonarQubeCommunity/sonar-checkstyle.git</developerConnection> | ||
<url>https://github.com/SonarQubeCommunity/sonar-checkstyle</url> | ||
<tag>HEAD</tag> | ||
<connection>scm:git:[email protected]:checkstyle/sonar-checkstyle.git</connection> | ||
<developerConnection>scm:git:[email protected]:checkstyle/sonar-checkstyle.git</developerConnection> | ||
<url>https://github.com/checkstyle/sonar-checkstyle</url> | ||
</scm> | ||
<url>https://github.com/SonarQubeCommunity/sonar-checkstyle</url> | ||
<issueManagement> | ||
<system>GitHub Issues</system> | ||
<url>https://github.com/SonarQubeCommunity/sonar-checkstyle/issues</url> | ||
<url>https://github.com/checkstyle/sonar-checkstyle/issues</url> | ||
</issueManagement> | ||
<ciManagement> | ||
<system>travis</system> | ||
<url>https://travis-ci.org/checkstyle/sonar-checkstyle</url> | ||
</ciManagement> | ||
|
||
<properties> | ||
<checkstyle.version>7.1</checkstyle.version> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,23 +3,17 @@ | |
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.sonarsource.checkstyle</groupId> | ||
<artifactId>checkstyle</artifactId> | ||
<groupId>com.github.checkstyle</groupId> | ||
<artifactId>checkstyle-sonar-plugin-parent</artifactId> | ||
<version>3.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>sonar-checkstyle-plugin</artifactId> | ||
<artifactId>checkstyle-sonar-plugin</artifactId> | ||
<packaging>sonar-plugin</packaging> | ||
|
||
<name>SonarQube Checkstyle Plugin</name> | ||
<name>Checkstyle SonarQube Plugin</name> | ||
<description>Checkstyle is a code analyser to help programmers write Java code that adheres to a coding standard.</description> | ||
<url>http://redirect.sonarsource.com/plugins/checkstyle.html</url> | ||
<scm> | ||
<connection>scm:git:[email protected]:SonarCommunity/sonar-checkstyle.git</connection> | ||
<developerConnection>scm:git:[email protected]:SonarCommunity/sonar-checkstyle.git</developerConnection> | ||
<url>https://github.com/SonarCommunity/sonar-checkstyle</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
|
||
<properties> | ||
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile> | ||
|