Skip to content

Commit

Permalink
Remove baseline-findbugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Fink committed Feb 24, 2017
1 parent 5e9c1a0 commit b8b534d
Show file tree
Hide file tree
Showing 8 changed files with 3 additions and 175 deletions.
25 changes: 0 additions & 25 deletions gradle-baseline-java-config/resources/findbugs/excludeFilter.xml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ class Baseline implements Plugin<Project> {
void apply(Project project) {
project.plugins.apply BaselineCheckstyle
project.plugins.apply BaselineConfig
project.plugins.apply BaselineFindBugs
project.plugins.apply BaselineEclipse
project.plugins.apply BaselineIdea
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class BaselineEclipse extends AbstractBaselinePlugin {
}
})

// Configure Findbugs/Checkstyle/JdtUI settings by copying in the default Baseline config file.
// Configure Checkstyle/JdtUI settings by copying in the default Baseline config file.
// Warning: this may interfere with other Gradle plugins that may try to mutate these files.
project.afterEvaluate { Project p ->
def eclipseTemplate = project.task(
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ class BaselineConfigIntegrationTest extends IntegrationSpec {

then:
runTasksSuccessfully('baselineUpdateConfig')
assert directory('.baseline').list().toList() == ['checkstyle', 'copyright', 'eclipse', 'findbugs', 'idea']
assert directory('.baseline').list().toList() == ['checkstyle', 'copyright', 'eclipse', 'idea']
}
}

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package com.palantir.baseline

import com.palantir.baseline.plugins.BaselineCheckstyle
import com.palantir.baseline.plugins.BaselineEclipse
import com.palantir.baseline.plugins.BaselineFindBugs

import com.palantir.baseline.plugins.Baseline

import static org.junit.Assert.assertTrue
Expand Down Expand Up @@ -49,11 +49,6 @@ class BaselineTest {
assertTrue project.plugins.hasPlugin(Baseline.class)
}

@Test
public void baselineFindBugsProjectApplied() {
assertTrue project.plugins.hasPlugin(BaselineFindBugs.class)
}

@Test
public void baselineCheckstyleProjectApplied() {
assertTrue project.plugins.hasPlugin(BaselineCheckstyle.class)
Expand Down

0 comments on commit b8b534d

Please sign in to comment.