188 lines
7.0 KiB
XML
188 lines
7.0 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.iotdb</groupId>
|
|
<artifactId>iotdb-client</artifactId>
|
|
<version>1.3.3</version>
|
|
</parent>
|
|
<artifactId>service-rpc</artifactId>
|
|
<name>IoTDB: Client: Service-RPC</name>
|
|
<description>RPC framework for client and server.</description>
|
|
<properties>
|
|
<rpc.it.skip>${rpc.test.skip}</rpc.it.skip>
|
|
<rpc.test.skip>false</rpc.test.skip>
|
|
<rpc.ut.skip>${rpc.test.skip}</rpc.ut.skip>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.tsfile</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>${tsfile.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.iotdb</groupId>
|
|
<artifactId>pipe-api</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tsfile</groupId>
|
|
<artifactId>tsfile</artifactId>
|
|
<version>${tsfile.version}</version>
|
|
<!-- we want to reduce the size of JDBC -->
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>*</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.iotdb</groupId>
|
|
<artifactId>iotdb-thrift</artifactId>
|
|
<version>1.3.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.iotdb</groupId>
|
|
<artifactId>iotdb-thrift-commons</artifactId>
|
|
<version>1.3.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.thrift</groupId>
|
|
<artifactId>libthrift</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.xerial.snappy</groupId>
|
|
<artifactId>snappy-java</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<!--
|
|
Generate an OSGI compatible MANIFEST file.
|
|
-->
|
|
<plugin>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
<configuration>
|
|
<exportScr>true</exportScr>
|
|
<instructions>
|
|
<_include>-bnd.bnd</_include>
|
|
<_removeheaders>Bnd-LastModified,Built-By</_removeheaders>
|
|
<Embed-Dependency>dependencies</Embed-Dependency>
|
|
</instructions>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>bundle-manifest</id>
|
|
<goals>
|
|
<goal>manifest</goal>
|
|
</goals>
|
|
<phase>process-classes</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<!--
|
|
Use the MANIFEST file generated by the maven-bundle-plugin.
|
|
-->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<!--using `mvn test` to run UT, `mvn verify` to run ITs
|
|
Reference: https://antoniogoncalves.org/2012/12/13/lets-turn-integration-tests-with-maven-to-a-first-class-citizen/-->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<skipTests>${rpc.ut.skip}</skipTests>
|
|
<reuseForks>false</reuseForks>
|
|
<runOrder>random</runOrder>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
<configuration>
|
|
<skipTests>${rpc.test.skip}</skipTests>
|
|
<skipITs>${rpc.it.skip}</skipITs>
|
|
<reuseForks>false</reuseForks>
|
|
<runOrder>random</runOrder>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>run-integration-tests</id>
|
|
<goals>
|
|
<goal>integration-test</goal>
|
|
<goal>verify</goal>
|
|
</goals>
|
|
<phase>integration-test</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<profiles>
|
|
<profile>
|
|
<id>skipTsfileTests</id>
|
|
<activation>
|
|
<property>
|
|
<name>skipTests</name>
|
|
<value>true</value>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<rpc.it.skip>true</rpc.it.skip>
|
|
<rpc.test.skip>true</rpc.test.skip>
|
|
<rpc.ut.skip>true</rpc.ut.skip>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>skipUT_ServiceRPC_Tests</id>
|
|
<activation>
|
|
<property>
|
|
<name>skipUTs</name>
|
|
<value>true</value>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<rpc.ut.skip>true</rpc.ut.skip>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|