Skip to content
This repository was archived by the owner on Apr 26, 2023. It is now read-only.

Commit 93cd75d

Browse files
authoredApr 9, 2020
Merge pull request #10 from lequal/dev
Add Java 11 Compatibility
2 parents 0d1961a + fa0ab7c commit 93cd75d

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed
 

‎.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
dist: xenial
12
language: java
23
sudo: false
34
install: true
@@ -7,7 +8,7 @@ addons:
78
organization: "lequal"
89

910
jdk:
10-
- oraclejdk8
11+
- openjdk11
1112

1213
script:
1314
- mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent package sonar:sonar

‎pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>fr.cnes.sonar.plugins.python</groupId>
66
<artifactId>sonar-cnes-python-plugin</artifactId>
77
<packaging>sonar-plugin</packaging>
8-
<version>1.2</version>
8+
<version>1.3</version>
99

1010
<name>SonarQube CNES Python Plugin</name>
1111
<description>CNES plugin for SonarQube that provides further rules to check to Pylint using Pylint CNES Checker Plugin.</description>
@@ -17,7 +17,7 @@
1717
<jdk.min.version>1.8</jdk.min.version>
1818
<pluginUrl>https://cnes.fr</pluginUrl>
1919
<pluginOrganizationName>CNES</pluginOrganizationName>
20-
<jacoco.version>0.7.9</jacoco.version>
20+
<jacoco.version>0.8.5</jacoco.version>
2121
</properties>
2222

2323
<licenses>
@@ -34,6 +34,11 @@
3434
<name>Benoît Garçon</name>
3535
<organization>CNES</organization>
3636
</developer>
37+
<developer>
38+
<id>Sancretor</id>
39+
<name>Alexis Chatillon</name>
40+
<organization>CNES</organization>
41+
</developer>
3742
</developers>
3843

3944
<dependencies>

‎sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
sonar.projectKey=cnespython
22
sonar.projectName=cnespython
3-
sonar.projectVersion=1.4
3+
sonar.projectVersion=1.3
44
sonar.projectDescription=Plugin Python pour SonarQube.
55
sonar.sources=src/main
66
sonar.tests=src/test

0 commit comments

Comments
 (0)