|
5 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 | 6 |
|
7 | 7 | <groupId>net.unixcode.rts</groupId>
|
8 |
| - <artifactId>parser</artifactId> |
| 8 | + <artifactId>stf-parser</artifactId> |
9 | 9 | <version>0.3.0</version>
|
10 | 10 |
|
11 | 11 | <properties>
|
12 |
| - <maven.compiler.source>17</maven.compiler.source> |
13 |
| - <maven.compiler.target>17</maven.compiler.target> |
| 12 | + <maven.compiler.source>21</maven.compiler.source> |
| 13 | + <maven.compiler.target>21</maven.compiler.target> |
14 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
15 |
| - <org.springframework.version>6.0.12</org.springframework.version> |
16 |
| - <org.antlr.version>4.13.1</org.antlr.version> |
17 |
| - <org.junit.version>5.10.0</org.junit.version> |
| 15 | + <org.springframework.version>6.2.5</org.springframework.version> |
| 16 | + <org.antlr.version>4.13.2</org.antlr.version> |
| 17 | + <org.junit.version>5.12.1</org.junit.version> |
| 18 | + <net.sf.saxon.version>12.5</net.sf.saxon.version> |
18 | 19 | <mvnMainClass>net.unixcode.rts.parser.Main</mvnMainClass>
|
19 | 20 | </properties>
|
20 | 21 |
|
|
32 | 33 | <plugin>
|
33 | 34 | <groupId>org.apache.maven.plugins</groupId>
|
34 | 35 | <artifactId>maven-compiler-plugin</artifactId>
|
35 |
| - <version>3.11.0</version> |
| 36 | + <version>3.14.0</version> |
36 | 37 | <configuration>
|
37 |
| - <source>17</source> |
38 |
| - <target>17</target> |
| 38 | + <source>21</source> |
| 39 | + <target>21</target> |
39 | 40 | <showWarnings>true</showWarnings>
|
40 | 41 | <showDeprecation>true</showDeprecation>
|
41 | 42 | <compilerArgs>
|
|
47 | 48 | <plugin>
|
48 | 49 | <groupId>org.antlr</groupId>
|
49 | 50 | <artifactId>antlr4-maven-plugin</artifactId>
|
50 |
| - <version>4.13.0</version> |
| 51 | + <version>4.13.2</version> |
51 | 52 | <configuration>
|
52 | 53 | <outputDirectory>src/main/java/net/unixcode/rts/parser/antlr/stf</outputDirectory>
|
53 | 54 | </configuration>
|
|
83 | 84 | <plugin>
|
84 | 85 | <groupId>org.apache.maven.plugins</groupId>
|
85 | 86 | <artifactId>maven-assembly-plugin</artifactId>
|
86 |
| - <version>3.6.0</version> |
| 87 | + <version>3.7.1</version> |
87 | 88 | <configuration>
|
88 | 89 | <descriptorRefs>
|
89 | 90 | <descriptorRef>jar-with-dependencies</descriptorRef>
|
|
131 | 132 | <dependency>
|
132 | 133 | <groupId>org.jetbrains</groupId>
|
133 | 134 | <artifactId>annotations</artifactId>
|
134 |
| - <version>24.0.1</version> |
| 135 | + <version>26.0.2</version> |
135 | 136 | <scope>compile</scope>
|
136 | 137 | </dependency>
|
137 | 138 |
|
138 | 139 | <dependency>
|
139 | 140 | <groupId>commons-io</groupId>
|
140 | 141 | <artifactId>commons-io</artifactId>
|
141 |
| - <version>2.13.0</version> |
| 142 | + <version>2.14.0</version> |
142 | 143 | </dependency>
|
143 | 144 |
|
144 | 145 | <dependency>
|
145 | 146 | <groupId>net.sf.saxon</groupId>
|
146 | 147 | <artifactId>Saxon-HE</artifactId>
|
147 |
| - <version>12.3</version> |
| 148 | + <version>${net.sf.saxon.version}</version> |
148 | 149 | </dependency>
|
149 | 150 |
|
150 | 151 | <dependency>
|
151 | 152 | <groupId>org.slf4j</groupId>
|
152 | 153 | <artifactId>slf4j-api</artifactId>
|
153 |
| - <version>2.0.9</version> |
| 154 | + <version>2.0.17</version> |
154 | 155 | </dependency>
|
155 | 156 |
|
156 | 157 | <dependency>
|
157 | 158 | <groupId>org.slf4j</groupId>
|
158 | 159 | <artifactId>slf4j-simple</artifactId>
|
159 |
| - <version>2.0.9</version> |
| 160 | + <version>2.0.17</version> |
160 | 161 | </dependency>
|
161 | 162 | </dependencies>
|
162 | 163 | </project>
|
0 commit comments