diff options
| author | Paul-Christian Volkmer | 2023-03-10 14:38:38 +0100 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2023-03-10 14:38:38 +0100 |
| commit | 26ceebef1f6e5fca48aed9f885255075c29a942c (patch) | |
| tree | 3846374a816ad83cfce16f98b097f5a760788d1a | |
| parent | 68e2312651779220ec68f5bbb2eb9339505ebb3d (diff) | |
Aktualisierung der Datei pom.xml
* Anpassen an in Onkostar verwendete Versionen
* Entfernen von spring-boot-starter-web und Verwendung von spring-web
* Entfernen von Abhängigkeiten, die bereits als transitive Abhängigkeit
enthalten sind.
| -rw-r--r-- | pom.xml | 46 |
1 files changed, 20 insertions, 26 deletions
@@ -30,35 +30,34 @@ <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> - <version>5.1.8.Final</version> + <version>4.3.11.Final</version> + <scope>provided</scope> </dependency> <!-- zusätzliche Erweiterungen. --> <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-jdbc</artifactId> + <version>${spring-version}</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-web</artifactId> + <version>${spring-version}</version> + <scope>provided</scope> + </dependency> + <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> - <version>2.10.1</version> + <version>2.12.2</version> + <scope>provided</scope> </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-web</artifactId> - <version>2.2.1.RELEASE</version> - <scope>compile</scope> - </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-tx</artifactId> - <version>3.2.1.RELEASE</version> - </dependency> - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-api</artifactId> - <version>2.14.1</version> - </dependency> <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-core</artifactId> - <version>2.14.1</version> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>1.7.2</version> + <scope>provided</scope> </dependency> <dependency> <groupId>javax.xml.bind</groupId> @@ -66,11 +65,6 @@ <version>2.3.0</version> <scope>provided</scope> </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-jdbc</artifactId> - <version>5.3.14</version> - </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-csv</artifactId> |
