mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-13 11:09:10 +01:00
Enable Gradle Eclipse project metadata generation
This commit applies the 'eclipse' Gradle plugin, such that .classpath, .project and .settings files can be generated using: ./gradlew eclipse Once the above is complete, import the project into Eclipse with the following command: File->Import->Existing projects into workspace The .gitignore file has been updated accordingly. Resolves #222
This commit is contained in:
parent
5f53fea190
commit
f135873f58
2 changed files with 4 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -15,3 +15,6 @@ bitsquare.iml
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.gradle
|
.gradle
|
||||||
build
|
build
|
||||||
|
.classpath
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
|
apply plugin: 'eclipse'
|
||||||
|
|
||||||
version = '0.1.0-SNAPSHOT'
|
version = '0.1.0-SNAPSHOT'
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 1.8
|
||||||
|
|
Loading…
Add table
Reference in a new issue