@@ -9,49 +9,26 @@ plugins {
99}
1010
1111repositories  {
12-     mavenLocal()
13-     maven {
14-         url =  ' https://maven.vaadin.com/vaadin-prereleases' 
15-     }
16- 
12+     mavenCentral()
1713    maven {
1814        url =  ' https://maven.vaadin.com/vaadin-addons' 
1915    }
20- 
21-     maven {
22-         url =  ' https://oss.sonatype.org/content/repositories/vaadin-snapshots/' 
23-     }
24- 
25-     maven {
26-         url =  ' https://repo.maven.apache.org/maven2' 
27-     }
2816}
2917
3018dependencies  {
31-     implementation ' com.vaadin:vaadin-compatibility-server:8.0.0.alpha2' 
32-     implementation ' com.vaadin:vaadin-compatibility-shared:8.0.0.alpha2' 
33-     implementation ' com.vaadin:vaadin-compatibility-client-compiled:8.0.0.alpha2' 
34-     implementation ' com.vaadin:vaadin-themes:8.0.0.alpha2' 
35-     implementation ' javax.servlet:javax.servlet-api:3.0.1' 
36-     implementation ' commons-beanutils:commons-beanutils:1.9.2' 
37-     implementation ' log4j:log4j:1.2.9' 
38-     implementation ' org.slf4j:slf4j-api:1.7.7' 
39-     implementation ' org.slf4j:slf4j-simple:1.7.7' 
40-     implementation ' org.slf4j:slf4j-log4j12:1.7.7' 
41-     implementation ' commons-httpclient:commons-httpclient:3.1' 
42-     implementation ' org.apache.commons:commons-lang3:3.1' 
43-     implementation ' org.json:json:20140107' 
44-     implementation ' org.codehaus.jackson:jackson-jaxrs:1.9.4' 
45-     implementation ' com.sun.xml.security:xml-security-impl:1.0' 
46-     testImplementation ' junit:junit:4.7' 
19+     implementation ' com.vaadin:vaadin:24.1.0' 
20+     implementation ' jakarta.servlet:jakarta.servlet-api:6.0.0' 
21+     implementation ' org.apache.logging.log4j:log4j-api:2.20.0' 
22+     implementation ' org.apache.logging.log4j:log4j-core:2.20.0' 
23+     implementation ' org.apache.commons:commons-lang3:3.12.0' 
24+     testImplementation ' org.junit.jupiter:junit-jupiter:5.10.0' 
4725}
4826
4927group =  ' com.devopsdemo.tutorial' 
50- //  version = '2.0'
51- //  description = 'Vaadin Sampleapp example'
52- sourceCompatibility =  ' 1.8' 
28+ sourceCompatibility =  ' 21' 
5329
54- configurations. all  {
30+ tasks. withType(JavaCompile ) {
31+     options. encoding =  ' UTF-8' 
5532}
5633
5734publishing  {
@@ -61,7 +38,3 @@ publishing {
6138        }
6239    }
6340}
64- 
65- tasks. withType(JavaCompile ) {
66-     options. encoding =  ' UTF-8' 
67- }
0 commit comments