You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.4 KiB
44 lines
1.4 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<project xmlns="http://maven.apache.org/POM/4.0.0" 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"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<parent> |
|
<groupId>com.codingapi</groupId> |
|
<artifactId>tx-lcn</artifactId> |
|
<version>4.2.0-SNAPSHOT</version> |
|
</parent> |
|
|
|
<groupId>com.codingapi</groupId> |
|
<artifactId>tx-plugins-db</artifactId> |
|
<version>${lcn.last.version}</version> |
|
|
|
<name>tx-plugins-db</name> |
|
<url>https://github.com/codingapi/tx-lcn</url> |
|
|
|
<description>tx-plugins-db project for Spring Boot</description> |
|
|
|
<properties> |
|
<druid-starter-version>1.1.9</druid-starter-version> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>com.codingapi</groupId> |
|
<artifactId>tx-client</artifactId> |
|
<version>${lcn.last.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>druid</artifactId> |
|
<version>${druid-starter-version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
<version>2.8.10</version> |
|
</dependency> |
|
</dependencies> |
|
|
|
|
|
</project>
|
|
|