-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MINVOKER-304] Use only common groovy modules - xml, json
- changed dependencies in pom - added documentation about groovy versions
- Loading branch information
1 parent
8458a98
commit c5a389d
Showing
4 changed files
with
95 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
------ | ||
Groovy version and extensions | ||
------ | ||
Slawomir Jaranowski | ||
------ | ||
2022-05-22 | ||
------ | ||
|
||
~~ Licensed to the Apache Software Foundation (ASF) under one | ||
~~ or more contributor license agreements. See the NOTICE file | ||
~~ distributed with this work for additional information | ||
~~ regarding copyright ownership. The ASF licenses this file | ||
~~ to you under the Apache License, Version 2.0 (the | ||
~~ "License"); you may not use this file except in compliance | ||
~~ with the License. You may obtain a copy of the License at | ||
~~ | ||
~~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~~ | ||
~~ Unless required by applicable law or agreed to in writing, | ||
~~ software distributed under the License is distributed on an | ||
~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
~~ KIND, either express or implied. See the License for the | ||
~~ specific language governing permissions and limitations | ||
~~ under the License. | ||
|
||
~~ NOTE: For help with the syntax of this file, see: | ||
~~ http://maven.apache.org/doxia/references/apt-format.html | ||
|
||
Groovy version and extensions | ||
|
||
<<NOTICE>>: Plugin <<<maven-invoker-plugin>>> in versions older than <<<3.3.0>>> has dependency | ||
on <<<groovy-all>>> artifact from <<<Groovy 2>>>. | ||
|
||
Plugin <<<maven-invoker-plugin>>> in version <<<3.3.0>>> has only dependency on <<<Groovy 3>>> core add common extensions: | ||
|
||
* <<<org.codehaus.groovy:groovy:3.0.10>>> | ||
|
||
* <<<org.codehaus.groovy:groovy-json:3.0.10>>> | ||
|
||
* <<<org.codehaus.groovy:groovy-xml:3.0.10>>> | ||
|
||
[] | ||
|
||
If you need additional <<<Groovy>>> extension in your scripts ( post, pre, setup, ... ) | ||
you must add a dependency to plugin definition, eg: | ||
|
||
+------------------ | ||
<project> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-invoker-plugin</artifactId> | ||
<version>${project.version}</version> | ||
..... | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.codehaus.groovy</groupId> | ||
<artifactId>groovy-yaml</artifactId> | ||
<version>3.0.10</version> | ||
</dependency> | ||
</dependencies> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> | ||
+------------------ | ||
|
||
<<NOTICE>>: In plugin version <<<3.3.0>>> only <<<Groovy 3>>> extensions can be used. | ||
|
||
Groovy 4 | ||
|
||
Please be noted that in <<<Groovy 4>>> maven <<<groupId>>> was changed | ||
from <<org.codehaus.groovy>> to <<org.apache.groovy>>. | ||
|
||
Plugin has dependency on <<<Groovy 3>>> artifacts with old <<<groupId>>>, | ||
what causes that <<<Groovy 4>>> can not by used in scripts. | ||
|
||
Next version of <<<maven-invoker-plugin>>> can contains <<<Groovy 4>>> as default. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters