Skip to content

Commit e9d4106

Browse files
author
bnasslahsen
committed
project update
1 parent 3291fe9 commit e9d4106

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

manifest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@ applications:
33
- name: springdoc-openapi-spring-boot-1
44
random-route: true
55
memory: 400m
6-
path: springdoc-openapi-spring-boot-1-cf.jar
6+
path: springdoc-openapi-spring-boot-1.jar
77
env:
88
JAVA_OPTS: '-XX:MaxMetaspaceSize=80780K -Xss512k -Xmx200M -XX:ReservedCodeCacheSize=16M -XX:MaxDirectMemorySize=16M'
99
JBP_CONFIG_OPEN_JDK_JRE: '{ jre: { version: 1.8.0_212 } }'
1010
buildpack: java_buildpack
1111
- name: springdoc-openapi-spring-boot-2-webmvc
1212
random-route: true
1313
memory: 400m
14-
path: springdoc-openapi-spring-boot-2-webmvc-cf.jar
14+
path: springdoc-openapi-spring-boot-2-webmvc.jar
1515
env:
1616
JAVA_OPTS: '-XX:MaxMetaspaceSize=80780K -Xss512k -Xmx200M -XX:ReservedCodeCacheSize=16M -XX:MaxDirectMemorySize=16M'
1717
JBP_CONFIG_OPEN_JDK_JRE: '{ jre: { version: 1.8.0_212 } }'
1818
buildpack: java_buildpack
1919
- name: springdoc-openapi-spring-boot-2-webflux
2020
random-route: true
2121
memory: 400m
22-
path: springdoc-openapi-spring-boot-2-webflux-cf.jar
22+
path: springdoc-openapi-spring-boot-2-webflux.jar
2323
env:
2424
JAVA_OPTS: '-XX:MaxMetaspaceSize=80780K -Xss512k -Xmx200M -XX:ReservedCodeCacheSize=16M -XX:MaxDirectMemorySize=16M'
2525
JBP_CONFIG_OPEN_JDK_JRE: '{ jre: { version: 1.8.0_212 } }'
2626
buildpack: java_buildpack
2727
- name: springdoc-openapi-spring-boot-2-webflux-func
2828
random-route: true
2929
memory: 400m
30-
path: springdoc-openapi-spring-boot-2-webflux-functional-cf.jar
30+
path: springdoc-openapi-spring-boot-2-webflux-functional.jar
3131
env:
3232
JAVA_OPTS: '-XX:MaxMetaspaceSize=80780K -Xss512k -Xmx200M -XX:ReservedCodeCacheSize=16M -XX:MaxDirectMemorySize=16M'
3333
JBP_CONFIG_OPEN_JDK_JRE: '{ jre: { version: 1.8.0_212 } }'

sample-springdoc-openapi-book-service/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ repositories {
3131
mavenCentral()
3232
}
3333

34-
jar {
34+
bootJar {
3535
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
3636
}
3737

sample-springdoc-openapi-hateoas-service/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ repositories {
3131
mavenCentral()
3232
}
3333

34-
jar {
34+
bootJar {
3535
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
3636
}
3737

sample-springdoc-openapi-person-service/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ repositories {
3131
mavenCentral()
3232
}
3333

34-
jar {
34+
bootJar {
3535
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
3636
}
3737

springdoc-openapi-spring-boot-2-webflux-functional/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ repositories {
3131
mavenCentral()
3232
}
3333

34-
jar {
34+
bootJar {
3535
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
3636
}
3737

springdoc-openapi-spring-boot-2-webflux/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ repositories {
3131
mavenCentral()
3232
}
3333

34-
jar {
34+
bootJar {
3535
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
3636
}
3737

springdoc-openapi-spring-boot-2-webmvc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ repositories {
3131
mavenCentral()
3232
}
3333

34-
jar {
34+
bootJar {
3535
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
3636
}
3737

0 commit comments

Comments
 (0)