-
Notifications
You must be signed in to change notification settings - Fork 51
Create first IDE app
Andrey Hihlovskiy edited this page Apr 23, 2014
·
31 revisions
In this tutorial we start from scratch and build Eclipse IDE app. Other tutorials are available here.
- Create folder "tutorials/MyIdeApp", create file "build.gradle" in it, insert code:
buildscript {
repositories {
mavenLocal()
jcenter()
}
dependencies {
classpath 'org.akhikhl.wuff:wuff-plugin:0.0.1'
}
}
apply plugin: 'java'
apply plugin: 'eclipse-ide-app'
repositories {
mavenLocal()
jcenter()
}