167 lines
5.9 KiB
XML
167 lines
5.9 KiB
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
|
|
<!--
|
|
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</groupId>
|
|
<artifactId>apache</artifactId>
|
|
<version>18</version>
|
|
</parent>
|
|
|
|
<groupId>org.apache.doris</groupId>
|
|
<artifactId>fe-plugins</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<name>Doris Plugin Parent POM</name>
|
|
<url>https://doris.apache.org/</url>
|
|
<licenses>
|
|
<license>
|
|
<name>Apache 2.0 License</name>
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<scm>
|
|
<connection>scm:git:git@github.com:apache/incubator-doris.git</connection>
|
|
<developerConnection>scm:git:git@github.com:apache/incubator-doris.git</developerConnection>
|
|
<url>scm:git:git@github.com:apache/incubator-doris.git</url>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/apache/incubator-doris/issues</url>
|
|
</issueManagement>
|
|
|
|
<mailingLists>
|
|
<mailingList>
|
|
<name>Dev Mailing List</name>
|
|
<post>dev@doris.apache.org</post>
|
|
<subscribe>dev-subscribe@doris.apache.org</subscribe>
|
|
<unsubscribe>dev-unsubscribe@doris.apache.org</unsubscribe>
|
|
</mailingList>
|
|
|
|
<mailingList>
|
|
<name>Commits Mailing List</name>
|
|
<post>commits@doris.apache.org</post>
|
|
<subscribe>commits-subscribe@doris.apache.org</subscribe>
|
|
<unsubscribe>commits-unsubscribe@doris.apache.org</unsubscribe>
|
|
</mailingList>
|
|
</mailingLists>
|
|
<modules>
|
|
<module>auditdemo</module>
|
|
<module>auditloader</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<doris.home>${env.DORIS_HOME}</doris.home>
|
|
<log4j2.version>2.17.0</log4j2.version>
|
|
<doris.version>>0.15-SNAPSHOT</doris.version>
|
|
</properties>
|
|
<profiles>
|
|
<!-- for custom internal repository -->
|
|
<profile>
|
|
<id>custom-env</id>
|
|
<activation>
|
|
<property>
|
|
<name>env.CUSTOM_MAVEN_REPO</name>
|
|
</property>
|
|
</activation>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>custom-nexus</id>
|
|
<url>${env.CUSTOM_MAVEN_REPO}</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>custom-nexus</id>
|
|
<url>${env.CUSTOM_MAVEN_REPO}</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.doris</groupId>
|
|
<artifactId>fe</artifactId>
|
|
<version>0.15-SNAPSHOT</version>
|
|
<scope>system</scope>
|
|
<systemPath>${doris.home}/fe/fe-core/target/palo-fe.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.doris</groupId>
|
|
<artifactId>fe-common</artifactId>
|
|
<scope>system</scope>
|
|
<systemPath>${doris.home}/fe/fe-common/target/doris-fe-common.jar</systemPath>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api -->
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-api</artifactId>
|
|
<version>${log4j2.version}</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-core</artifactId>
|
|
<version>${log4j2.version}</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl -->
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
|
<version>${log4j2.version}</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/log4j/log4j -->
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.17</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|