14 Star 67 Fork 28

Gitee 极速下载 / Alink

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/alibaba/Alink
克隆/下载
pom.xml 12.50 KB
一键复制 编辑 原始数据 按行查看 历史
shaomengwang 提交于 2022-10-31 17:08 . Merge the dev branch.
<?xml version="1.0" encoding="UTF-8"?>
<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.alibaba.alink</groupId>
<artifactId>alink</artifactId>
<packaging>pom</packaging>
<version>1.6-SNAPSHOT</version>
<name>alink</name>
<description>Alink is the Machine Learning algorithm platform based on Flink, developed by the PAI team of Alibaba computing platform.</description>
<url>https://github.com/alibaba/Alink</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Alibaba Group</name>
<url>https://github.com/alibaba</url>
</organization>
<developers>
<developer>
<name>xuyang1706</name>
<email>xuyang1706@gmail.com</email>
</developer>
<developer>
<name>chengscu</name>
<email>chengscu@qq.com</email>
</developer>
<developer>
<name>Fanoid</name>
<email>hongfanxo@gmail.com</email>
</developer>
<developer>
<name>hapsunday</name>
<email>hapsunday@gmail.com</email>
</developer>
<developer>
<name>liulfy</name>
<email>2691140740@qq.com</email>
</developer>
<developer>
<name>lqb11</name>
<email>liqianbing11@163.com</email>
</developer>
<developer>
<name>Xiafei Qiu</name>
<email>qiuxiafei@gmail.com</email>
</developer>
<developer>
<name>shaomengwang</name>
<email>shaomeng.wang.w@gmail.com</email>
</developer>
<developer>
<name>cainingnk</name>
<email>cainingnk@gmail.com</email>
</developer>
<developer>
<name>weibo.zwb</name>
<email>weibo.zwb@alibaba-inc.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:alibaba/Alink.git</connection>
<developerConnection>scm:git:ssh://github.com:alibaba/Alink.git</developerConnection>
<url>https://github.com/alibaba/Alink</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<alink.flink.major.version>1.13</alink.flink.major.version>
<flink.version>1.13.0</flink.version>
<alink.scala.major.version>2.11</alink.scala.major.version>
<scala.version>2.11.12</scala.version>
<alink.mvn.apache-httpclient.version>4.5.3</alink.mvn.apache-httpclient.version>
<alink.mvn.gson.version>2.8.2</alink.mvn.gson.version>
<apache.common.lang3.version>3.3.2</apache.common.lang3.version>
<apache.common.io.version>2.4</apache.common.io.version>
<breeze.version>0.13.1</breeze.version>
<junit.version>4.12</junit.version>
<slf4j.version>1.7.15</slf4j.version>
<log4j.version>2.17.1</log4j.version>
<netlib.java.version>1.1.2</netlib.java.version>
<skip.tf.predictor.ut>true</skip.tf.predictor.ut>
<maven.surefire.plugin.version>2.22.0</maven.surefire.plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.fommil.netlib</groupId>
<artifactId>all</artifactId>
<type>pom</type>
<version>${netlib.java.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<!-- API bridge between log4j 1 and 2 -->
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<!-- remove log4j deps -->
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-test-utils_2.11</artifactId>
<version>${flink.version}</version>
<!-- exclude the deps of curator for updating the log4j-->
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- removing log4j deps ends here -->
</dependencies>
</dependencyManagement>
<modules>
<module>test_utils</module>
<module>core</module>
<module>dl_predictors</module>
<module>connectors</module>
<module>examples</module>
<module>python</module>
<module>plugins</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>dev</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>env.type</name>
<value>dev</value>
</property>
</activation>
</profile>
<profile>
<id>release</id>
<activation>
<property>
<name>env.type</name>
<value>release</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<additionalOptions>-Xdoclint:none</additionalOptions>
<additionalJOption>-Xdoclint:none</additionalJOption>
<show>public</show>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<links>
<link>http://docs.oracle.com/javase/6/docs/api</link>
</links>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.2.7</version>
<configuration>
<embedBuildProfileDependencies>true</embedBuildProfileDependencies>
<flattenDependencyMode>direct</flattenDependencyMode>
<flattenMode>oss</flattenMode>
<updatePomFile>true</updatePomFile>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</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>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Java
1
https://gitee.com/mirrors/Alink.git
git@gitee.com:mirrors/Alink.git
mirrors
Alink
Alink
master

搜索帮助