Skip to content
This repository was archived by the owner on Jan 25, 2024. It is now read-only.

Commit 9125643

Browse files
authored
Merge pull request #204 from michaelklishin/eclipse-support
Added eclipse support
2 parents d4fe8c7 + 42011e2 commit 9125643

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

build.gradle

+15
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ allprojects {
1919
apply plugin: 'java'
2020
}
2121

22+
apply plugin: 'eclipse'
2223
apply plugin: 'groovy'
2324
apply plugin: 'idea'
2425
apply plugin: 'com.sourcemuse.mongo'
@@ -49,8 +50,22 @@ sourceSets {
4950
idea {
5051
module {
5152
scopes.PROVIDED.plus += [configurations.provided]
53+
downloadJavadoc = true
54+
downloadSources = true
5255
}
5356
}
57+
58+
eclipse {
59+
classpath {
60+
downloadSources true
61+
downloadJavadoc true
62+
}
63+
jdt {
64+
sourceCompatibility java.sourceCompatibility
65+
targetCompatibility java.targetCompatibility
66+
}
67+
}
68+
5469
dependencies {
5570
implementation("org.quartz-scheduler:quartz:2.3.2")
5671
implementation("org.mongodb:mongodb-driver-sync:4.0.5")

0 commit comments

Comments
 (0)