|
1 | 1 | plugins { |
2 | 2 | id "com.google.cloud.tools.jib" version "3.1.4" |
3 | | - id "org.springframework.boot" version "2.5.5" |
| 3 | + id "org.springframework.boot" version "2.6.1" |
4 | 4 | id "io.spring.dependency-management" version "1.0.11.RELEASE" |
5 | 5 | id "com.vaadin" version "21.0.2" |
6 | 6 | id 'java' |
@@ -36,35 +36,47 @@ jooq { |
36 | 36 | } |
37 | 37 |
|
38 | 38 | dependencies { |
39 | | - compileOnly 'org.apache.logging.log4j:log4j-api:2.15.0' |
40 | | - runtimeOnly 'org.apache.logging.log4j:log4j-jul:2.15.0' |
41 | | - runtimeOnly 'org.apache.logging.log4j:log4j-slf4j-impl:2.15.0' |
| 39 | + implementation('org.apache.logging.log4j:log4j-api') { |
| 40 | + version { |
| 41 | + require '2.16.0' |
| 42 | + } |
| 43 | + because 'Log4Shell happened' |
| 44 | + } |
| 45 | + runtimeOnly('org.apache.logging.log4j:log4j-core') { |
| 46 | + version { |
| 47 | + require '2.16.0' |
| 48 | + } |
| 49 | + because 'Log4Shell happened' |
| 50 | + } |
| 51 | + |
| 52 | + runtimeOnly 'org.apache.logging.log4j:log4j-jul:2.16.0' |
| 53 | + runtimeOnly 'org.apache.logging.log4j:log4j-slf4j-impl:2.16.0' |
42 | 54 |
|
43 | 55 |
|
44 | 56 | implementation(project(":database")) |
45 | 57 | implementation 'org.jooq:jooq:3.15.3' |
46 | 58 |
|
47 | 59 | implementation 'com.vaadin:vaadin-core:21.0.2' |
48 | | - implementation ('com.vaadin:vaadin-spring:18.0.0') |
| 60 | + implementation('com.vaadin:vaadin-spring:18.0.0') |
49 | 61 | implementation 'org.vaadin.artur:a-vaadin-helper:1.7.2' |
50 | 62 | implementation 'org.vaadin.crudui:crudui:4.6.0' |
51 | 63 | implementation 'com.vaadin.componentfactory:enhanced-dialog:21.0.0' |
52 | 64 |
|
53 | 65 |
|
54 | | - implementation ('org.springframework.boot:spring-boot-starter-web:2.5.5'){ |
| 66 | + implementation('org.springframework.boot:spring-boot-starter-web:2.6.1') { |
55 | 67 | exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging' |
56 | 68 | } |
57 | | - implementation ('org.springframework.boot:spring-boot-starter-security:2.5.5'){ |
| 69 | + implementation('org.springframework.boot:spring-boot-starter-security:2.6.1') { |
58 | 70 | exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging' |
59 | 71 | } |
60 | | - implementation ('org.springframework.boot:spring-boot-starter-oauth2-client:2.5.5'){ |
| 72 | + implementation('org.springframework.boot:spring-boot-starter-oauth2-client:2.6.1') { |
61 | 73 | exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging' |
62 | 74 | } |
63 | 75 |
|
64 | | - developmentOnly ('org.springframework.boot:spring-boot-starter-actuator:2.5.5'){ |
| 76 | + developmentOnly('org.springframework.boot:spring-boot-starter-actuator:2.6.1') { |
65 | 77 | exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging' |
66 | 78 | } |
67 | | - developmentOnly ('org.springframework.boot:spring-boot-devtools:2.5.5'){ |
| 79 | + developmentOnly('org.springframework.boot:spring-boot-devtools:2.6.1') { |
68 | 80 | exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging' |
69 | 81 | } |
70 | 82 | } |
|
79 | 91 | password = System.getenv('REGISTRY_PASSWORD') ?: '' |
80 | 92 | } |
81 | 93 | } |
82 | | - container{ |
| 94 | + container { |
83 | 95 | setPorts(["5050"].asList()) |
84 | 96 | setCreationTime(Instant.now().toString()) |
85 | 97 | } |
|
0 commit comments