Skip to content

Commit

Permalink
build: Renamed subprojects folder to core
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Ruaux committed Jun 27, 2022
1 parent d7bccfd commit a98613b
Show file tree
Hide file tree
Showing 41 changed files with 17 additions and 12 deletions.
9 changes: 0 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,6 @@ subprojects {
useJUnitPlatform()
maxHeapSize = "1024m"
}

bootJar {
enabled = false
}

jar {
enabled = true
archiveClassifier = ''
}

sourceCompatibility = 8
targetCompatibility = 8
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,18 @@ dependencies {
testImplementation 'com.zaxxer:HikariCP'
}


bootJar {
enabled = false
}

jar {
enabled = true
archiveClassifier = ''
}

shadowJar {
archiveClassifier.set('')
}

jar.finalizedBy shadowJar
jar.finalizedBy shadowJar
8 changes: 6 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ apply plugin: 'org.kordamp.gradle.kordamp-parentbuild'
rootProject.name = 'redis-sidecar'

projects {
directories = ['subprojects']
directories = ['core', 'demos']

plugins {
all {
Expand All @@ -27,13 +27,17 @@ projects {
path(':') {
id 'org.kordamp.gradle.java-project'
}
dirs(['subprojects']) {
dirs(['core']) {
id 'java-library'
id 'java-library-distribution'
id 'org.springframework.boot'
id 'io.spring.dependency-management'
id 'com.github.johnrengelman.shadow'
}
dirs(['demos']) {
id 'org.springframework.boot'
id 'io.spring.dependency-management'
}
}
}

Expand Down

0 comments on commit a98613b

Please sign in to comment.