Skip to content

Commit

Permalink
Merge pull request #44 from BancVue/spring-boot-fix
Browse files Browse the repository at this point in the history
Spring boot fix
  • Loading branch information
mlueders committed Jun 25, 2014
2 parents 288df0b + 6bc28e3 commit 19dfbaa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ repositories {
dependencies {
compile localGroovy()
compile gradleApi()
compile "nl.javadude.gradle.plugins:license-gradle-plugin:0.7.0"
compile ("nl.javadude.gradle.plugins:license-gradle-plugin:0.7.0") {
exclude group: 'com.google.guava'
}

mainTestCompile('org.spockframework:spock-core:0.7-groovy-1.8') {
exclude group: 'org.codehaus.groovy'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import groovy.util.logging.Slf4j
import org.gradle.api.Project
import org.gradle.api.artifacts.Configuration
import org.gradle.api.artifacts.PublishArtifact
import org.gradle.api.plugins.BasePlugin
import org.gradle.api.tasks.SourceSet
import org.gradle.api.tasks.bundling.AbstractArchiveTask
import org.gradle.api.tasks.bundling.Jar
Expand Down Expand Up @@ -149,6 +150,7 @@ class ExtendedPublication {
}
from isSourceJar ? getSourceSet().allSource : getSourceSet().output
}
project.getTasks().getByName(BasePlugin.ASSEMBLE_TASK_NAME).dependsOn(jarTask)
jarTask
}

Expand Down

0 comments on commit 19dfbaa

Please sign in to comment.