|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 5 | <modelVersion>4.0.0</modelVersion> |
4 | 6 | <parent> |
5 | 7 | <groupId>org.springframework.boot</groupId> |
6 | 8 | <artifactId>spring-boot-starter-parent</artifactId> |
7 | | - <version>3.5.6</version> |
| 9 | + <version>3.5.7</version> |
8 | 10 | <relativePath /> <!-- lookup parent from repository --> |
9 | 11 | </parent> |
10 | 12 | <groupId>tech.artcoded</groupId> |
|
13 | 15 | <name>sync-folder</name> |
14 | 16 | <description>Google drive sync for artcoded</description> |
15 | 17 | <properties> |
16 | | - <java.version>24</java.version> |
| 18 | + <java.version>25</java.version> |
17 | 19 | <lombok.version>1.18.42</lombok.version> |
18 | | - <camel.version>4.14.0</camel.version> |
| 20 | + <camel.version>4.15.0</camel.version> |
19 | 21 | <drive.version>v3-rev20250910-2.0.0</drive.version> |
20 | 22 | <google-api-client.version>2.8.1</google-api-client.version> |
21 | 23 | <google-auth-library-oauth2-http.version>1.39.1</google-auth-library-oauth2-http.version> |
|
33 | 35 | <dependencies> |
34 | 36 | <dependency> |
35 | 37 | <groupId>jakarta.annotation</groupId> |
36 | | - <artifactId>jakarta.annotation-api</artifactId> |
| 38 | + <artifactId>jakarta.annotation-api</artifactId> |
37 | 39 | <version>${javax.annotation-api.version}</version> |
38 | 40 | </dependency> |
39 | 41 |
|
|
89 | 91 | <finalName>app</finalName> |
90 | 92 | <plugins> |
91 | 93 | <plugin> |
92 | | - <artifactId>maven-compiler-plugin</artifactId> |
93 | | - <version>3.11.0</version> |
94 | | - <configuration> |
95 | | - <release>${java.version}</release> |
96 | | - <source>${java.version}</source> |
97 | | - <target>${java.version}</target> |
98 | | - <annotationProcessorPaths> |
| 94 | + <artifactId>maven-compiler-plugin</artifactId> |
| 95 | + <version>3.11.0</version> |
| 96 | + <configuration> |
| 97 | + <release>${java.version}</release> |
| 98 | + <source>${java.version}</source> |
| 99 | + <target>${java.version}</target> |
| 100 | + <annotationProcessorPaths> |
99 | 101 | <path> |
100 | 102 | <groupId>org.projectlombok</groupId> |
101 | 103 | <artifactId>lombok</artifactId> |
102 | 104 | <version>${lombok.version}</version> |
103 | 105 | </path> |
104 | 106 | </annotationProcessorPaths> |
105 | | - </configuration> |
106 | | - </plugin> |
| 107 | + </configuration> |
| 108 | + </plugin> |
107 | 109 | <plugin> |
108 | 110 | <groupId>org.springframework.boot</groupId> |
109 | 111 | <artifactId>spring-boot-maven-plugin</artifactId> |
|
0 commit comments