budo-jdbc/budo-datasource-wrapper/pom.xml

54 lines
1.9 KiB
XML
Raw Normal View History

2020-07-03 16:33:19 +08:00
<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>
<groupId>org.budo</groupId>
<artifactId>budo-datasource-wrapper</artifactId>
<version>0.0.2-wr-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<budo-snapshot-repository-url>https://repo.rdc.aliyun.com/repository/1726-snapshot-ZLxSbx/</budo-snapshot-repository-url>
</properties>
<distributionManagement>
<snapshotRepository>
<id>budo-snapshot-repository</id>
<url>${budo-snapshot-repository-url}</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.budo</groupId>
<artifactId>budo-jdbc-driver</artifactId>
<version>0.0.2-dr-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.7</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>