This project requires JVM version of at least 1.7
gradle-plugin-java-create top
Easy generation of a gradle plugin in java
Table of Contents top
Building the Package top
*NIX/Mac OS X top
From the root of the project, simply run
./gradlew build
Windows top
./gradlew.bat build
This will compile and assemble the artefacts into the build/libs/ directory.
Note that this may also run tests (if applicable see the Testing notes)
Running the Tests top
*NIX/Mac OS X top
From the root of the project, simply run
gradle --info test
if you do not have gradle installed, try:
gradlew --info test
Windows top
From the root of the project, simply run
gradle --info test
if you do not have gradle installed, try:
./gradlew.bat --info test
The --info switch will also output logging for the tests
Dependencies - Gradle top
dependencies {
runtime(group: 'synapticloop', name: 'gradle-plugin-java-create', version: '1.0.0', ext: 'jar')
compile(group: 'synapticloop', name: 'gradle-plugin-java-create', version: '1.0.0', ext: 'jar')
}
or, more simply for versions of gradle greater than 2.1
dependencies {
runtime 'synapticloop:gradle-plugin-java-create:1.0.0'
compile 'synapticloop:gradle-plugin-java-create:1.0.0'
}
Dependencies - Maven top
<dependency>
<groupId>synapticloop</groupId>
<artifactId>gradle-plugin-java-create</artifactId>
<version>1.0.0</version>
<type>jar</type>
</dependency>
Dependencies - Downloads top
You will also need to download the following dependencies:
- synapticloop:templar:1.3.0: (It may be available on one of: bintray mvn central)
- commons-cli:commons-cli:1.3.1: (It may be available on one of: bintray mvn central)
- synapticloop:simplelogger:1.1.1: (It may be available on one of: bintray mvn central)
- synapticloop:templar:1.3.0: (It may be available on one of: bintray mvn central)
- commons-cli:commons-cli:1.3.1: (It may be available on one of: bintray mvn central)
- synapticloop:simplelogger:1.1.1: (It may be available on one of: bintray mvn central)
NOTE: You may need to download any dependencies of the above dependencies in turn (i.e. the transitive dependencies)
--
This README.md file was hand-crafted with care utilising synapticlooptemplar->documentr
--