Search Gradle plugins

com.greensopinion.gradle-android-eclipse

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.

https://github.com/greensopinion/gradle-android-eclipse

Sources: https://github.com/greensopinion/gradle-android-eclipse.git

Version 1.0

Created 23 April 2017.

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.

Using the plugins DSL:

plugins {
  id("com.greensopinion.gradle-android-eclipse") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.greensopinion.gradle-android-eclipse:android-eclipse:1.0")
  }
}

apply(plugin = "com.greensopinion.gradle-android-eclipse")

Using the plugins DSL:

plugins {
  id "com.greensopinion.gradle-android-eclipse" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.greensopinion.gradle-android-eclipse:android-eclipse:1.0"
  }
}

apply plugin: "com.greensopinion.gradle-android-eclipse"

Learn how to apply plugins to subprojects