Skip to content
This repository was archived by the owner on Dec 10, 2024. It is now read-only.

Commit f78ce6c

Browse files
committed
Don't pin groovy version anymore
The version of CodeNarc we use now uses a newer Groovy version, so we don't need to pin groovy anymore.
1 parent b30267c commit f78ce6c

File tree

2 files changed

+2
-24
lines changed

2 files changed

+2
-24
lines changed

pom.xml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@
7676

7777
<properties>
7878
<sonar.version>8.0</sonar.version>
79-
<groovy.version>2.4.21</groovy.version>
8079
<orchestrator.version>3.11</orchestrator.version>
8180

8281
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
@@ -85,27 +84,6 @@
8584

8685
<dependencyManagement>
8786
<dependencies>
88-
<dependency>
89-
<groupId>org.codehaus.groovy</groupId>
90-
<artifactId>groovy</artifactId>
91-
<version>${groovy.version}</version>
92-
</dependency>
93-
<dependency>
94-
<groupId>org.codehaus.groovy</groupId>
95-
<artifactId>groovy-json</artifactId>
96-
<version>${groovy.version}</version>
97-
</dependency>
98-
<dependency>
99-
<groupId>org.codehaus.groovy</groupId>
100-
<artifactId>groovy-templates</artifactId>
101-
<version>${groovy.version}</version>
102-
</dependency>
103-
<dependency>
104-
<groupId>org.codehaus.groovy</groupId>
105-
<artifactId>groovy-xml</artifactId>
106-
<version>${groovy.version}</version>
107-
</dependency>
108-
10987
<dependency>
11088
<groupId>org.sonarsource.sonarqube</groupId>
11189
<artifactId>sonar-plugin-api</artifactId>

sonar-groovy-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@
118118
<configuration>
119119
<rules>
120120
<requireFilesSize>
121-
<maxsize>12000000</maxsize>
122-
<minsize>8500000</minsize>
121+
<maxsize>13000000</maxsize>
122+
<minsize>11000000</minsize>
123123
<files>
124124
<file>${project.build.directory}/${project.build.finalName}.jar</file>
125125
</files>

0 commit comments

Comments
 (0)