File tree Expand file tree Collapse file tree 4 files changed +0
-42
lines changed Expand file tree Collapse file tree 4 files changed +0
-42
lines changed Original file line number Diff line number Diff line change @@ -22,19 +22,6 @@ spotless {
22
22
}
23
23
}
24
24
25
- // root eclipse project
26
- apply plugin : ' com.diffplug.eclipse.resourcefilters'
27
- eclipseResourceFilters {
28
- exclude(). folders(). name(' .git' )
29
- exclude(). folders(). name(' build' ). recursive()
30
-
31
- exclude(). folders(). name(' lib' )
32
- exclude(). folders(). name(' lib-extra' )
33
- exclude(). folders(). name(' plugin-gradle' )
34
- exclude(). folders(). name(' plugin-maven' )
35
- exclude(). folders(). name(' testlib' )
36
- }
37
-
38
25
static Class<?> spotBugsTaskType () {
39
26
return com.github.spotbugs.snom.SpotBugsTask
40
27
}
Original file line number Diff line number Diff line change @@ -10,24 +10,6 @@ sourceCompatibility = VER_JAVA
10
10
targetCompatibility = VER_JAVA
11
11
tasks. withType(JavaCompile ) { options. encoding = ' UTF-8' }
12
12
13
- // ///////////
14
- // ECLIPSE //
15
- // ///////////
16
- apply plugin : ' eclipse'
17
- eclipse {
18
- classpath {
19
- downloadSources true
20
- downloadJavadoc true
21
- }
22
- }
23
- // always create fresh projects
24
- tasks. eclipse. dependsOn(cleanEclipse)
25
-
26
- apply plugin : ' com.diffplug.eclipse.resourcefilters'
27
- eclipseResourceFilters {
28
- exclude(). folders(). name(' build' )
29
- }
30
-
31
13
// ////////////
32
14
// SPOTBUGS //
33
15
// ////////////
Original file line number Diff line number Diff line change 34
34
35
35
apply from : rootProject. file(' gradle/special-tests.gradle' )
36
36
37
- // make it easy for eclipse to run against latest build
38
- tasks. eclipse. dependsOn(pluginUnderTestMetadata)
39
-
40
37
// ////////////////////////
41
38
// GRADLE PLUGIN PORTAL //
42
39
// ////////////////////////
Original file line number Diff line number Diff line change 1
1
pluginManagement {
2
2
plugins {
3
3
id ' com.diffplug.spotless' version ' 5.17.1'
4
- // https://github.com/diffplug/goomph/blob/main/CHANGES.md
5
- id ' com.diffplug.eclipse.resourcefilters' version ' 3.33.2'
6
4
// https://plugins.gradle.org/plugin/com.gradle.plugin-publish
7
5
id ' com.gradle.plugin-publish' version ' 0.17.0'
8
6
// https://github.com/gradle-nexus/publish-plugin/releases
@@ -15,7 +13,6 @@ pluginManagement {
15
13
}
16
14
plugins {
17
15
id ' com.diffplug.spotless' apply false
18
- id ' com.diffplug.eclipse.resourcefilters' apply false
19
16
id ' com.gradle.plugin-publish' apply false
20
17
id ' io.github.gradle-nexus.publish-plugin' apply false
21
18
id ' com.github.spotbugs' apply false
@@ -49,11 +46,6 @@ if (System.env['CI'] != null) {
49
46
}
50
47
}
51
48
52
- if (startParameter. getProjectProperties(). get(' release' ) != ' true' ) {
53
- // the ide project screws up the release tasks
54
- include ' ide'
55
- }
56
-
57
49
rootProject. name = ' spotless'
58
50
59
51
include ' lib' // reusable library with no dependencies
You can’t perform that action at this time.
0 commit comments