Skip to content
This repository has been archived by the owner on Dec 28, 2019. It is now read-only.

Commit

Permalink
switch from "plugin.path" property to extracting plugin directly into…
Browse files Browse the repository at this point in the history
… config/plugins folder (works better for me, does not lose classes from time to time)
  • Loading branch information
shalupov committed Jul 6, 2015
1 parent 99f9b41 commit 32ef0ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,12 @@ task runIdeaWithPlugin(type: JavaExec, dependsOn: assemble) {
systemProperty "idea.debug.mode", "true"
systemProperty "idea.system.path", file("$buildDir/idea-home/system")
systemProperty "idea.config.path", file("$buildDir/idea-home/config")
systemProperty "plugin.path", file("$buildDir/distributions/CloudFormation.zip")

classpath sourceSets.main.runtimeClasspath
classpath fileTree(dir: "${System.properties['java.home']}/../lib", include: '*tools.jar')
}
runIdeaWithPlugin.dependsOn(extractPlugin)

task zip(type: Zip) {
baseName 'CloudFormation'
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
Expand Down

0 comments on commit 32ef0ec

Please sign in to comment.