Skip to content

Commit

Permalink
Merge branch 'release/0.8.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
GinVavilon committed Mar 17, 2016
2 parents ee6fdf7 + 80d08e4 commit be030ae
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/build.gradle
Expand Up @@ -3,7 +3,7 @@ final VCS_URL = 'https://github.com/GinVavilon/gradle-android-eclipse.git'

final GROUP_ID = 'com.github.ginvavilon'
final ARTIFACT_ID = 'android-eclipse'
final VERSION = '0.8.2'
final VERSION = '0.8.3'

final DESCRIPTION = 'Plugin for generation files for eclipse in android project'
final NAME = 'Android-Eclipse'
Expand Down
Expand Up @@ -79,6 +79,17 @@ class AndroidEclipseTask extends DefaultTask {
}

}


if(variant.hasProperty('javaCompile')){
variant.javaCompile.classpath.each{file ->
if (file.exists()){
libs.add(file)
}

}
}

if(variant.hasProperty('compileLibraries')){
variant.compileLibraries.each{file ->
if (file.exists()){
Expand Down

0 comments on commit be030ae

Please sign in to comment.