You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@taverna.apache.org by st...@apache.org on 2015/07/13 15:52:53 UTC

[1/2] incubator-taverna-server git commit: README Contributor section

Repository: incubator-taverna-server
Updated Branches:
  refs/heads/master 8d121b2b0 -> cd87bb117


README Contributor section


Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/commit/d15aa860
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/tree/d15aa860
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/diff/d15aa860

Branch: refs/heads/master
Commit: d15aa86094db7e9e627853d17ce52d634ef72c13
Parents: 8d121b2
Author: Stian Soiland-Reyes <so...@cs.manchester.ac.uk>
Authored: Mon Jul 13 14:51:05 2015 +0100
Committer: Stian Soiland-Reyes <so...@cs.manchester.ac.uk>
Committed: Mon Jul 13 14:51:05 2015 +0100

----------------------------------------------------------------------
 README.md | 113 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 110 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/blob/d15aa860/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index e58c537..32a8172 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,113 @@
-A Beginner's Installation Guide to Taverna Server
-=================================================
+<!--
+   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.
+-->
+# Apache Taverna Server (incubating)
+
+REST/WSDL web service for executing
+[Apache Taverna](http://taverna.incubator.apache.org/) (incubating)
+workflows.
+
+
+
+## License
+
+(c) 2007-2014 University of Manchester
+(c) 2015 Apache Software Foundation
+
+This product includes software developed at The [Apache Software
+Foundation](http://www.apache.org/).
+
+Licensed under the
+[Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0), see the file
+[LICENSE](LICENSE) for details.
+
+The file [NOTICE](NOTICE) contain any additional attributions and
+details about embedded third-party libraries and source code.
+
+
+
+# Contribute
+
+Please subscribe to and contact the
+[dev@taverna](http://taverna.incubator.apache.org/community/lists#dev mailing list)
+for any questions, suggestions and discussions about
+Apache Taverna.
+
+Bugs and feature plannings are tracked in the Jira
+[Issue tracker](https://issues.apache.org/jira/browse/TAVERNA/component/12326813)
+under the `TAVERNA` component _Taverna Server_. Feel free
+to add an issue!
+
+To suggest changes to this source code, feel free to raise a
+[GitHub pull request](https://github.com/apache/incubator-taverna-service/pulls).
+Any contributions received are assumed to be covered by the [Apache License
+2.0](https://www.apache.org/licenses/LICENSE-2.0). We might ask you
+to sign a [Contributor License Agreement](https://www.apache.org/licenses/#clas)
+before accepting a larger contribution.
+
+
+## Disclaimer
+
+Apache Taverna is an effort undergoing incubation at the
+[Apache Software Foundation (ASF)](http://www.apache.org/),
+sponsored by the [Apache Incubator PMC](http://incubator.apache.org/).
+
+[Incubation](http://incubator.apache.org/incubation/Process_Description.html)
+is required of all newly accepted projects until a further review
+indicates that the infrastructure, communications, and decision making process
+have stabilized in a manner consistent with other successful ASF projects.
+
+While incubation status is not necessarily a reflection of the completeness
+or stability of the code, it does indicate that the project has yet to be
+fully endorsed by the ASF.
+
+
+
+## Prerequisites
+
+* Java 1.7 or newer (tested with OpenJDK 1.8)
+* [Apache Maven](https://maven.apache.org/download.html) 3.2.5 or newer (older
+  versions probably also work)
+
+
+# Building
+
+To build, use
+
+    mvn clean install
+
+This will build each module and run their tests.
+
+
+## Skipping tests
+
+To skip the tests (these can be timeconsuming), use:
+
+    mvn clean install -DskipTests
+
+
+If you are modifying this source code independent of the
+Apache Taverna project, you may not want to run the
+[Rat Maven plugin](https://creadur.apache.org/rat/apache-rat-plugin/)
+that enforces Apache headers in every source file - to disable it, try:
+
+    mvn clean install -Drat.skip=true
+
+
+## A Beginner's Installation Guide to Taverna Server
 
 When installing Taverna Server 2.5, you *need* to decide whether to
 install in secure or insecure mode. In secure mode, the server
@@ -226,4 +334,3 @@ appear at within Tomcat (e.g., if you want it to be at
 `/tavernaserver`, use the filename `webapps/tavernaserver.war`).
 
 ### Finally, start Tomcat.
-


[2/2] incubator-taverna-server git commit: NOTICE/DISCLAIMER for Taverna Server

Posted by st...@apache.org.
NOTICE/DISCLAIMER for Taverna Server


Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/commit/cd87bb11
Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/tree/cd87bb11
Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/diff/cd87bb11

Branch: refs/heads/master
Commit: cd87bb11766400cfe746ffacbd95ac9f967dea92
Parents: d15aa86
Author: Stian Soiland-Reyes <so...@cs.manchester.ac.uk>
Authored: Mon Jul 13 14:52:33 2015 +0100
Committer: Stian Soiland-Reyes <so...@cs.manchester.ac.uk>
Committed: Mon Jul 13 14:52:33 2015 +0100

----------------------------------------------------------------------
 DISCLAIMER | 10 ++++++++++
 NOTICE     | 10 ++++++++++
 2 files changed, 20 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/blob/cd87bb11/DISCLAIMER
----------------------------------------------------------------------
diff --git a/DISCLAIMER b/DISCLAIMER
new file mode 100644
index 0000000..3e3a5ce
--- /dev/null
+++ b/DISCLAIMER
@@ -0,0 +1,10 @@
+Apache Taverna is an effort undergoing incubation at the Apache Software 
+Foundation (ASF), sponsored by the Apache Incubator PMC. 
+
+Incubation is required of all newly accepted projects until a further review 
+indicates that the infrastructure, communications, and decision making process 
+have stabilized in a manner consistent with other successful ASF projects. 
+
+While incubation status is not necessarily a reflection of the completeness 
+or stability of the code, it does indicate that the project has yet to be 
+fully endorsed by the ASF.

http://git-wip-us.apache.org/repos/asf/incubator-taverna-server/blob/cd87bb11/NOTICE
----------------------------------------------------------------------
diff --git a/NOTICE b/NOTICE
new file mode 100644
index 0000000..8b3e949
--- /dev/null
+++ b/NOTICE
@@ -0,0 +1,10 @@
+Apache Taverna Server
+Copyright 2010-2014 University of Manchester, UK
+Copyright 2015 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+
+---------------------------------------------------------
+
+TODO: Copyright from *.xsd