Skip to content

Commit

Permalink
Fix generated classpath in eclipse and intellij
Browse files Browse the repository at this point in the history
  • Loading branch information
Mumfrey committed Sep 6, 2017
1 parent 3e0d070 commit 1d6e089
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,18 @@ dependencies {
bridgeCompile 'org.ow2.asm:asm-commons:5.0.3'
}

// Eclipse
eclipse.classpath.plusConfigurations += [
configurations.fernflowerCompile,
configurations.launchwrapperCompile
configurations.launchwrapperCompile,
configurations.bridgeCompile
]

// IntelliJ
idea.module.scopes.COMPILE.plus += [
configurations.fernflowerCompile,
configurations.launchwrapperCompile,
configurations.bridgeCompile
]

// Filter, process, and include resources
Expand Down

0 comments on commit 1d6e089

Please sign in to comment.