|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - 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"> |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 5 | <modelVersion>4.0.0</modelVersion> |
5 | 6 |
|
6 | 7 | <groupId>eu.openanalytics</groupId> |
7 | 8 | <artifactId>shinyproxy-operator</artifactId> |
8 | | - <version>2.0.0</version> |
| 9 | + <version>2.1.0-SNAPSHOT</version> |
9 | 10 |
|
10 | 11 | <organization> |
11 | 12 | <name>Open Analytics NV</name> |
12 | 13 | <url>https://www.shinyproxy.io/</url> |
13 | 14 | </organization> |
14 | 15 |
|
15 | 16 | <properties> |
16 | | - <maven.compiler.source>11</maven.compiler.source> |
17 | | - <maven.compiler.release>11</maven.compiler.release> |
18 | | - <maven.compiler.target>11</maven.compiler.target> |
19 | | - <version.fabric8.client>6.1.1</version.fabric8.client> |
20 | | - <kotlin.version>1.5.20</kotlin.version> |
| 17 | + <maven.compiler.source>17</maven.compiler.source> |
| 18 | + <maven.compiler.release>17</maven.compiler.release> |
| 19 | + <maven.compiler.target>17</maven.compiler.target> |
21 | 20 | <kotlin.compiler.incremental>true</kotlin.compiler.incremental> |
22 | | - <junit.jupiter.version>5.6.0</junit.jupiter.version> |
23 | | - <log4j.version>2.17.2</log4j.version> |
24 | | - <okhttp.version>4.10.0</okhttp.version> |
| 21 | + <!-- Dependency versions --> |
| 22 | + <jackson.version>2.16.1</jackson.version> |
| 23 | + <jakarta.json-api.version>2.1.3</jakarta.json-api.version> |
| 24 | + <junit.jupiter.version>5.10.2</junit.jupiter.version> |
| 25 | + <junit.platform.version>1.10.2</junit.platform.version> |
| 26 | + <kotlin.coroutines.version>1.7.3</kotlin.coroutines.version> |
| 27 | + <kotlin.logging.version>3.0.5</kotlin.logging.version> |
| 28 | + <kotlin.version>1.9.22</kotlin.version> |
| 29 | + <log4j.version>2.22.1</log4j.version> |
| 30 | + <okhttp.version>4.12.0</okhttp.version> |
| 31 | + <version.fabric8.client>6.10.0</version.fabric8.client> |
25 | 32 | </properties> |
26 | 33 |
|
27 | 34 | <distributionManagement> |
|
41 | 48 | <dependency> |
42 | 49 | <groupId>org.jetbrains.kotlinx</groupId> |
43 | 50 | <artifactId>kotlinx-coroutines-core</artifactId> |
44 | | - <version>1.5.1</version> |
| 51 | + <version>${kotlin.coroutines.version}</version> |
45 | 52 | </dependency> |
46 | 53 | <!-- https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-reflect --> |
47 | 54 | <dependency> |
|
83 | 90 | <dependency> |
84 | 91 | <groupId>io.github.microutils</groupId> |
85 | 92 | <artifactId>kotlin-logging-jvm</artifactId> |
86 | | - <version>2.0.10</version> |
| 93 | + <version>${kotlin.logging.version}</version> |
87 | 94 | </dependency> |
88 | 95 | <dependency> |
89 | | - <groupId>javax.json</groupId> |
90 | | - <artifactId>javax.json-api</artifactId> |
91 | | - <version>1.1</version> |
| 96 | + <groupId>jakarta.json</groupId> |
| 97 | + <artifactId>jakarta.json-api</artifactId> |
| 98 | + <version>${jakarta.json-api.version}</version> |
92 | 99 | </dependency> |
93 | 100 | <dependency> |
94 | 101 | <groupId>org.glassfish</groupId> |
|
98 | 105 | <dependency> |
99 | 106 | <groupId>com.fasterxml.jackson.datatype</groupId> |
100 | 107 | <artifactId>jackson-datatype-jsr353</artifactId> |
101 | | - <version>2.13.3</version> |
| 108 | + <version>${jackson.version}</version> |
102 | 109 | </dependency> |
103 | 110 | <dependency> |
104 | 111 | <groupId>com.fasterxml.jackson.module</groupId> |
105 | 112 | <artifactId>jackson-module-kotlin</artifactId> |
106 | | - <version>2.13.3</version> |
| 113 | + <version>${jackson.version}</version> |
107 | 114 | </dependency> |
108 | 115 |
|
109 | 116 | <!-- Dependencies for tests --> |
|
116 | 123 | <dependency> |
117 | 124 | <groupId>org.junit.platform</groupId> |
118 | 125 | <artifactId>junit-platform-launcher</artifactId> |
119 | | - <version>1.7.0</version> |
| 126 | + <version>${junit.platform.version}</version> |
120 | 127 | <scope>test</scope> |
121 | 128 | </dependency> |
122 | 129 | <dependency> |
123 | 130 | <groupId>org.junit.platform</groupId> |
124 | 131 | <artifactId>junit-platform-commons</artifactId> |
125 | | - <version>1.7.2</version> |
| 132 | + <version>${junit.platform.version}</version> |
126 | 133 | <scope>test</scope> |
127 | 134 | </dependency> |
128 | 135 | <dependency> |
|
242 | 249 | <version>3.0</version> |
243 | 250 |
|
244 | 251 | <executions> |
245 | | - <!--<execution> <id>generate-copyright-headers</id> <phase>process-sources</phase>--> |
246 | | - <!--<goals> <goal>format</goal> </goals> </execution>--> |
247 | 252 | <execution> |
248 | 253 | <id>check-copyright-headers</id> |
249 | 254 | <phase>package</phase> |
|
0 commit comments