Skip to content

Commit

Permalink
[MINVOKER-274] upgrade to groovy 3.0.8 (#58)
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier Lamy <olamy@apache.org>
  • Loading branch information
olamy committed Aug 8, 2021
1 parent d1da7b5 commit 709c6c7
Showing 1 changed file with 85 additions and 3 deletions.
88 changes: 85 additions & 3 deletions pom.xml
Expand Up @@ -73,12 +73,24 @@ under the License.
<beanshell-artifactId>bsh</beanshell-artifactId>
<beanshell-version>2.0b6</beanshell-version>
<groovy-groupId>org.codehaus.groovy</groovy-groupId>
<groovy-artifactId>groovy-all</groovy-artifactId>
<groovy-version>2.4.21</groovy-version>
<groovy-artifactId>groovy</groovy-artifactId>
<groovy-version>3.0.8</groovy-version>
<surefire.version>2.22.2</surefire.version>
<project.build.outputTimestamp>2021-02-14T00:04:14Z</project.build.outputTimestamp>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-bom</artifactId>
<version>${groovy-version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.apache.maven.shared</groupId>
Expand Down Expand Up @@ -202,7 +214,77 @@ under the License.
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>${groovy-artifactId}</artifactId>
<version>${groovy-version}</version>
<scope>runtime</scope>
</dependency>
<!-- groovy-all do not provide anymore a uber jar containing everything so we must add some dependencies -->
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-ant</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-astbuilder</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-console</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-datetime</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-jmx</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-json</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-jsr223</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-macro</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-nio</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-servlet</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-test</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-test-junit5</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-testng</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${groovy-groupId}</groupId>
<artifactId>groovy-xml</artifactId>
<scope>runtime</scope>
</dependency>

Expand Down

0 comments on commit 709c6c7

Please sign in to comment.