Reputation: 2441
How would I add something to the project nature of the Eclipse project generated by Gradle.
I want to add the following:
<nature>com.google.gwt.eclipse.core.gwtNature</nature>
<nature>edu.umd.cs.findbugs.plugin.eclipse.findbugsNature</nature>
Upvotes: 4
Views: 3427
Reputation: 3735
Upvotes: 0
Reputation: 2441
Figured this one out.
Add the following your build file:
eclipse {
project {
natures 'com.google.gwt.eclipse.core.gwtNature'
}
}
Upvotes: 5