Skip to content

Commit

Permalink
Workaround for assets compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed May 8, 2024
1 parent 1374341 commit 2d522c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions plugins/stimulus/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "com.bertramlabs.plugins:asset-pipeline-gradle:3.4.7"
}
}

ext."signing.keyId" = project.hasProperty("signing.keyId") ? project.getProperty('signing.keyId') : System.getenv('SIGNING_KEY')
Expand Down Expand Up @@ -70,6 +67,7 @@ jar {
enabled = true
archiveClassifier.set('')
includeEmptyDirs = false
exclude 'assets/turbo*'
}

assets {
Expand Down
4 changes: 1 addition & 3 deletions plugins/turbo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "com.bertramlabs.plugins:asset-pipeline-gradle:3.4.7"
}
}

ext."signing.keyId" = project.hasProperty("signing.keyId") ? project.getProperty('signing.keyId') : System.getenv('SIGNING_KEY')
Expand Down Expand Up @@ -70,6 +67,7 @@ jar {
enabled = true
archiveClassifier.set('')
includeEmptyDirs = false
exclude 'assets/stimulus*'
}

assets {
Expand Down

0 comments on commit 2d522c6

Please sign in to comment.