-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4a87108
commit ccb8e2f
Showing
11 changed files
with
52 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
build-logic/src/main/kotlin/cloud-spring.publishing-conventions.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
plugins { | ||
id("net.kyori.indra.publishing") | ||
} | ||
|
||
signing { | ||
val signingKey: String? by project | ||
val signingPassword: String? by project | ||
useInMemoryPgpKeys(signingKey, signingPassword) | ||
} | ||
|
||
indra { | ||
github("Incendo", "cloud-spring") { | ||
ci(true) | ||
} | ||
mitLicense() | ||
|
||
configurePublications { | ||
pom { | ||
developers { | ||
developer { | ||
id.set("Sauilitired") | ||
name.set("Alexander Söderberg") | ||
email.set("[email protected]") | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,23 @@ | ||
import org.springframework.boot.gradle.tasks.bundling.BootJar | ||
|
||
plugins { | ||
id("cloud-spring.base-conventions") | ||
id("cloud-spring.publishing-conventions") | ||
alias(libs.plugins.spring.plugin.boot) | ||
} | ||
apply(plugin = "io.spring.dependency-management") | ||
|
||
tasks.named<BootJar>("bootJar") { | ||
enabled = false | ||
} | ||
|
||
dependencies { | ||
api(libs.cloud.core) | ||
compileOnlyApi(libs.cloud.annotations) | ||
api(libs.spring.boot.autoconfigure) | ||
api(libs.spring.shell) | ||
api(platform(libs.spring.shell.dependencies)) | ||
|
||
compileOnly(libs.immutables) | ||
annotationProcessor(libs.immutables) | ||
compileOnlyApi(libs.cloud.annotations) | ||
|
||
testImplementation(libs.spring.boot.starter.test) | ||
} |
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
...esources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
org.incendo.cloud.spring.config.CloudSpringConfig | ||
org.incendo.cloud.spring.SpringCommandManager | ||
org.incendo.cloud.spring.registrar.BeanRegistrar | ||
org.incendo.cloud.spring.registrar.AnnotationRegistrar | ||
org.incendo.cloud.spring.registrar.CommandRegistrationCoordinator | ||
org.incendo.cloud.spring.SpringCommandRegistrationHandler |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters