|
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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion> |
4 | 5 | <groupId>no.javazone</groupId> |
5 | 6 | <artifactId>cake-redux</artifactId> |
|
10 | 11 | <properties> |
11 | 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
12 | 13 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
13 | | - <kotlin.version>1.8.0</kotlin.version> |
| 14 | + <kotlin.version>2.3.0</kotlin.version> |
14 | 15 | <kotlin.compiler.incremental>true</kotlin.compiler.incremental> |
15 | 16 | </properties> |
| 17 | + <dependencyManagement> |
| 18 | + <dependencies> |
| 19 | + <dependency> |
| 20 | + <groupId>commons-codec</groupId> |
| 21 | + <artifactId>commons-codec</artifactId> |
| 22 | + <version>1.19.0</version> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>commons-logging</groupId> |
| 26 | + <artifactId>commons-logging</artifactId> |
| 27 | + <version>1.3.5</version> |
| 28 | + </dependency> |
| 29 | + </dependencies> |
| 30 | + </dependencyManagement> |
16 | 31 |
|
17 | 32 | <dependencies> |
18 | 33 | <dependency> |
|
23 | 38 | <dependency> |
24 | 39 | <groupId>junit</groupId> |
25 | 40 | <artifactId>junit</artifactId> |
26 | | - <version>4.11</version> |
| 41 | + <version>4.13.2</version> |
27 | 42 | <scope>test</scope> |
28 | 43 | </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>jakarta.servlet</groupId> |
| 46 | + <artifactId>jakarta.servlet-api</artifactId> |
| 47 | + <version>6.0.0</version> |
| 48 | + <scope>provided</scope> |
| 49 | + </dependency> |
29 | 50 | <dependency> |
30 | 51 | <groupId>org.eclipse.jetty</groupId> |
31 | 52 | <artifactId>jetty-server</artifactId> |
32 | | - <version>9.4.16.v20190411</version> |
| 53 | + <version>12.1.5</version> |
33 | 54 | </dependency> |
34 | 55 | <dependency> |
35 | | - <groupId>org.eclipse.jetty</groupId> |
36 | | - <artifactId>jetty-plus</artifactId> |
37 | | - <version>9.4.16.v20190411</version> |
| 56 | + <groupId>org.eclipse.jetty.ee10</groupId> |
| 57 | + <artifactId>jetty-ee10-servlet</artifactId> |
| 58 | + <version>12.1.5</version> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>org.eclipse.jetty.ee10</groupId> |
| 62 | + <artifactId>jetty-ee10-webapp</artifactId> |
| 63 | + <version>12.1.5</version> |
38 | 64 | </dependency> |
39 | 65 | <dependency> |
40 | 66 | <groupId>org.assertj</groupId> |
41 | 67 | <artifactId>assertj-core</artifactId> |
42 | | - <version>1.7.0</version> |
| 68 | + <version>3.11.1</version> |
43 | 69 | <scope>test</scope> |
44 | 70 | </dependency> |
45 | 71 |
|
46 | 72 | <dependency> |
47 | 73 | <groupId>org.mockito</groupId> |
48 | | - <artifactId>mockito-all</artifactId> |
49 | | - <version>1.9.5</version> |
| 74 | + <artifactId>mockito-core</artifactId> |
| 75 | + <version>5.19.0</version> |
50 | 76 | <scope>test</scope> |
51 | 77 | </dependency> |
52 | 78 |
|
53 | 79 |
|
54 | 80 | <dependency> |
55 | 81 | <groupId>org.jsonbuddy</groupId> |
56 | 82 | <artifactId>jsonbuddy</artifactId> |
57 | | - <version>0.8.0</version> |
| 83 | + <version>0.18.1</version> |
58 | 84 | </dependency> |
59 | 85 |
|
60 | 86 |
|
61 | 87 | <dependency> |
62 | 88 | <groupId>com.sendgrid</groupId> |
63 | 89 | <artifactId>sendgrid-java</artifactId> |
64 | | - <version>4.1.0</version> |
| 90 | + <version>4.10.3</version> |
65 | 91 | </dependency> |
66 | 92 |
|
67 | 93 | <dependency> |
68 | 94 | <groupId>org.logevents</groupId> |
69 | 95 | <artifactId>logevents</artifactId> |
70 | | - <version>0.1.38</version> |
| 96 | + <version>0.5.9</version> |
71 | 97 | </dependency> |
72 | 98 | <dependency> |
73 | 99 | <groupId>org.jetbrains.kotlin</groupId> |
|
77 | 103 | </dependencies> |
78 | 104 |
|
79 | 105 | <build> |
| 106 | + <finalName>${project.artifactId}</finalName> |
80 | 107 | <plugins> |
81 | 108 | <plugin> |
82 | 109 | <artifactId>kotlin-maven-plugin</artifactId> |
|
85 | 112 | <executions> |
86 | 113 | <execution> |
87 | 114 | <id>compile</id> |
88 | | - <goals> <goal>compile</goal> </goals> |
| 115 | + <goals> |
| 116 | + <goal>compile</goal> |
| 117 | + </goals> |
89 | 118 | <configuration> |
90 | 119 | <sourceDirs> |
91 | 120 | <sourceDir>${project.basedir}/src/main/kotlin</sourceDir> |
|
95 | 124 | </execution> |
96 | 125 | <execution> |
97 | 126 | <id>test-compile</id> |
98 | | - <goals> <goal>test-compile</goal> </goals> |
| 127 | + <goals> |
| 128 | + <goal>test-compile</goal> |
| 129 | + </goals> |
99 | 130 | <configuration> |
100 | 131 | <sourceDirs> |
101 | 132 | <sourceDir>${project.basedir}/src/test/kotlin</sourceDir> |
|
110 | 141 | <plugin> |
111 | 142 | <artifactId>maven-compiler-plugin</artifactId> |
112 | 143 | <configuration> |
113 | | - <target>11</target> |
114 | | - <source>11</source> |
| 144 | + <release>25</release> |
115 | 145 | </configuration> |
116 | | - <version>3.10.1</version> |
| 146 | + <version>3.14.1</version> |
117 | 147 | <executions> |
118 | 148 | <!-- Replacing default-compile as it is treated specially by maven --> |
119 | 149 | <execution> |
|
128 | 158 | <execution> |
129 | 159 | <id>java-compile</id> |
130 | 160 | <phase>compile</phase> |
131 | | - <goals> <goal>compile</goal> </goals> |
| 161 | + <goals> |
| 162 | + <goal>compile</goal> |
| 163 | + </goals> |
132 | 164 | </execution> |
133 | 165 | <execution> |
134 | 166 | <id>java-test-compile</id> |
135 | 167 | <phase>test-compile</phase> |
136 | | - <goals> <goal>testCompile</goal> </goals> |
| 168 | + <goals> |
| 169 | + <goal>testCompile</goal> |
| 170 | + </goals> |
137 | 171 | </execution> |
138 | 172 | </executions> |
139 | 173 | </plugin> |
|
145 | 179 | <execution> |
146 | 180 | <id>copy-dependencies</id> |
147 | 181 | <phase>package</phase> |
148 | | - <goals><goal>copy-dependencies</goal></goals> |
| 182 | + <goals> |
| 183 | + <goal>copy-dependencies</goal> |
| 184 | + </goals> |
149 | 185 | </execution> |
150 | 186 | </executions> |
151 | 187 | </plugin> |
|
0 commit comments