You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2019/06/13 17:54:31 UTC

[tinkerpop] 01/03: Downgrade docker maven plugin given a maven incompatibility.

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit df93fb29cda846a086d3daa9144c7816219e9d74
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Thu Jun 13 13:52:40 2019 -0400

    Downgrade docker maven plugin given a maven incompatibility.
    
    The install command doesn't seem to want to work for creating images and I'd assume that deploy is also messed up. We'd need to ok a newer version of maven to allow upgrade past this version of the plugin. CTR
---
 pom.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 89290a8..2fe7f83 100644
--- a/pom.xml
+++ b/pom.xml
@@ -535,10 +535,12 @@ limitations under the License.
                     <artifactId>maven-jar-plugin</artifactId>
                     <version>3.0.2</version>
                 </plugin>
+                <!-- can't upgrade past 1.4.6 until we enforce maven 3.5.2 or better
+                     https://github.com/spotify/dockerfile-maven/issues/252 -->
                 <plugin>
                     <groupId>com.spotify</groupId>
                     <artifactId>dockerfile-maven-plugin</artifactId>
-                    <version>1.4.10</version>
+                    <version>1.4.6</version>
                 </plugin>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>