Skip to content

Commit

Permalink
Issue checkstyle#7: Change artifact name and provide deployment proce…
Browse files Browse the repository at this point in the history
…ss (all except for module folder renaming)
  • Loading branch information
romani authored and tsjensen committed Mar 21, 2019
1 parent 29fc6c6 commit 676cc9b
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 26 deletions.
4 changes: 2 additions & 2 deletions checkstyle-all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<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>

Expand Down
55 changes: 42 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand All @@ -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>
Expand Down
16 changes: 5 additions & 11 deletions sonar-checkstyle-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 676cc9b

Please sign in to comment.