|
6 | 6 | <groupId>fr.cnes.sonar.plugins</groupId> |
7 | 7 | <artifactId>sonar-icode-cnes-plugin</artifactId> |
8 | 8 | <packaging>sonar-plugin</packaging> |
9 | | - <version>3.0.1</version> |
| 9 | + <version>3.1.0</version> |
10 | 10 |
|
11 | 11 | <name>Sonar i-Code CNES plugin</name> |
12 | 12 |
|
|
46 | 46 | <url>https://github.com/WaldoFR</url> |
47 | 47 | <id>WaldoFR</id> |
48 | 48 | </developer> |
| 49 | + <developer> |
| 50 | + <name>Diego Rodriguez</name> |
| 51 | + <organization>CNES</organization> |
| 52 | + <url>https://github.com/WaldoFR</url> |
| 53 | + <id>WaldoFR</id> |
| 54 | + </developer> |
49 | 55 | </developers> |
50 | 56 |
|
51 | 57 | <properties> |
|
55 | 61 | <jdk.max.version>11</jdk.max.version> |
56 | 62 | <maven.compiler.source>1.8</maven.compiler.source> |
57 | 63 | <maven.compiler.target>1.8</maven.compiler.target> |
58 | | - <sonar.apiVersion>6.7.7</sonar.apiVersion> |
| 64 | + <sonar.apiVersion>9.8.0.203</sonar.apiVersion> |
| 65 | + <sonar.testingHarnessVersion>9.5.0.56709</sonar.testingHarnessVersion> |
59 | 66 | <sonar.sslr-squid-bridge.version>2.6.1</sonar.sslr-squid-bridge.version> |
60 | | - <sonar-packaging-maven-plugin.version>1.17</sonar-packaging-maven-plugin.version> |
| 67 | + <sonar-packaging-maven-plugin.version>1.21.0.505</sonar-packaging-maven-plugin.version> |
61 | 68 | <commons-lang.version>3.7</commons-lang.version> |
62 | 69 | <gson.version>2.8.2</gson.version> |
63 | 70 | <slf4j.version>1.7.25</slf4j.version> |
|
81 | 88 |
|
82 | 89 | <dependencies> |
83 | 90 | <dependency> |
84 | | - <groupId>org.sonarsource.sonarqube</groupId> |
| 91 | + <groupId>org.sonarsource.api.plugin</groupId> |
85 | 92 | <artifactId>sonar-plugin-api</artifactId> |
86 | 93 | <version>${sonar.apiVersion}</version> |
87 | 94 | <scope>provided</scope> |
|
100 | 107 | <dependency> |
101 | 108 | <groupId>org.sonarsource.sonarqube</groupId> |
102 | 109 | <artifactId>sonar-testing-harness</artifactId> |
103 | | - <version>${sonar.apiVersion}</version> |
| 110 | + <version>${sonar.testingHarnessVersion}</version> |
104 | 111 | <scope>test</scope> |
105 | 112 | </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>org.sonarsource.sonarqube</groupId> |
| 115 | + <artifactId>sonar-plugin-api-impl</artifactId> |
| 116 | + <version>9.9.1.69595</version> |
| 117 | + </dependency> |
106 | 118 | <dependency> |
107 | 119 | <groupId>junit</groupId> |
108 | 120 | <artifactId>junit</artifactId> |
| 121 | + <version>4.11</version> |
109 | 122 | <scope>test</scope> |
110 | 123 | </dependency> |
111 | 124 | <dependency> |
|
134 | 147 | <plugin> |
135 | 148 | <groupId>org.apache.maven.plugins</groupId> |
136 | 149 | <artifactId>maven-compiler-plugin</artifactId> |
137 | | - <version>3.5.1</version> |
| 150 | + <version>3.10.1</version> |
138 | 151 | <configuration> |
139 | 152 | <source>${jdk.min.version}</source> |
140 | 153 | <target>${jdk.min.version}</target> |
|
145 | 158 | <!-- UTF-8 bundles are not supported by Java, so they must be converted during build --> |
146 | 159 | <groupId>org.codehaus.mojo</groupId> |
147 | 160 | <artifactId>native2ascii-maven-plugin</artifactId> |
148 | | - <version>1.0-beta-1</version> |
| 161 | + <version>2.0.1</version> |
149 | 162 | <executions> |
150 | | - <execution> |
151 | | - <goals> |
152 | | - <goal>native2ascii</goal> |
153 | | - </goals> |
154 | | - </execution> |
| 163 | + <execution> |
| 164 | + <goals> |
| 165 | + <goal>resources</goal> |
| 166 | + </goals> |
| 167 | + </execution> |
155 | 168 | </executions> |
156 | 169 | </plugin> |
157 | 170 |
|
|
0 commit comments