Skip to content

Commit

Permalink
Merge pull request #730 from SecUpwN/feature/autoVersion
Browse files Browse the repository at this point in the history
Calculate versionNames from git-tags
  • Loading branch information
SecUpwN committed Feb 21, 2016
2 parents b9cc3ba + 06d0550 commit 8f2881d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 0 additions & 2 deletions AIMSICD/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ try {

def isCi = "true".equals(System.getenv("CI"))

version = '0.1.39.1-alpha'

android {
compileSdkVersion 23
buildToolsVersion '23.0.2'
Expand Down
9 changes: 8 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,20 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'io.freefair.gradle-plugins:android:2.0.0-beta1'
classpath 'io.freefair:gradle-plugins:2.0.0-beta3'
}
}

apply plugin: 'io.freefair.git-version'

gitVersion {
tagPrefix 'v'
}

allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
version = rootProject.version
}

0 comments on commit 8f2881d

Please sign in to comment.