Skip to content

Commit 0feee8e

Browse files
committed
cleanup
1 parent bbb7ac4 commit 0feee8e

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ tasks {
55
}
66
}
77

8-
val gradleVersion: String by extra
9-
108
plugins {
119
id("java")
1210
id("eclipse")

src/main/resources/application-nossl.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
1+
spring:
2+
main:
3+
web-application-type: SERVLET
4+
application:
5+
name: Barcode API
6+
mvc:
7+
view:
8+
prefix: /public/
9+
suffix: .html
110
server:
211
port: 8080
312
http2:
413
enabled: true
514
compression:
615
enabled: true
716
min-response-size: 2048
8-
mime-types: application/hal+json,application/json,application/xml,text/html,text/xml,text/plain,image/png
17+
mime-types: application/hal+json,application/json,application/xml,text/html,text/xml,text/plain,image/png,image/jpeg,image/gif
918
servlet:
1019
session:
1120
timeout: 10s

src/main/resources/application-ssl.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
1+
spring:
2+
main:
3+
web-application-type: SERVLET
4+
application:
5+
name: Barcode API
6+
mvc:
7+
view:
8+
prefix: /public/
9+
suffix: .html
110
server:
211
port: 8443
312
http2:
413
enabled: true
514
compression:
615
enabled: true
716
min-response-size: 2048
8-
mime-types: application/hal+json,application/json,application/xml,text/html,text/xml,text/plain,image/png
17+
mime-types: application/hal+json,application/json,application/xml,text/html,text/xml,text/plain,image/png,image/jpeg,image/gif
918
servlet:
1019
session:
1120
timeout: 10s

0 commit comments

Comments
 (0)