|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 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/maven-v4_0_0.xsd"> |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <groupId>cz.metacentrum</groupId> |
6 | 6 | <artifactId>accounting-parent</artifactId> |
7 | 7 | <packaging>pom</packaging> |
8 | 8 |
|
9 | 9 | <!-- |
10 | | - Use "mvn versions:set -DnewVersion=3.31; mvn versions:commit" to change version in all modules |
| 10 | + Use "mvn versions:set -DnewVersion=3.33; mvn versions:commit" to change version in all modules |
11 | 11 | --> |
12 | | - <version>3.31</version> |
| 12 | + <version>3.32</version> |
13 | 13 | <name>MetaCentrum Accounting Parent Project</name> |
14 | 14 |
|
15 | 15 | <properties> |
16 | 16 | <java.version>17</java.version> |
17 | 17 | <taglibs-standard.version>1.2.5</taglibs-standard.version> |
18 | | - <commons-lang3.version>3.14.0</commons-lang3.version><!-- fix for missing Range.of() in commons-lang3 3.12 --> |
| 18 | + <commons-lang3.version>3.17.0</commons-lang3.version><!-- fix for missing Range.of() in commons-lang3 3.12 --> |
19 | 19 | <maven.deploy.skip>true</maven.deploy.skip> |
| 20 | + <spring.version>5.3.39</spring.version> |
| 21 | + <logback.version>1.4.14</logback.version> |
| 22 | + <postgresql.version>42.7.4</postgresql.version> |
20 | 23 | </properties> |
21 | 24 |
|
22 | 25 | <!-- defines compatible versions of many libraries --> |
|
30 | 33 | <!-- specifies versions not defined by the Spring platform-bom --> |
31 | 34 | <dependencyManagement> |
32 | 35 | <dependencies> |
| 36 | + <dependency> |
| 37 | + <groupId>org.springframework</groupId> |
| 38 | + <artifactId>spring-web</artifactId> |
| 39 | + <version>${spring.version}</version> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>org.springframework</groupId> |
| 43 | + <artifactId>spring-jdbc</artifactId> |
| 44 | + <version>${spring.version}</version> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>org.springframework</groupId> |
| 48 | + <artifactId>spring-core</artifactId> |
| 49 | + <version>${spring.version}</version> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.springframework</groupId> |
| 53 | + <artifactId>spring-context</artifactId> |
| 54 | + <version>${spring.version}</version> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>org.springframework</groupId> |
| 58 | + <artifactId>spring-expression</artifactId> |
| 59 | + <version>${spring.version}</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>commons-io</groupId> |
| 63 | + <artifactId>commons-io</artifactId> |
| 64 | + <version>2.16.1</version> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>ch.qos.logback</groupId> |
| 68 | + <artifactId>logback-classic</artifactId> |
| 69 | + <version>${logback.version}</version> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>ch.qos.logback</groupId> |
| 73 | + <artifactId>logback-core</artifactId> |
| 74 | + <version>${logback.version}</version> |
| 75 | + </dependency> |
| 76 | + |
33 | 77 | <dependency> |
34 | 78 | <groupId>org.apache.commons</groupId> |
35 | 79 | <artifactId>commons-text</artifactId> |
|
0 commit comments