forked from konrad-jamrozik/droidmate
-
Notifications
You must be signed in to change notification settings - Fork 14
Deploying
Nataniel Borges Jr edited this page Nov 19, 2019
·
4 revisions
DroidMate can be deployed as a runnable Jar or as a project dependency.
If you want to generate a runnable jar run gradlew shadowJar
(it will be generated in the main build directory [repo/build/libs/droidmate*-all.jar
])
If you want to include DM-2 into your own project as dependency you need to deploy to maven local with gradlew install
Then to include DM-2 into your own project you have to include the dependency, e.g. for Gradle (the version string has to be the version from the cloned DM-2 projects' gradle.build file)
compile group: 'org.droidmate', name: 'droidmate-2', version: '1.0-RC4'
If you prefer to use the up-to-date version from Jitpack you can use the following commands:
repositories {
maven { url 'https://jitpack.io' }
}
compile "com.github.uds-se.droidmate:droidmate-2:master-SNAPSHOT"