comparison env/lib/python3.7/site-packages/schema_salad/java/README.md @ 0:26e78fe6e8c4 draft

"planemo upload commit c699937486c35866861690329de38ec1a5d9f783"
author shellac
date Sat, 02 May 2020 07:14:21 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:26e78fe6e8c4
1 # ${project_name}
2
3 ${project_description}
4
5 ## License
6
7 This project is licensed under the [${license_name}](${license_url}).
8
9 ## Contributing
10
11 This project is auto-generated by [Schema Salad](https://github.com/common-workflow-language/schema_salad)
12 and likely should not be modified directly. Instead consider filing an issue or opening
13 a pull request against the Schema Salad repository.
14
15 ## Requirements
16
17 This Java library requires Java 8+. Building and testing this project requires
18 [Apache Maven](https://maven.apache.org/) (``mvn``).
19
20 ## Usage
21
22 Compile the project, test it, and build a jar
23
24 $ mvn install
25 $ ls target/ # jar file in here
26
27 Building a standalone jar with all dependencies included and use it to validate a document
28
29 $ mvn install
30 $ mvn assembly:single
31 $ java -jar target/<project_name>-0.0.1-SNAPSHOT-jar-with-dependencies.jar ../path/to/document.yml
32
33 Building and viewing JavaDocs
34
35 $ mvn javadoc:javadoc
36 $ open target/site/apidocs/index.html