File tree Expand file tree Collapse file tree 4 files changed +31
-17
lines changed Expand file tree Collapse file tree 4 files changed +31
-17
lines changed Original file line number Diff line number Diff line change @@ -5,19 +5,16 @@ install: true
5
5
jdk :
6
6
- oraclejdk8
7
7
8
- addons :
9
- apt :
10
- packages :
11
- - mercurial
12
-
13
8
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
17
10
18
11
cache :
19
12
directories :
20
- - ' $HOME/.m2/repository'
13
+ - $HOME/.m2/repository
14
+ - $HOME/.sonar
21
15
22
16
notifications :
23
17
email : false
18
+ webhooks :
19
+ - secure : " azdp/Wu6vLgS4XcEx/TwfwpO4kKVnC+V+SN/OhVMrblNeYhT7gNbe8dhBcw70DE8PgcMSg/u5Xs2F2g5lzP/FfUepqvC6vzbq8ksrSZfgWqpXfOQWV2izNfBp57gTrvENl0inKsQrGbHOvgZ2A2GIGNMLPfBma5ezKhZhT8bmQY="
20
+ on_start : always
Original file line number Diff line number Diff line change 1
1
# 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 )
3
3
4
4
## Description
5
5
This plugin implements SCM dependent features of SonarQube for [ Mercurial] ( http://www.mercurial-scm.org/ ) projects.
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >org.sonarsource.parent</groupId >
6
6
<artifactId >parent</artifactId >
7
- <version >44 </version >
7
+ <version >46 </version >
8
8
<relativePath />
9
9
</parent >
10
10
<groupId >org.sonarsource.scm.mercurial</groupId >
42
42
</modules >
43
43
44
44
<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 >
48
48
<tag >HEAD</tag >
49
49
</scm >
50
50
51
51
<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 >
54
54
</issueManagement >
55
55
56
56
<ciManagement >
57
57
<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 >
59
59
</ciManagement >
60
60
61
61
<properties >
62
62
<sonar .buildVersion>6.7</sonar .buildVersion>
63
63
<gitRepositoryName >sonar-scm-mercurial</gitRepositoryName >
64
+
65
+ <!-- Release: enable publication to Bintray -->
66
+ <artifactsToPublish >${project.groupId}:sonar-scm-mercurial-plugin:jar</artifactsToPublish >
64
67
</properties >
65
68
66
69
<profiles >
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments