You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by vo...@apache.org on 2021/01/25 15:57:54 UTC

[myfaces] branch 3.0.x updated: Add README & travis.yml to 3.0.x branch

This is an automated email from the ASF dual-hosted git repository.

volosied pushed a commit to branch 3.0.x
in repository https://gitbox.apache.org/repos/asf/myfaces.git


The following commit(s) were added to refs/heads/3.0.x by this push:
     new cead9d7  Add README & travis.yml to 3.0.x branch
cead9d7 is described below

commit cead9d7042be9adb91437e2b265ed9dc97ca8625
Author: Volodymyr Siedlecki <vo...@gmail.com>
AuthorDate: Mon Jan 25 10:54:02 2021 -0500

    Add README & travis.yml to 3.0.x branch
---
 .travis.yml | 36 ++++++++++++++++++++++++++++++++++++
 README.md   | 22 ++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..a0521aa
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,36 @@
+# 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
+
+cache:
+  directories:
+    - "$HOME/.m2"
+
+jdk:
+  - openjdk8
+  - openjdk11
+  - openjdk13
+  - openjdk-ea
+
+matrix:
+  include:
+    - os: linux-ppc64le
+      jdk: openjdk8
+  allow_failures:
+    - jdk: openjdk-ea
+
+script:
+  - mvn clean test
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f8007e1
--- /dev/null
+++ b/README.md
@@ -0,0 +1,22 @@
+# Apache MyFaces Core
+[![Build Status](https://travis-ci.org/apache/myfaces.svg?branch=3.0.x)](https://travis-ci.org/apache/myfaces)
+[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
+
+Apache's implementation of the JavaServer Faces (JSF) and Jakarta Faces specification
+
+### 3.0.x Branch
+
+The upcoming Jakarta Faces 3.0. It's equals to JSF 2.3 but with "jakarta.faces" packages and constants instead of "javax.faces".
+
+## Minimum Requirements
+
+- Java 1.8
+- Servlet 5.0
+- EL 3.0
+- CDI 3.0
+- JSTL 2.0 (optional)
+- BV 2.0 (optional)
+
+## Installation
+
+mvn clean install