Skip to content

Commit 2bfc1dc

Browse files
SONARHG-2 Move back to SonarSource organization
1 parent f941a5c commit 2bfc1dc

File tree

4 files changed

+31
-17
lines changed

4 files changed

+31
-17
lines changed

.travis.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,16 @@ install: true
55
jdk:
66
- oraclejdk8
77

8-
addons:
9-
apt:
10-
packages:
11-
- mercurial
12-
138
script:
14-
- hg --version
15-
- mvn verify -Pits -Dsonar.runtimeVersion=DEV -B -e -V
16-
- mvn verify -Pits -Dsonar.runtimeVersion=LATEST_RELEASE[6.7] -B -e -V
9+
- ./travis.sh
1710

1811
cache:
1912
directories:
20-
- '$HOME/.m2/repository'
13+
- $HOME/.m2/repository
14+
- $HOME/.sonar
2115

2216
notifications:
2317
email: false
18+
webhooks:
19+
- secure: "azdp/Wu6vLgS4XcEx/TwfwpO4kKVnC+V+SN/OhVMrblNeYhT7gNbe8dhBcw70DE8PgcMSg/u5Xs2F2g5lzP/FfUepqvC6vzbq8ksrSZfgWqpXfOQWV2izNfBp57gTrvENl0inKsQrGbHOvgZ2A2GIGNMLPfBma5ezKhZhT8bmQY="
20+
on_start: always

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SonarQube Mercurial plugin
2-
[![Build Status](https://travis-ci.org/SonarQubeCommunity/sonar-scm-mercurial.svg)](https://travis-ci.org/SonarQubeCommunity/sonar-scm-mercurial)
2+
[![Build Status](https://travis-ci.org/SonarSource/sonar-scm-mercurial.svg)](https://travis-ci.org/SonarQubeCommunity/sonar-scm-mercurial)
33

44
## Description
55
This plugin implements SCM dependent features of SonarQube for [Mercurial](http://www.mercurial-scm.org/) projects.

pom.xml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.sonarsource.parent</groupId>
66
<artifactId>parent</artifactId>
7-
<version>44</version>
7+
<version>46</version>
88
<relativePath />
99
</parent>
1010
<groupId>org.sonarsource.scm.mercurial</groupId>
@@ -42,25 +42,28 @@
4242
</modules>
4343

4444
<scm>
45-
<connection>scm:git:[email protected]:SonarQubeCommunity/sonar-scm-mercurial.git</connection>
46-
<developerConnection>scm:git:[email protected]:SonarQubeCommunity/sonar-scm-mercurial.git</developerConnection>
47-
<url>https://github.com/SonarQubeCommunity/sonar-scm-mercurial</url>
45+
<connection>scm:git:[email protected]:SonarSource/sonar-scm-mercurial.git</connection>
46+
<developerConnection>scm:git:[email protected]:SonarSource/sonar-scm-mercurial.git</developerConnection>
47+
<url>https://github.com/SonarSource/sonar-scm-mercurial</url>
4848
<tag>HEAD</tag>
4949
</scm>
5050

5151
<issueManagement>
52-
<system>GitHub Issues</system>
53-
<url>https://github.com/SonarQubeCommunity/sonar-scm-mercurial/issues</url>
52+
<system>jira</system>
53+
<url>https://jira.sonarsource.com/browse/SONARHG</url>
5454
</issueManagement>
5555

5656
<ciManagement>
5757
<system>Travis</system>
58-
<url>https://travis-ci.org/SonarQubeCommunity/sonar-scm-mercurial/</url>
58+
<url>https://travis-ci.org/SonarSource/sonar-scm-mercurial/</url>
5959
</ciManagement>
6060

6161
<properties>
6262
<sonar.buildVersion>6.7</sonar.buildVersion>
6363
<gitRepositoryName>sonar-scm-mercurial</gitRepositoryName>
64+
65+
<!-- Release: enable publication to Bintray -->
66+
<artifactsToPublish>${project.groupId}:sonar-scm-mercurial-plugin:jar</artifactsToPublish>
6467
</properties>
6568

6669
<profiles>

travis.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
#!/bin/bash
3+
set -euo pipefail
4+
5+
function configureTravis {
6+
mkdir -p ~/.local
7+
curl -sSL https://github.com/SonarSource/travis-utils/tarball/v50 | tar zx --strip-components 1 -C ~/.local
8+
source ~/.local/bin/install
9+
}
10+
configureTravis
11+
12+
export DEPLOY_PULL_REQUEST=true
13+
14+
regular_mvn_build_deploy_analyze

0 commit comments

Comments
 (0)