You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2016/11/12 02:46:14 UTC

logging-log4j2 git commit: Add simple Travis CI file to get started.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master ce6580811 -> 149baea24


Add simple Travis CI file to get started.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/149baea2
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/149baea2
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/149baea2

Branch: refs/heads/master
Commit: 149baea241703c1ba232f364feb2356e96d5fecc
Parents: ce65808
Author: Gary Gregory <gg...@apache.org>
Authored: Fri Nov 11 18:46:11 2016 -0800
Committer: Gary Gregory <gg...@apache.org>
Committed: Fri Nov 11 18:46:11 2016 -0800

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


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/149baea2/.travis.yaml
----------------------------------------------------------------------
diff --git a/.travis.yaml b/.travis.yaml
new file mode 100644
index 0000000..229d8e3
--- /dev/null
+++ b/.travis.yaml
@@ -0,0 +1,22 @@
+#
+#   Licensed 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:
+  - oraclejdk7
+
+after_success:
+  - mvn clean test
+  
\ No newline at end of file