Skip to content

Commit

Permalink
Added shadow jar and version increment
Browse files Browse the repository at this point in the history
  • Loading branch information
ex3ndr committed Apr 5, 2014
1 parent a002960 commit d1278ec
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:0.8'
}
}

project.group = "org.telegram"

apply plugin: 'java'
apply plugin: 'shadow'

dependencies {
compile project(':tl-core')
compile project(':actors')
}

def basicVersion = '1.0'
def basicVersion = '1.1'

if (project.hasProperty('buildIndex')) {
project.version = basicVersion + '.' + project.buildIndex
Expand Down

0 comments on commit d1278ec

Please sign in to comment.