You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2017/01/31 07:28:56 UTC

[1/2] syncope git commit: Upgrading the maven-invoker-plugin

Repository: syncope
Updated Branches:
  refs/heads/2_0_X 246fa9984 -> 628c0e6b3
  refs/heads/master 2bedca33c -> 8004d7e9c


Upgrading the maven-invoker-plugin


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/628c0e6b
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/628c0e6b
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/628c0e6b

Branch: refs/heads/2_0_X
Commit: 628c0e6b3f1c179d9e096ad02ac6b6c280663d9d
Parents: 246fa99
Author: Francesco Chicchiricc� <il...@apache.org>
Authored: Mon Jan 30 08:13:59 2017 +0100
Committer: Francesco Chicchiricc� <il...@apache.org>
Committed: Mon Jan 30 08:13:59 2017 +0100

----------------------------------------------------------------------
 .../java/org/apache/syncope/installer/utilities/MavenUtils.java    | 2 +-
 installer/src/main/resources/izpack/install.xml                    | 2 +-
 pom.xml                                                            | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/628c0e6b/installer/src/main/java/org/apache/syncope/installer/utilities/MavenUtils.java
----------------------------------------------------------------------
diff --git a/installer/src/main/java/org/apache/syncope/installer/utilities/MavenUtils.java b/installer/src/main/java/org/apache/syncope/installer/utilities/MavenUtils.java
index e2bc097..2464a6b 100644
--- a/installer/src/main/java/org/apache/syncope/installer/utilities/MavenUtils.java
+++ b/installer/src/main/java/org/apache/syncope/installer/utilities/MavenUtils.java
@@ -64,7 +64,7 @@ public class MavenUtils {
 
         final InvocationRequest request = new DefaultInvocationRequest();
         request.setGoals(Collections.singletonList("archetype:generate"));
-        request.setInteractive(false);
+        request.setBatchMode(true);
         final Properties properties =
                 archetypeProperties(archetypeVersion, groupId, artifactId, secretKey, anonymousKey);
         request.setProperties(properties);

http://git-wip-us.apache.org/repos/asf/syncope/blob/628c0e6b/installer/src/main/resources/izpack/install.xml
----------------------------------------------------------------------
diff --git a/installer/src/main/resources/izpack/install.xml b/installer/src/main/resources/izpack/install.xml
index 625d85b..df9881d 100644
--- a/installer/src/main/resources/izpack/install.xml
+++ b/installer/src/main/resources/izpack/install.xml
@@ -141,7 +141,7 @@ under the License.
   <jar src="lib/jackson-annotations-@{jackson.version}.jar"/>
   
   <jar src="lib/maven-invoker-@{maven-invoker.version}.jar"/>
-  <jar src="lib/plexus-utils-3.0.8.jar"/>
+  <jar src="lib/plexus-utils-3.0.24.jar"/>
   
   <panels>
     <panel classname="HTMLHelloPanel" id="welcome"/>

http://git-wip-us.apache.org/repos/asf/syncope/blob/628c0e6b/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index af98087..3dd51fc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -440,7 +440,7 @@ under the License.
     
     <izpack.version>5.0.10</izpack.version>
     <httpclient.version>4.3.6</httpclient.version>
-    <maven-invoker.version>2.1.1</maven-invoker.version>
+    <maven-invoker.version>3.0.0</maven-invoker.version>
     <tycho-version>0.23.1</tycho-version>
 
     <testds.port>1389</testds.port>


[2/2] syncope git commit: Upgrading the maven-invoker-plugin

Posted by il...@apache.org.
Upgrading the maven-invoker-plugin


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/8004d7e9
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/8004d7e9
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/8004d7e9

Branch: refs/heads/master
Commit: 8004d7e9cce0ce80536aee173c8806e8454fcd67
Parents: 2bedca3
Author: Francesco Chicchiricc� <il...@apache.org>
Authored: Mon Jan 30 08:13:59 2017 +0100
Committer: Francesco Chicchiricc� <il...@apache.org>
Committed: Mon Jan 30 08:15:15 2017 +0100

----------------------------------------------------------------------
 .../java/org/apache/syncope/installer/utilities/MavenUtils.java    | 2 +-
 installer/src/main/resources/izpack/install.xml                    | 2 +-
 pom.xml                                                            | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/8004d7e9/installer/src/main/java/org/apache/syncope/installer/utilities/MavenUtils.java
----------------------------------------------------------------------
diff --git a/installer/src/main/java/org/apache/syncope/installer/utilities/MavenUtils.java b/installer/src/main/java/org/apache/syncope/installer/utilities/MavenUtils.java
index e2bc097..2464a6b 100644
--- a/installer/src/main/java/org/apache/syncope/installer/utilities/MavenUtils.java
+++ b/installer/src/main/java/org/apache/syncope/installer/utilities/MavenUtils.java
@@ -64,7 +64,7 @@ public class MavenUtils {
 
         final InvocationRequest request = new DefaultInvocationRequest();
         request.setGoals(Collections.singletonList("archetype:generate"));
-        request.setInteractive(false);
+        request.setBatchMode(true);
         final Properties properties =
                 archetypeProperties(archetypeVersion, groupId, artifactId, secretKey, anonymousKey);
         request.setProperties(properties);

http://git-wip-us.apache.org/repos/asf/syncope/blob/8004d7e9/installer/src/main/resources/izpack/install.xml
----------------------------------------------------------------------
diff --git a/installer/src/main/resources/izpack/install.xml b/installer/src/main/resources/izpack/install.xml
index 625d85b..df9881d 100644
--- a/installer/src/main/resources/izpack/install.xml
+++ b/installer/src/main/resources/izpack/install.xml
@@ -141,7 +141,7 @@ under the License.
   <jar src="lib/jackson-annotations-@{jackson.version}.jar"/>
   
   <jar src="lib/maven-invoker-@{maven-invoker.version}.jar"/>
-  <jar src="lib/plexus-utils-3.0.8.jar"/>
+  <jar src="lib/plexus-utils-3.0.24.jar"/>
   
   <panels>
     <panel classname="HTMLHelloPanel" id="welcome"/>

http://git-wip-us.apache.org/repos/asf/syncope/blob/8004d7e9/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 03f96b9..dd38cb4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -440,7 +440,7 @@ under the License.
     
     <izpack.version>5.0.10</izpack.version>
     <httpclient.version>4.3.6</httpclient.version>
-    <maven-invoker.version>2.1.1</maven-invoker.version>
+    <maven-invoker.version>3.0.0</maven-invoker.version>
     <tycho-version>0.26.0</tycho-version>
 
     <testds.port>1389</testds.port>