| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| |
| --> |
| <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"> |
| <parent> |
| <artifactId>iotdb-parent</artifactId> |
| <groupId>org.apache.iotdb</groupId> |
| <version>2.0.8-SNAPSHOT</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>com.timecho.iotdb</groupId> |
| <artifactId>timecho-server</artifactId> |
| <properties> |
| <iotdb.it.skip>${iotdb.test.skip}</iotdb.it.skip> |
| <iotdb.test.skip>false</iotdb.test.skip> |
| <iotdb.ut.skip>${iotdb.test.skip}</iotdb.ut.skip> |
| </properties> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.iotdb</groupId> |
| <artifactId>iotdb-server</artifactId> |
| <version>2.0.8-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>com.timecho.iotdb</groupId> |
| <artifactId>iotdb-thrift-commons</artifactId> |
| <version>2.0.8-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.iotdb</groupId> |
| <artifactId>iotdb-thrift-confignode</artifactId> |
| <version>2.0.8-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.tsfile</groupId> |
| <artifactId>tsfile</artifactId> |
| <version>${tsfile.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.tsfile</groupId> |
| <artifactId>common</artifactId> |
| <version>${tsfile.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.timecho.iotdb</groupId> |
| <artifactId>service-rpc</artifactId> |
| <version>2.0.8-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>com.timecho.iotdb</groupId> |
| <artifactId>timechodb-thrift</artifactId> |
| <version>2.0.8-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.iotdb</groupId> |
| <artifactId>node-commons</artifactId> |
| <version>2.0.8-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.iotdb</groupId> |
| <artifactId>external-api</artifactId> |
| <version>2.0.8-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>com.timecho.iotdb</groupId> |
| <artifactId>object-storage</artifactId> |
| <version>2.0.8-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.iotdb</groupId> |
| <artifactId>metrics-interface</artifactId> |
| <version>2.0.8-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.iotdb</groupId> |
| <artifactId>udf-api</artifactId> |
| <version>2.0.8-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.thrift</groupId> |
| <artifactId>libthrift</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.powermock</groupId> |
| <artifactId>powermock-core</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.powermock</groupId> |
| <artifactId>powermock-module-junit4</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.powermock</groupId> |
| <artifactId>powermock-api-mockito2</artifactId> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>build-helper-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>add-i18n-source</id> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>add-source</goal> |
| </goals> |
| <configuration> |
| <sources> |
| <source>${project.basedir}/src/main/i18n/${i18n.locale}</source> |
| </sources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <skipTests>${iotdb.ut.skip}</skipTests> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <configuration> |
| <ignoredDependencies> |
| <ignoredDependency>org.apache.tsfile:common</ignoredDependency> |
| <ignoredDependency>org.apache.iotdb:udf-api</ignoredDependency> |
| <ignoredDependency>commons-io:commons-io</ignoredDependency> |
| </ignoredDependencies> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| <profiles> |
| <profile> |
| <id>skipIoTDBTests</id> |
| <activation> |
| <property> |
| <name>skipTests</name> |
| <value>true</value> |
| </property> |
| </activation> |
| <properties> |
| <iotdb.it.skip>true</iotdb.it.skip> |
| <iotdb.test.skip>true</iotdb.test.skip> |
| <iotdb.ut.skip>true</iotdb.ut.skip> |
| </properties> |
| </profile> |
| <profile> |
| <id>skipUT_IoTDB_Tests</id> |
| <activation> |
| <property> |
| <name>skipUTs</name> |
| <value>true</value> |
| </property> |
| </activation> |
| <properties> |
| <iotdb.ut.skip>true</iotdb.ut.skip> |
| </properties> |
| </profile> |
| <profile> |
| <id>only_test_server</id> |
| <activation> |
| <property> |
| <name>iotdb.test.only</name> |
| <value>true</value> |
| </property> |
| </activation> |
| <properties> |
| <iotdb.it.skip>false</iotdb.it.skip> |
| <iotdb.test.skip>false</iotdb.test.skip> |
| <iotdb.ut.skip>false</iotdb.ut.skip> |
| </properties> |
| </profile> |
| </profiles> |
| </project> |