Merge pull request #310 from kenzierocks/feature/multi-project-ide

Add support for IDEs in the Gradle build files.
This commit is contained in:
sk89q 2014-12-05 19:08:39 -08:00
commit 375755241d
3 changed files with 18 additions and 14 deletions

26
.gitignore vendored
View File

@ -1,22 +1,20 @@
/.classpath
/.project
/.settings
/eclipse
/.idea
.classpath
.project
.settings
eclipse
.idea
*.iml
*.ipr
*.iws
/bin
/build
/target
/gradle
bin
build
target
gradle
.gradle
/forge-download
/out
/*/build
/run
/worldedit-forge/run
forge-download
out
run
/dependency-reduced-pom.xml
*-private.sh

View File

@ -1,3 +1,6 @@
apply plugin: 'eclipse'
apply plugin: 'idea'
dependencies {
compile project(':worldedit-core')
compile 'com.sk89q:dummypermscompat:1.7'

View File

@ -1,3 +1,6 @@
apply plugin: 'eclipse'
apply plugin: 'idea'
dependencies {
compile 'de.schlichtherle:truezip:6.8.3'
compile 'rhino:js:1.7R2'