Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce exported transient depencencies #300

Merged
merged 1 commit into from
Sep 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions asset-pipeline-classpath-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ repositories {


dependencies {
implementation localGroovy()
}
compileOnly localGroovy()
}
6 changes: 3 additions & 3 deletions asset-pipeline-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ groovydoc {
}

dependencies {
implementation 'org.codehaus.groovy:groovy:2.4.19'
implementation 'org.codehaus.groovy:groovy-json:2.4.19'
implementation 'org.codehaus.groovy:groovy-templates:2.4.19'
compileOnly 'org.codehaus.groovy:groovy:2.4.19'
compileOnly 'org.codehaus.groovy:groovy-json:2.4.19'
compileOnly 'org.codehaus.groovy:groovy-templates:2.4.19'
doc 'org.codehaus.groovy:groovy-all:2.4.19'
doc 'org.fusesource.jansi:jansi:1.11'
api 'org.mozilla:rhino:1.7R4'
Expand Down
17 changes: 8 additions & 9 deletions asset-pipeline-grails/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,14 @@ publishing {


dependencies {
implementation 'org.springframework.boot:spring-boot-starter-logging'
implementation "org.springframework.boot:spring-boot-starter-actuator"
implementation "org.springframework.boot:spring-boot-autoconfigure"
implementation "org.springframework.boot:spring-boot-starter-tomcat"

implementation "org.grails:grails-web-boot"
implementation "org.grails:grails-dependencies"
implementation 'javax.servlet:javax.servlet-api:3.1.0'
implementation "org.grails:grails-dependencies"
compileOnly 'org.springframework.boot:spring-boot-starter-logging'
compileOnly "org.springframework.boot:spring-boot-starter-actuator"
compileOnly "org.springframework.boot:spring-boot-autoconfigure"
compileOnly "org.springframework.boot:spring-boot-starter-tomcat"

compileOnly "org.grails:grails-web-boot"
compileOnly "org.grails:grails-dependencies"
compileOnly 'javax.servlet:javax.servlet-api:3.1.0'
implementation project(':asset-pipeline-core'), {
exclude group:'org.mozilla', module:'rhino'
exclude group:'com.google.javascript', module:'closure-compiler-unshaded'
Expand Down
2 changes: 1 addition & 1 deletion asset-pipeline-spring-boot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ repositories {
}

dependencies {
implementation 'org.codehaus.groovy:groovy:2.4.19'
compileOnly 'org.codehaus.groovy:groovy:2.4.19'
api project(':asset-pipeline-core')
api project(':asset-pipeline-servlet')
api 'org.springframework.boot:spring-boot-starter-web:1.5.1.RELEASE'
Expand Down
2 changes: 1 addition & 1 deletion coffee-asset-pipeline/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ sourceSets {

dependencies {
api project(':asset-pipeline-core')
implementation 'org.codehaus.groovy:groovy:2.4.19'
compileOnly 'org.codehaus.groovy:groovy:2.4.19'
api 'org.mozilla:rhino:1.7R4'

testImplementation "org.spockframework:spock-core:1.3-groovy-2.4"
Expand Down
2 changes: 1 addition & 1 deletion compass-asset-pipeline/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ sourceSets {
}

dependencies {
implementation 'org.codehaus.groovy:groovy-all:2.4.19'
compileOnly 'org.codehaus.groovy:groovy-all:2.4.19'
api project(':asset-pipeline-core')
// api 'log4j:log4j:1.2.17'
// api 'org.yaml:snakeyaml:1.26'
Expand Down
2 changes: 1 addition & 1 deletion groocss-asset-pipeline/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ sourceSets {
}

dependencies {
implementation 'org.codehaus.groovy:groovy-all:2.4.19'
compileOnly 'org.codehaus.groovy:groovy-all:2.4.19'
api project(':asset-pipeline-core')
api "org.groocss:groocss:1.0-M1"

Expand Down
2 changes: 1 addition & 1 deletion handlebars-asset-pipeline/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ sourceSets {

dependencies {
api project(':asset-pipeline-core')
implementation 'org.codehaus.groovy:groovy-all:2.4.19'
compileOnly 'org.codehaus.groovy:groovy-all:2.4.19'
api 'org.mozilla:rhino:1.7R4'
// api 'log4j:log4j:1.2.17'

Expand Down
2 changes: 1 addition & 1 deletion jsx-asset-pipeline/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ java {

dependencies {
api project(':asset-pipeline-core')
implementation 'org.codehaus.groovy:groovy:2.4.19'
compileOnly 'org.codehaus.groovy:groovy:2.4.19'
api 'org.mozilla:rhino:1.7R4'

testImplementation "org.spockframework:spock-core:1.3-groovy-2.4"
Expand Down
2 changes: 1 addition & 1 deletion less-asset-pipeline/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ sourceSets {
}

dependencies {
implementation 'org.codehaus.groovy:groovy-all:2.4.19'
compileOnly 'org.codehaus.groovy:groovy-all:2.4.19'
api project(':asset-pipeline-core')
api 'org.mozilla:rhino:1.7R4'
api 'org.slf4j:slf4j-api:1.7.28'
Expand Down
2 changes: 1 addition & 1 deletion sass-asset-pipeline/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ java {
}

dependencies {
implementation 'org.codehaus.groovy:groovy-all:2.4.19'
compileOnly 'org.codehaus.groovy:groovy-all:2.4.19'
api project(':asset-pipeline-core')
api 'org.slf4j:slf4j-api:1.7.28'
api 'io.bit3:jsass:5.10.4'
Expand Down
2 changes: 1 addition & 1 deletion typescript-asset-pipeline/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ java {
dependencies {
api project(':asset-pipeline-core')
api project(':jsx-asset-pipeline')
implementation 'org.codehaus.groovy:groovy:2.4.19'
compileOnly 'org.codehaus.groovy:groovy:2.4.19'
api 'org.mozilla:rhino:1.7R4'
// api 'log4j:log4j:1.2.17'

Expand Down