Previously there was a lot of cruft in the POM file that related to previous examples of this library. When in doubt, trust Boot's opinions and minimize your POM's as much as possible. We can always add it back in the future. Signed-off-by: Ben Hale <bhale@vmware.com>
37 lines
1.2 KiB
XML
37 lines
1.2 KiB
XML
<?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>org.springframework.cloud</groupId>
|
|
<artifactId>cnb-bindings-parent</artifactId>
|
|
<version>0.0.1.BUILD-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>cnb-bindings-jdbc</artifactId>
|
|
<name>CNB Bindings JDBC</name>
|
|
<description>CNB Bindings JDBC Support Library</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>cnb-bindings</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
<artifactId>mariadb-java-client</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|