Skip to content

Commit 83b68fd

Browse files
authored
SONARPY-213 Upgrade SSLR to 1.22 (SonarSource#118)
1 parent c634e97 commit 83b68fd

4 files changed

Lines changed: 17 additions & 8 deletions

File tree

pom.xml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@
9090
<sonar.version>6.2</sonar.version>
9191
<sonar.orchestrator.version>3.14.0.887</sonar.orchestrator.version>
9292
<sonarlint-core.version>2.4.1</sonarlint-core.version>
93-
<sslr.version>1.21</sslr.version>
94-
<sslr.xpath.version>1.20</sslr.xpath.version>
93+
<sslr.version>1.22</sslr.version>
94+
<sslr.xpath.version>1.22</sslr.xpath.version>
9595
<woodstox.version>4.4.1</woodstox.version>
9696
</properties>
9797

@@ -115,7 +115,7 @@
115115
<version>${sslr.version}</version>
116116
</dependency>
117117
<dependency>
118-
<groupId>org.codehaus.sonar.sslr</groupId>
118+
<groupId>org.sonarsource.sslr</groupId>
119119
<artifactId>sslr-xpath</artifactId>
120120
<version>${sslr.xpath.version}</version>
121121
</dependency>
@@ -159,6 +159,11 @@
159159
<artifactId>logback-classic</artifactId>
160160
<version>${logback.version}</version>
161161
</dependency>
162+
<dependency>
163+
<groupId>com.google.guava</groupId>
164+
<artifactId>guava</artifactId>
165+
<version>22.0</version>
166+
</dependency>
162167

163168
<!-- test dependencies -->
164169
<dependency>

python-squid/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,13 @@
1818
<artifactId>sslr-core</artifactId>
1919
</dependency>
2020
<dependency>
21-
<groupId>org.codehaus.sonar.sslr</groupId>
21+
<groupId>org.sonarsource.sslr</groupId>
2222
<artifactId>sslr-xpath</artifactId>
2323
</dependency>
24+
<dependency>
25+
<groupId>com.google.guava</groupId>
26+
<artifactId>guava</artifactId>
27+
</dependency>
2428
<dependency>
2529
<groupId>org.slf4j</groupId>
2630
<artifactId>slf4j-api</artifactId>

sonar-python-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@
116116
<configuration>
117117
<rules>
118118
<requireFilesSize>
119-
<minsize>3500000</minsize>
120-
<maxsize>3700000</maxsize>
119+
<minsize>4600000</minsize>
120+
<maxsize>4700000</maxsize>
121121
<files>
122122
<file>${project.build.directory}/${project.build.finalName}.jar</file>
123123
</files>

sslr-python-toolkit/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@
100100
<configuration>
101101
<rules>
102102
<requireFilesSize>
103-
<maxsize>3300000</maxsize>
104-
<minsize>1400000</minsize>
103+
<maxsize>3900000</maxsize>
104+
<minsize>3800000</minsize>
105105
<files>
106106
<file>${project.build.directory}/${project.build.finalName}.jar</file>
107107
</files>

0 commit comments

Comments
 (0)