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 2018/06/16 13:44:12 UTC

[1/3] syncope git commit: [SYNCOPE-1256] Avoid errors after chmod

Repository: syncope
Updated Branches:
  refs/heads/2_0_X 812e8430d -> 7e68793a2
  refs/heads/master 3a52cc2c2 -> b918245d7


[SYNCOPE-1256] Avoid errors after chmod


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

Branch: refs/heads/2_0_X
Commit: 7e68793a2d05f9478d942825df89d602f4d83a10
Parents: 812e843
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Sat Jun 16 15:43:09 2018 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Sat Jun 16 15:43:09 2018 +0200

----------------------------------------------------------------------
 docker/console/src/main/resources/Dockerfile | 2 +-
 docker/core/src/main/resources/Dockerfile    | 2 +-
 docker/enduser/src/main/resources/Dockerfile | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/7e68793a/docker/console/src/main/resources/Dockerfile
----------------------------------------------------------------------
diff --git a/docker/console/src/main/resources/Dockerfile b/docker/console/src/main/resources/Dockerfile
index 44a4841..d04afb1 100644
--- a/docker/console/src/main/resources/Dockerfile
+++ b/docker/console/src/main/resources/Dockerfile
@@ -26,7 +26,7 @@ COPY *.properties.template /etc/apache-syncope/
 COPY activiti-modeler/ /etc/apache-syncope/activiti-modeler/
 
 COPY build.sh /tmp
-RUN chmod 755 /tmp/build.sh && /tmp/build.sh && rm /tmp/build.sh
+RUN chmod 755 /tmp/build.sh && sync && /tmp/build.sh && rm /tmp/build.sh
 
 COPY startup.sh /sbin
 RUN chmod 755 /sbin/startup.sh

http://git-wip-us.apache.org/repos/asf/syncope/blob/7e68793a/docker/core/src/main/resources/Dockerfile
----------------------------------------------------------------------
diff --git a/docker/core/src/main/resources/Dockerfile b/docker/core/src/main/resources/Dockerfile
index 1963405..ae5f045 100644
--- a/docker/core/src/main/resources/Dockerfile
+++ b/docker/core/src/main/resources/Dockerfile
@@ -29,7 +29,7 @@ COPY *.properties /etc/apache-syncope/
 COPY Master.properties.* /etc/apache-syncope/domains/
 
 COPY build.sh /tmp
-RUN chmod 755 /tmp/build.sh && /tmp/build.sh && rm /tmp/build.sh
+RUN chmod 755 /tmp/build.sh && sync && /tmp/build.sh && rm /tmp/build.sh
 
 COPY startup.sh /sbin
 RUN chmod 755 /sbin/startup.sh

http://git-wip-us.apache.org/repos/asf/syncope/blob/7e68793a/docker/enduser/src/main/resources/Dockerfile
----------------------------------------------------------------------
diff --git a/docker/enduser/src/main/resources/Dockerfile b/docker/enduser/src/main/resources/Dockerfile
index 2338eae..8875218 100644
--- a/docker/enduser/src/main/resources/Dockerfile
+++ b/docker/enduser/src/main/resources/Dockerfile
@@ -25,7 +25,7 @@ COPY *.deb /tmp/
 COPY *.properties.template /etc/apache-syncope/
 
 COPY build.sh /tmp
-RUN chmod 755 /tmp/build.sh && /tmp/build.sh && rm /tmp/build.sh
+RUN chmod 755 /tmp/build.sh && sync && /tmp/build.sh && rm /tmp/build.sh
 
 COPY startup.sh /sbin
 RUN chmod 755 /sbin/startup.sh


[2/3] syncope git commit: [SYNCOPE-1256] Avoid errors after chmod

Posted by il...@apache.org.
[SYNCOPE-1256] Avoid errors after chmod


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

Branch: refs/heads/master
Commit: 409082c4b548a3fe53aa5ed5cbca84e69d047185
Parents: 3a52cc2
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Sat Jun 16 15:43:09 2018 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Sat Jun 16 15:43:32 2018 +0200

----------------------------------------------------------------------
 docker/console/src/main/resources/Dockerfile | 2 +-
 docker/core/src/main/resources/Dockerfile    | 2 +-
 docker/enduser/src/main/resources/Dockerfile | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/409082c4/docker/console/src/main/resources/Dockerfile
----------------------------------------------------------------------
diff --git a/docker/console/src/main/resources/Dockerfile b/docker/console/src/main/resources/Dockerfile
index dbdebb2..9294ae5 100644
--- a/docker/console/src/main/resources/Dockerfile
+++ b/docker/console/src/main/resources/Dockerfile
@@ -26,7 +26,7 @@ COPY *.properties.template /etc/apache-syncope/
 COPY flowable-modeler/ /etc/apache-syncope/flowable-modeler/
 
 COPY build.sh /tmp
-RUN chmod 755 /tmp/build.sh && /tmp/build.sh && rm /tmp/build.sh
+RUN chmod 755 /tmp/build.sh && sync && /tmp/build.sh && rm /tmp/build.sh
 
 COPY startup.sh /sbin
 RUN chmod 755 /sbin/startup.sh

http://git-wip-us.apache.org/repos/asf/syncope/blob/409082c4/docker/core/src/main/resources/Dockerfile
----------------------------------------------------------------------
diff --git a/docker/core/src/main/resources/Dockerfile b/docker/core/src/main/resources/Dockerfile
index 1963405..ae5f045 100644
--- a/docker/core/src/main/resources/Dockerfile
+++ b/docker/core/src/main/resources/Dockerfile
@@ -29,7 +29,7 @@ COPY *.properties /etc/apache-syncope/
 COPY Master.properties.* /etc/apache-syncope/domains/
 
 COPY build.sh /tmp
-RUN chmod 755 /tmp/build.sh && /tmp/build.sh && rm /tmp/build.sh
+RUN chmod 755 /tmp/build.sh && sync && /tmp/build.sh && rm /tmp/build.sh
 
 COPY startup.sh /sbin
 RUN chmod 755 /sbin/startup.sh

http://git-wip-us.apache.org/repos/asf/syncope/blob/409082c4/docker/enduser/src/main/resources/Dockerfile
----------------------------------------------------------------------
diff --git a/docker/enduser/src/main/resources/Dockerfile b/docker/enduser/src/main/resources/Dockerfile
index 2338eae..8875218 100644
--- a/docker/enduser/src/main/resources/Dockerfile
+++ b/docker/enduser/src/main/resources/Dockerfile
@@ -25,7 +25,7 @@ COPY *.deb /tmp/
 COPY *.properties.template /etc/apache-syncope/
 
 COPY build.sh /tmp
-RUN chmod 755 /tmp/build.sh && /tmp/build.sh && rm /tmp/build.sh
+RUN chmod 755 /tmp/build.sh && sync && /tmp/build.sh && rm /tmp/build.sh
 
 COPY startup.sh /sbin
 RUN chmod 755 /sbin/startup.sh


[3/3] syncope git commit: Removing useless deps

Posted by il...@apache.org.
Removing useless deps


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

Branch: refs/heads/master
Commit: b918245d7a88b94605b10b0372cad382682ca950
Parents: 409082c
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Sat Jun 16 15:44:01 2018 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Sat Jun 16 15:44:01 2018 +0200

----------------------------------------------------------------------
 client/lib/pom.xml | 24 ------------------------
 1 file changed, 24 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/b918245d/client/lib/pom.xml
----------------------------------------------------------------------
diff --git a/client/lib/pom.xml b/client/lib/pom.xml
index 1025ee8..71a75c4 100644
--- a/client/lib/pom.xml
+++ b/client/lib/pom.xml
@@ -87,30 +87,6 @@ under the License.
       <artifactId>junit-jupiter-engine</artifactId>
       <scope>test</scope>
     </dependency>
-    <dependency>
-      <groupId>org.seleniumhq.selenium</groupId>
-      <artifactId>selenium-java</artifactId>
-      <scope>test</scope>
-      <version>2.44.0</version>
-    </dependency>
-    <dependency>
-      <groupId>com.opera</groupId>
-      <artifactId>operadriver</artifactId>
-      <scope>test</scope>
-      <version>1.5</version>
-      <exclusions>
-        <exclusion>
-          <groupId>org.seleniumhq.selenium</groupId>
-          <artifactId>selenium-remote-driver</artifactId>
-        </exclusion>
-      </exclusions>
-    </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-      <version>4.11</version>
-    </dependency>
   </dependencies>
   
   <build>