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

    <groupId>com.taosdata.jdbc</groupId>
Z
change  
zyyang 已提交
8
    <artifactId>JDBCDemo</artifactId>
Z
zyyang 已提交
9
    <version>SNAPSHOT</version>
H
hzcheng 已提交
10
    <packaging>jar</packaging>
Z
change  
zyyang 已提交
11

12 13 14 15
    <properties>
        <project.assembly.dir>src/main/resources/assembly</project.assembly.dir>
    </properties>

Z
change  
zyyang 已提交
16 17 18 19
    <dependencies>
        <dependency>
            <groupId>com.taosdata.jdbc</groupId>
            <artifactId>taos-jdbcdriver</artifactId>
20
            <version>2.0.34</version>
Z
change  
zyyang 已提交
21 22 23
        </dependency>
    </dependencies>

H
hzcheng 已提交
24 25
    <build>
        <plugins>
J
johnnyhou327 已提交
26 27 28
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
29
                <version>3.3.0</version>
J
johnnyhou327 已提交
30
                <executions>
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 67 68 69
                    <!-- jdbcDemo -->
                    <execution>
                        <id>JdbcDemo</id>
                        <configuration>
                            <finalName>JdbcDemo</finalName>
                            <archive>
                                <manifest>
                                    <mainClass>com.taosdata.example.JdbcDemo</mainClass>
                                </manifest>
                            </archive>
                            <descriptorRefs>
                                <descriptorRef>jar-with-dependencies</descriptorRef>
                            </descriptorRefs>
                        </configuration>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>

                    <execution>
                        <id>JdbcRestfulDemo</id>
                        <configuration>
                            <finalName>JdbcRestfulDemo</finalName>
                            <archive>
                                <manifest>
                                    <mainClass>com.taosdata.example.JdbcRestfulDemo</mainClass>
                                </manifest>
                            </archive>
                            <descriptorRefs>
                                <descriptorRef>jar-with-dependencies</descriptorRef>
                            </descriptorRefs>
                        </configuration>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>

J
johnnyhou327 已提交
70
                    <execution>
71 72 73 74 75 76 77 78 79 80 81 82
                        <id>SubscribeDemo</id>
                        <configuration>
                            <finalName>SubscribeDemo</finalName>
                            <archive>
                                <manifest>
                                    <mainClass>com.taosdata.example.SubscribeDemo</mainClass>
                                </manifest>
                            </archive>
                            <descriptorRefs>
                                <descriptorRef>jar-with-dependencies</descriptorRef>
                            </descriptorRefs>
                        </configuration>
J
johnnyhou327 已提交
83 84 85 86 87 88 89
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
90

H
hzcheng 已提交
91 92 93 94 95 96
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>8</source>
                    <target>8</target>
97
                    <encoding>UTF-8</encoding>
H
hzcheng 已提交
98 99
                </configuration>
            </plugin>
Z
change  
zyyang 已提交
100

H
hzcheng 已提交
101 102 103
        </plugins>
    </build>

J
johnnyhou327 已提交
104
</project>