|
38 | 38 | <sonar.java.target>${java.version}</sonar.java.target> |
39 | 39 | <sonar.core.coveragePlugin>jacoco</sonar.core.coveragePlugin> |
40 | 40 | <sonar.exclusions>**/*.sql, **/*.xml, **/generated/**, **/Messages.java</sonar.exclusions> |
41 | | - <maven.source.version>3.3.1</maven.source.version> |
42 | 41 |
|
43 | | - <java.version>17</java.version> |
| 42 | + <logback.version>1.5.21</logback.version> |
44 | 43 | </properties> |
45 | 44 |
|
46 | 45 | <dependencies> |
|
52 | 51 | <dependency> |
53 | 52 | <groupId>ch.qos.logback</groupId> |
54 | 53 | <artifactId>logback-core</artifactId> |
55 | | - <version>1.5.18</version> |
| 54 | + <version>${logback.version}</version> |
56 | 55 | </dependency> |
57 | 56 | <dependency> |
58 | 57 | <groupId>ch.qos.logback</groupId> |
59 | 58 | <artifactId>logback-classic</artifactId> |
60 | | - <version>1.5.18</version> |
| 59 | + <version>${logback.version}</version> |
61 | 60 | <scope>compile</scope> |
62 | 61 | </dependency> |
63 | 62 | <dependency> |
|
68 | 67 | <dependency> |
69 | 68 | <groupId>org.junit.jupiter</groupId> |
70 | 69 | <artifactId>junit-jupiter</artifactId> |
71 | | - <version>5.13.4</version> |
| 70 | + <version>5.14.1</version> |
72 | 71 | <scope>test</scope> |
73 | 72 | </dependency> |
74 | 73 | </dependencies> |
|
78 | 77 | <plugin> |
79 | 78 | <groupId>org.apache.maven.plugins</groupId> |
80 | 79 | <artifactId>maven-assembly-plugin</artifactId> |
81 | | - <version>3.7.0</version> |
| 80 | + <version>3.7.1</version> |
82 | 81 | <executions> |
83 | 82 | <execution> |
84 | 83 | <id>bundle</id> |
|
119 | 118 | <plugin> |
120 | 119 | <groupId>org.apache.maven.plugins</groupId> |
121 | 120 | <artifactId>maven-compiler-plugin</artifactId> |
122 | | - <version>3.12.1</version> |
| 121 | + <version>3.14.1</version> |
123 | 122 | <configuration> |
124 | 123 | <release>${java.version}</release> |
125 | 124 | </configuration> |
126 | 125 | </plugin> |
127 | 126 | <plugin> |
128 | 127 | <groupId>org.apache.maven.plugins</groupId> |
129 | 128 | <artifactId>maven-surefire-plugin</artifactId> |
130 | | - <version>3.2.5</version> |
| 129 | + <version>3.5.4</version> |
131 | 130 | </plugin> |
132 | 131 | </plugins> |
133 | 132 | </build> |
|
140 | 139 | <plugin> |
141 | 140 | <groupId>org.jacoco</groupId> |
142 | 141 | <artifactId>jacoco-maven-plugin</artifactId> |
143 | | - <version>0.8.13</version> |
| 142 | + <version>0.8.14</version> |
144 | 143 | <executions> |
145 | 144 | <execution> |
146 | 145 | <id>prepare-agent</id> |
|
0 commit comments