Skip to content

Commit bb5e7dc

Browse files
committed
Set Spring-Boot-Jar-Type manifest-entry for starter projects
1 parent f7c6b15 commit bb5e7dc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

starters/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,10 @@ subprojects { Project starterProject ->
22
starterProject.pluginManager.withPlugin("io.freefair.maven-publish-java") {
33
starterProject.publishing.publications.mavenJava.artifactId = "$starterProject.name-spring-boot-starter"
44
}
5+
6+
starterProject.apply plugin: "java-library"
7+
8+
starterProject.jar.manifest {
9+
attributes 'Spring-Boot-Jar-Type': 'dependencies-starter'
10+
}
511
}

0 commit comments

Comments
 (0)