blob: 2e01603380a4db266e18b1dc4faf720423ab2f06 [file] [log] [blame]
<?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:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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.inlong</groupId>
<artifactId>inlong</artifactId>
<version>1.3.0</version>
</parent>
<groupId>org.apache.inlong</groupId>
<artifactId>inlong-tubemq</artifactId>
<packaging>pom</packaging>
<name>Apache InLong - TubeMQ</name>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:apache/inlong.git</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/inlong.git</developerConnection>
<url>scm:git:git@github.com:apache/inlong.git</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub Issue</system>
<url>https://github.com/apache/inlong/issues</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>InLong Developer List</name>
<post>dev@inlong.apache.org</post>
<subscribe>dev-subscribe@inlong.apache.org</subscribe>
<unsubscribe>dev-unsubscribe@inlong.apache.org</unsubscribe>
</mailingList>
</mailingLists>
<modules>
<module>tubemq-core</module>
<module>tubemq-client</module>
<module>tubemq-server</module>
<module>tubemq-example</module>
<module>tubemq-connectors</module>
<module>tubemq-manager</module>
<module>tubemq-docker</module>
</modules>
<repositories>
<!-- For the BDB JE dependency -->
<repository>
<id>berkeleydb-je</id>
<name>berkeleydb-je</name>
<url>https://download.oracle.com/maven/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.5</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<!-- attached to Maven test phase -->
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Make a jar and put the sources in the jar.
In the parent pom, so submodules will do the right thing. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${plugin.maven.source}</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>prepare-package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
<configuration>
<includePom>true</includePom>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${plugin.surefire.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${build.helper.maven.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${exec.maven.version}</version>
</plugin>
</plugins>
</build>
</project>