You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ch...@apache.org on 2018/01/07 23:54:38 UTC

commons-release-plugin git commit: Adding travis ci

Repository: commons-release-plugin
Updated Branches:
  refs/heads/master 919f44a44 -> 34e727bae


Adding travis ci


Project: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/commit/34e727ba
Tree: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/tree/34e727ba
Diff: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/diff/34e727ba

Branch: refs/heads/master
Commit: 34e727bae125338e2613e50d31dae3afd8cc4c9b
Parents: 919f44a
Author: Rob Tompkins <ch...@gmail.com>
Authored: Sun Jan 7 18:54:24 2018 -0500
Committer: Rob Tompkins <ch...@gmail.com>
Committed: Sun Jan 7 18:54:24 2018 -0500

----------------------------------------------------------------------
 .travis.yaml | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-release-plugin/blob/34e727ba/.travis.yaml
----------------------------------------------------------------------
diff --git a/.travis.yaml b/.travis.yaml
new file mode 100644
index 0000000..1281fa6
--- /dev/null
+++ b/.travis.yaml
@@ -0,0 +1,29 @@
+
+# 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.
+
+language: java
+sudo: false
+
+jdk:
+  - openjdk7
+  - oraclejdk8
+  - oraclejdk9
+
+script:
+  - mvn
+
+after_success:
+  - mvn clean test jacoco:report coveralls:report -Ptravis-jacoco
\ No newline at end of file