2 changed files with 75 additions and 0 deletions
@ -0,0 +1,36 @@
@@ -0,0 +1,36 @@
|
||||
plugins { |
||||
id 'org.springframework.boot' version '{bootVersion}' |
||||
id 'io.spring.dependency-management' version '{dependencyManagementPluginVersion}' |
||||
id 'java' |
||||
} |
||||
|
||||
repositories { |
||||
exclusiveContent { |
||||
forRepository { |
||||
maven { url '{systemTestMavenRepository}' } |
||||
} |
||||
filter { |
||||
includeGroup "org.springframework.boot" |
||||
} |
||||
} |
||||
mavenCentral() |
||||
maven { url 'https://repo.spring.io/milestone' } |
||||
maven { url 'https://repo.spring.io/snapshot' } |
||||
} |
||||
|
||||
dependencies { |
||||
implementation("org.springframework.boot:spring-boot-starter-web:{bootVersion}") |
||||
} |
||||
|
||||
bootJar { |
||||
manifest { |
||||
attributes( |
||||
'Implementation-Version': '1.0.0', |
||||
'Implementation-Title': "Paketo Test" |
||||
) |
||||
} |
||||
} |
||||
|
||||
bootBuildImage { |
||||
environment = ['BP_JVM_CDS_ENABLED': 'true'] |
||||
} |
||||
Loading…
Reference in new issue