Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/puniverse/quasar-gradle-template
https://github.com/puniverse/quasar-gradle-template
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/puniverse/quasar-gradle-template
- Owner: puniverse
- Created: 2015-03-17T08:43:30.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-18T09:21:07.000Z (over 8 years ago)
- Last Synced: 2024-04-16T07:14:44.741Z (7 months ago)
- Language: Java
- Size: 78.1 KB
- Stars: 13
- Watchers: 6
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quasar Gradle Template
A [Parallel Universe Quasar](http://www.paralleluniverse.co/quasar/) Gradle template for standalone Java 1.7+ applications..
This is a port of the Quasar Maven Archetype at http://github.com/puniverse/quasar-maven-archetype.
## Getting started
Just edit `gradle/user-props.gradle`. You might want to add JVM arguments and system properties, then feel free to play with the code or give it a try as it stands.
Currently 2 instrumentation methods can be chosen through the `method` property: `agent` and `aot`. To run them:
```
./gradlew -Pmethod=agent run
./gradlew -Pmethod=agent test
./gradlew -Pmethod=aot clean run
./gradlew -Pmethod=aot test
```