-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SONARHG-2 Move back to SonarSource organization
- Loading branch information
1 parent
f941a5c
commit 23b1cb3
Showing
4 changed files
with
32 additions
and
18 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
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 |
---|---|---|
|
@@ -4,14 +4,14 @@ | |
<parent> | ||
<groupId>org.sonarsource.parent</groupId> | ||
<artifactId>parent</artifactId> | ||
<version>44</version> | ||
<version>46</version> | ||
<relativePath /> | ||
</parent> | ||
<groupId>org.sonarsource.scm.mercurial</groupId> | ||
<artifactId>scm-mercurial</artifactId> | ||
<name>SonarQube :: Plugins :: SCM :: Mercurial</name> | ||
<version>1.2-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>SonarQube :: Plugins :: SCM :: Mercurial</name> | ||
<description>Mercurial SCM Provider</description> | ||
<url>http://redirect.sonarsource.com/plugins/scmmercurial.html</url> | ||
<inceptionYear>2014</inceptionYear> | ||
|
@@ -42,25 +42,28 @@ | |
</modules> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:SonarQubeCommunity/sonar-scm-mercurial.git</connection> | ||
<developerConnection>scm:git:[email protected]:SonarQubeCommunity/sonar-scm-mercurial.git</developerConnection> | ||
<url>https://github.com/SonarQubeCommunity/sonar-scm-mercurial</url> | ||
<connection>scm:git:[email protected]:SonarSource/sonar-scm-mercurial.git</connection> | ||
<developerConnection>scm:git:[email protected]:SonarSource/sonar-scm-mercurial.git</developerConnection> | ||
<url>https://github.com/SonarSource/sonar-scm-mercurial</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<issueManagement> | ||
<system>GitHub Issues</system> | ||
<url>https://github.com/SonarQubeCommunity/sonar-scm-mercurial/issues</url> | ||
<system>jira</system> | ||
<url>https://jira.sonarsource.com/browse/SONARHG</url> | ||
</issueManagement> | ||
|
||
<ciManagement> | ||
<system>Travis</system> | ||
<url>https://travis-ci.org/SonarQubeCommunity/sonar-scm-mercurial/</url> | ||
<url>https://travis-ci.org/SonarSource/sonar-scm-mercurial/</url> | ||
</ciManagement> | ||
|
||
<properties> | ||
<sonar.buildVersion>6.7</sonar.buildVersion> | ||
<gitRepositoryName>sonar-scm-mercurial</gitRepositoryName> | ||
|
||
<!-- Release: enable publication to Bintray --> | ||
<artifactsToPublish>${project.groupId}:sonar-scm-mercurial-plugin:jar</artifactsToPublish> | ||
</properties> | ||
|
||
<profiles> | ||
|
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
function configureTravis { | ||
mkdir -p ~/.local | ||
curl -sSL https://github.com/SonarSource/travis-utils/tarball/v50 | tar zx --strip-components 1 -C ~/.local | ||
source ~/.local/bin/install | ||
} | ||
configureTravis | ||
|
||
export DEPLOY_PULL_REQUEST=true | ||
|
||
regular_mvn_build_deploy_analyze |