forked from greensopinion/gradle-android-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (34 loc) · 1.01 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'
apply plugin: 'com.gradle.plugin-publish'
repositories {
jcenter()
}
dependencies {
compile gradleApi()
}
version="1.1.1"
sourceCompatibility = 1.8
pluginBundle {
website='https://github.com/greensopinion/gradle-android-eclipse'
vcsUrl='https://github.com/greensopinion/gradle-android-eclipse.git'
description='A Gradle plug-in that enables generation of Eclipse project files (.project and .classpath) to enable use of the Eclipse IDE for Android projects. Correctly adds Android AAR dependencies to the classpath, works with the new Android build system.'
tags=['Android','aar','Eclipse','ide']
plugins {
androidEclipsePlugin {
id = 'com.greensopinion.gradle-android-eclipse'
displayName = 'Android Eclipse plugin'
}
}
}
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.10.0"
}
}
}