Skip to content

Commit

Permalink
recombine two base and xtend plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
oehme committed Sep 28, 2014
1 parent dc7d774 commit 84a4fbf
Show file tree
Hide file tree
Showing 17 changed files with 14 additions and 21 deletions.
4 changes: 2 additions & 2 deletions gradle/bintrayRelease.gradle
Expand Up @@ -19,8 +19,8 @@ bintray {
version {
def gradlePluginsDir = project.file('src/main/resources/META-INF/gradle-plugins')
if (gradlePluginsDir.exists()) {
def gradlePluginName = gradlePluginsDir.listFiles().first().name
attributes = ['gradle-plugin': '$project.group:project.name:$gradlePluginName']
def gradlePlugins = gradlePluginsDir.listFiles().collect{'$project.group:project.name:${name.replace(".properties", "")}'}
attributes = ['gradle-plugin': gradlePlugins.join(',')]
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
@@ -1 +1 @@
include 'xtend-base-gradle-plugin', 'xtend-android-gradle-plugin', 'xtend-gradle-plugin','xtend-gradle-lib'
include 'xtend-android-gradle-plugin', 'xtend-gradle-plugin','xtend-gradle-lib'
2 changes: 1 addition & 1 deletion xtend-android-gradle-plugin/build.gradle
@@ -1,6 +1,6 @@
description = 'A Gradle Plugin that integrates Xtend into the Android build system'

dependencies {
compile project(':xtend-base-gradle-plugin')
compile project(':xtend-gradle-plugin')
compile 'com.android.tools.build:gradle:0.13+'
}
15 changes: 0 additions & 15 deletions xtend-base-gradle-plugin/build.gradle

This file was deleted.

12 changes: 10 additions & 2 deletions xtend-gradle-plugin/build.gradle
@@ -1,5 +1,13 @@
description = 'A Gradle Plugin for building Xtend projects'

dependencies {
compile project(':xtend-base-gradle-plugin')
}
compile gradleApi()
compile 'com.martiansoftware:nailgun-server:0.9.1'
compile 'org.eclipse.core:org.eclipse.core.runtime:3.7.0'
}

jar {
manifest {
attributes("Implementation-Version": version)
}
}

0 comments on commit 84a4fbf

Please sign in to comment.