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/18 08:23:41 UTC

syncope git commit: Travis CI with OpenJDK 8

Repository: syncope
Updated Branches:
  refs/heads/2_0_X 2d6b742d0 -> c8ed968a3


Travis CI with OpenJDK 8


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

Branch: refs/heads/2_0_X
Commit: c8ed968a38e91ed10d8e19c0c89458636ff1fb1d
Parents: 2d6b742
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Mon Jun 18 10:23:35 2018 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Mon Jun 18 10:23:35 2018 +0200

----------------------------------------------------------------------
 .travis.yml | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/c8ed968a/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 49ef791..87b1284 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,15 +13,11 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-sudo: required
-dist: trusty
+sudo: false
 language: java
 jdk:
-  - openjdk7
+  - openjdk8
 before_install:
-  - sudo wget "https://bouncycastle.org/download/bcprov-ext-jdk15on-158.jar" -O "${JAVA_HOME}"/jre/lib/ext/bcprov-ext-jdk15on-158.jar && \
-    sudo perl -pi.bak -e 's/^(security\.provider\.)([0-9]+)/$1.($2+1)/ge' /etc/java-7-openjdk/security/java.security && \
-    echo "security.provider.1=org.bouncycastle.jce.provider.BouncyCastleProvider" | sudo tee -a /etc/java-7-openjdk/security/java.security
   - echo 'MAVEN_OPTS="-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m"' >~/.mavenrc
 # default install is mvn install --quiet -DskipTests=true
 install: travis_wait mvn --show-version --quiet -T 1C -P all,skipTests