Just clone the project and run Gradle command presented below.
./gradlew build
To see current version of the module sources use Gradle task currentVersion (it is stored as a git tag).
./gradlew :unicore-spring-boot-starter:currentVersion
To release a new version use release task. Later, for uploading artifact to Bintray maven repository use bintrayUpload task. Sample command are presented below.
./gradlew :unicore-spring-boot-starter:release
./gradlew :unicore-spring-boot-starter:bintrayUpload -PdryRun=false
Remember to configure Bintray user and key by using parameters
-PbintrayUser=BINTRAY_USERNAME -PbintrayKey=BINTRAY_KEY
or just put them in gradle.properties
file.