Skip to content

Commit c408b63

Browse files
author
emmanue1
committed
Fixed corrects an error that occurs when the command 'gradlew clean build' is executed
1 parent 9b89bda commit c408b63

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ jar {
7777
exclude 'META-INF/licenses/**', 'META-INF/maven/**', 'META-INF/INDEX.LIST'
7878
duplicatesStrategy DuplicatesStrategy.EXCLUDE
7979
doFirst {
80-
// Add SPI directory
81-
def tmpSpiDir = file('build/tmp/spi')
82-
tmpSpiDir.deleteDir()
83-
def tmpSpiServicesDir = file(tmpSpiDir.path + '/META-INF/services')
84-
tmpSpiServicesDir.mkdirs()
85-
from tmpSpiDir
80+
// Add SPI directory
81+
def tmpSpiDir = file('build/tmp/spi')
82+
tmpSpiDir.deleteDir()
83+
def tmpSpiServicesDir = file(tmpSpiDir.path + '/META-INF/services')
84+
tmpSpiServicesDir.mkdirs()
85+
from tmpSpiDir
8686

8787
// Copy and merge SPI config files
8888
subprojects.each { subproject ->

0 commit comments

Comments
 (0)