| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ~ Copyright 2019 WeBank |
| ~ Licensed 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> |
| |
| <groupId>com.webank.wedatasphere.linkis</groupId> |
| <artifactId>linkis</artifactId> |
| <version>1.0.0-RC1</version> |
| <packaging>pom</packaging> |
| |
| <name>Linkis Project Parent POM</name> |
| <description>Linkis helps easily connect to various back-end computation/storage engines</description> |
| <url>https://github.com/WeBankFinTech/Linkis/wiki</url> |
| |
| <licenses> |
| <license> |
| <name>Apache 2.0 License</name> |
| <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> |
| <distribution>repo</distribution> |
| </license> |
| </licenses> |
| |
| <scm> |
| <connection>scm:git:git@github.com:WeBankFinTech/Linkis.git</connection> |
| <developerConnection>scm:git:https://github.com/WeBankFinTech/Linkis.git</developerConnection> |
| <url>scm:git:git@github.com:WeBankFinTech/Linkis.git</url> |
| <tag>HEAD</tag> |
| </scm> |
| |
| <developers> |
| |
| </developers> |
| |
| <modules> |
| |
| <module>linkis-commons</module> |
| |
| <module>assembly/public-module</module> |
| |
| <module>linkis-spring-cloud-services</module> |
| |
| <module>linkis-public-enhancements</module> |
| |
| <module>linkis-orchestrator</module> |
| |
| <module>linkis-computation-governance</module> |
| |
| <module>linkis-engineconn-plugins</module> |
| |
| <module>assembly</module> |
| |
| </modules> |
| |
| <properties> |
| <linkis.version>1.0.0-RC1</linkis.version> |
| <hadoop.version>2.7.2</hadoop.version> |
| <spring.eureka.version>2.2.6.RELEASE</spring.eureka.version> |
| <spring.feign.version>2.2.6.RELEASE</spring.feign.version> |
| <spring.boot.version>2.3.7.RELEASE</spring.boot.version> |
| <spring.cloud.version>2.2.6.RELEASE</spring.cloud.version> |
| <guava.version>25.1-jre</guava.version> |
| <gson.version>2.8.5</gson.version> |
| <fasterxml.jackson.version>2.11.3</fasterxml.jackson.version> |
| <scala.version>2.11.12</scala.version> |
| <jdk.compile.version>1.8</jdk.compile.version> |
| <plugin.scala.version>2.15.2</plugin.scala.version> |
| <scala.binary.version>2.11</scala.binary.version> |
| <netty.version>4.1.44.Final</netty.version> |
| <json4s.version>3.5.3</json4s.version> |
| <jersey.version>2.16</jersey.version> |
| <jersey.servlet.version>2.23.1</jersey.servlet.version> |
| <jetty.version>9.4.20.v20190813</jetty.version> |
| <httpclient.version>4.5.4</httpclient.version> |
| <httpmime.version>4.5.4</httpmime.version> |
| <slf4j.version>1.7.30</slf4j.version> |
| <maven.version>3.3.3</maven.version> |
| <xstream.core.version>1.4.15</xstream.core.version> |
| <spring.version>5.2.12.RELEASE</spring.version> |
| <spring.security.cryto.version>5.3.6.RELEASE</spring.security.cryto.version> |
| <reflections.version>0.9.10</reflections.version> |
| <mybatis-plus.boot.starter.version>3.4.1</mybatis-plus.boot.starter.version> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <javassist.version>3.19.0-GA</javassist.version> |
| <commons-collections.version>3.2.2</commons-collections.version> |
| <commons-lang.version>2.6</commons-lang.version> |
| <commons-io.version>2.4</commons-io.version> |
| </properties> |
| |
| <dependencyManagement> |
| <dependencies> |
| |
| <dependency> |
| <groupId>com.webank.wedatasphere.linkis</groupId> |
| <artifactId>linkis-module</artifactId> |
| <exclusions> |
| <exclusion> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-tomcat</artifactId> |
| </exclusion> |
| <exclusion> |
| <artifactId>hibernate-validator</artifactId> |
| <groupId>org.hibernate.validator</groupId> |
| </exclusion> |
| </exclusions> |
| <version>${linkis.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.webank.wedatasphere.linkis</groupId> |
| <artifactId>linkis-common</artifactId> |
| <version>${linkis.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.webank.wedatasphere.linkis</groupId> |
| <artifactId>linkis-mybatis</artifactId> |
| <version>${linkis.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.springframework.cloud</groupId> |
| <artifactId>spring-cloud-dependencies</artifactId> |
| <version>Hoxton.SR1</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.google.code.gson</groupId> |
| <artifactId>gson</artifactId> |
| <version>${gson.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.thoughtworks.xstream</groupId> |
| <artifactId>xstream</artifactId> |
| <version>${xstream.core.version}</version> |
| </dependency> |
| |
| <!-- scala version --> |
| <dependency> |
| <groupId>org.scala-lang</groupId> |
| <artifactId>scala-library</artifactId> |
| <version>${scala.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.scala-lang</groupId> |
| <artifactId>scala-compiler</artifactId> |
| <version>${scala.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.scala-lang</groupId> |
| <artifactId>scala-reflect</artifactId> |
| <version>${scala.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.scala-lang</groupId> |
| <artifactId>scalap</artifactId> |
| <version>${scala.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-lang</groupId> |
| <artifactId>commons-lang</artifactId> |
| <version>${commons-lang.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava</artifactId> |
| <version>${guava.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>${slf4j.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-collections</groupId> |
| <artifactId>commons-collections</artifactId> |
| <version>${commons-collections.version}</version> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| |
| |
| <profiles> |
| |
| <profile> |
| <id>release</id> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-source-plugin</artifactId> |
| <version>3.1.0</version> |
| <configuration> |
| <attach>true</attach> |
| </configuration> |
| <executions> |
| <execution> |
| <id>create-source-jar</id> |
| <goals> |
| <goal>jar-no-fork</goal> |
| <goal>test-jar-no-fork</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-deploy-plugin</artifactId> |
| <version>3.0.0-M1</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>3.0.1</version> |
| <executions> |
| <execution> |
| <id>attach-javadocs</id> |
| <goals> |
| <goal>jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-gpg-plugin</artifactId> |
| <version>1.5</version> |
| <executions> |
| <execution> |
| <id>sign-artifacts</id> |
| <phase>verify</phase> |
| <goals> |
| <goal>sign</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| |
| </profiles> |
| |
| |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-deploy-plugin</artifactId> |
| <version>2.8.2</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-enforcer-plugin</artifactId> |
| <version>1.4.1</version> |
| <executions> |
| <execution> |
| <id>enforce-versions</id> |
| <goals> |
| <goal>enforce</goal> |
| </goals> |
| <configuration> |
| <rules> |
| <requireMavenVersion> |
| <version>${maven.version}</version> |
| </requireMavenVersion> |
| <requireJavaVersion> |
| <version>${java.version}</version> |
| </requireJavaVersion> |
| <bannedDependencies> |
| <excludes> |
| <exclude>org.jboss.netty</exclude> |
| </excludes> |
| <searchTransitive>true</searchTransitive> |
| </bannedDependencies> |
| </rules> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>2.5.1</version> |
| <configuration> |
| <source>${jdk.compile.version}</source> |
| <target>${jdk.compile.version}</target> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-site-plugin</artifactId> |
| <version>3.3</version> |
| </plugin> |
| <plugin> |
| <groupId>net.alchim31.maven</groupId> |
| <artifactId>scala-maven-plugin</artifactId> |
| <version>3.2.2</version> |
| <executions> |
| <execution> |
| <id>eclipse-add-source</id> |
| <goals> |
| <goal>add-source</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>scala-compile-first</id> |
| <phase>process-resources</phase> |
| <goals> |
| <goal>compile</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>scala-test-compile-first</id> |
| <phase>process-test-resources</phase> |
| <goals> |
| <goal>testCompile</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>attach-scaladocs</id> |
| <phase>verify</phase> |
| <goals> |
| <goal>doc-jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <scalaVersion>${scala.version}</scalaVersion> |
| <recompileMode>incremental</recompileMode> |
| <useZincServer>true</useZincServer> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <version>2.6</version> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| </project> |