1 Star 0 Fork 151

Michealkz / flink-jobs

forked from tenmg / Clink 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 4.94 KB
一键复制 编辑 原始数据 按行查看 历史
<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>
<description>Flink流批一体数据处理快速集成开发框架</description>
<groupId>cn.tenmg</groupId>
<artifactId>flink-jobs</artifactId>
<version>1.5.5</version>
<packaging>pom</packaging>
<modules>
<module>flink-jobs-core</module>
<module>flink-jobs-config</module>
<module>flink-jobs-clients</module>
</modules>
<name>flink-jobs</name>
<url>https://gitee.com/tenmg/flink-jobs</url>
<organization>
<name>10MG</name>
<url>http://www.10mg.cn</url>
</organization>
<developers>
<developer>
<name>June</name>
<email>wjzhao@aliyun.com</email>
<organization>10MG</organization>
</developer>
<developer>
<name>cbb</name>
<email>2545095524@qq.com</email>
<organization>10MG</organization>
</developer>
<developer>
<name>dufeng</name>
<email>dufeng1010@126.com</email>
<organization>10MG</organization>
</developer>
</developers>
<scm>
<connection>scm:git:https://gitee.com/tenmg/flink-jobs.git</connection>
<url>https://gitee.com/tenmg/flink-jobs.git</url>
<developerConnection>scm:git:https://gitee.com/tenmg</developerConnection>
</scm>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<distributionManagement>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<encoding>UTF-8</encoding>
<flink.version>1.16.0</flink.version>
<scala.binary.version>2.12</scala.binary.version>
<slf4j-api.version>2.0.5</slf4j-api.version>
<log4j.version>2.19.0</log4j.version>
<fastjson.version>2.0.20</fastjson.version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Java
1
https://gitee.com/nicecloudcode/flink-jobs.git
git@gitee.com:nicecloudcode/flink-jobs.git
nicecloudcode
flink-jobs
flink-jobs
master

搜索帮助