pom.xml 3.0 KB
Newer Older
H
hzcheng 已提交
1 2 3
<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>
4

H
hzcheng 已提交
5 6
	<groupId>com.taosdata.jdbc</groupId>
	<artifactId>taos-jdbcdriver</artifactId>
X
xieyinglin 已提交
7
	<version>1.0.3</version>
8 9
	<packaging>jar</packaging>

H
hzcheng 已提交
10
	<name>JDBCDriver</name>
11
	<url>https://github.com/taosdata/TDengine/tree/master/src/connector/jdbc</url>
H
hzcheng 已提交
12
	<description>TDengine JDBC Driver</description>
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66

	<licenses>
		<license>
			<name>GNU AFFERO GENERAL PUBLIC LICENSE Version 3</name>
			<url>https://github.com/taosdata/TDengine/blob/master/LICENSE</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<scm>
		<connection>scm:git:git://github.com/taosdata/TDengine.git</connection>
		<developerConnection>scm:git:git@github.com:taosdata/TDengine.git</developerConnection>
		<url>https://github.com/taosdata/TDengine/tree/master/src/connector/jdbc</url>
		<tag>HEAD</tag>
	</scm>

	<developers>
		<developer>
			<name>taosdata</name>
			<email>support@taosdata.com</email>
			<organization>https://www.taosdata.com/</organization>
			<organizationUrl>https://www.taosdata.com/</organizationUrl>
		</developer>
	</developers>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<java.version>1.8</java.version>

		<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>

		<commons-logging.version>1.1.2</commons-logging.version>
		<commons-lang3.version>3.5</commons-lang3.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>commons-logging</groupId>
			<artifactId>commons-logging</artifactId>
			<version>${commons-logging.version}</version>
			<exclusions>
				<exclusion>
					<groupId>*</groupId>
					<artifactId>*</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-lang3</artifactId>
			<version>${commons-lang3.version}</version>
		</dependency>
	</dependencies>

H
hzcheng 已提交
67 68 69 70 71 72 73 74
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-assembly-plugin</artifactId>
				<version>3.0.0</version>
				<configuration>
					<descriptors>
75
						<!--<descriptor>src/main/assembly/assembly.xml</descriptor>-->
H
hzcheng 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
						<descriptor>src/main/assembly/assembly-jar.xml</descriptor>
					</descriptors>
				</configuration>
				<executions>
					<execution>
						<id>make-assembly</id>
						<phase>package</phase>
						<goals>
							<goal>single</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
92
				<version>${maven-compiler-plugin.version}</version>
H
hzcheng 已提交
93
				<configuration>
94
					<encoding>UTF-8</encoding>
95 96
					<source>${java.version}</source>
					<target>${java.version}</target>
H
hzcheng 已提交
97
					<debug>true</debug>
98
					<showDeprecation>true</showDeprecation>
H
hzcheng 已提交
99 100 101 102
				</configuration>
			</plugin>
		</plugins>
	</build>
103 104


H
hzcheng 已提交
105
</project>