代码拉取完成,页面将自动刷新
同步操作将从 朱慧培/flink-streaming-platform-web 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?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.streaming.platform.web</groupId>
<artifactId>flink-streaming-platform-web</artifactId>
<packaging>pom</packaging>
<version>1.1</version>
<modules>
<module>flink-streaming-web</module>
<module>flink-streaming-core</module>
<module>deployer</module>
<module>flink-streaming-commom</module>
<module>flink-streaming-validation</module>
<module>flink-streaming-web-config</module>
<module>flink-streaming-web-common</module>
<module>flink-streaming-web-alarm</module>
</modules>
<name>flink-streaming-platform-web</name>
<description>flink-sql流计算平台</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.8.RELEASE</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.test.skip>false</maven.test.skip>
<downloadSources>true</downloadSources>
<java_source_version>1.8</java_source_version>
<java_target_version>1.8</java_target_version>
<file_encoding>UTF-8</file_encoding>
<flink_streaming_version>1.5.0.RELEASE</flink_streaming_version>
<flink.version>1.14.3</flink.version>
<scala.binary.version>2.11</scala.binary.version>
<spring.boot.version>2.2.8.RELEASE</spring.boot.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.streaming.platform.web</groupId>
<artifactId>flink-streaming-commom</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>com.streaming.platform.web</groupId>
<artifactId>flink-streaming-validation</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>com.streaming.platform.web</groupId>
<artifactId>flink-streaming-web-config</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>com.streaming.platform.web</groupId>
<artifactId>flink-streaming-web-alarm</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>com.streaming.platform.web</groupId>
<artifactId>flink-streaming-web-common</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.20</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.3.5</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.47</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.9.9</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.14</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.83</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.2</version>
</dependency>
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<version>2.3.2</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.2</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.5.2</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>${java_source_version}</source>
<target>${java_target_version}</target>
<encoding>${file_encoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<!-- XXXX -->
<!-- 可以自定义的规则文件 -->
<configLocation>checkstyle.xml</configLocation>
<!-- 是否有输出文件 -->
<consoleOutput>true</consoleOutput>
<!-- 编码方式 -->
<encoding>utf-8</encoding>
<!-- 是否因为不符合的规范中断mvn进程 -->
<failsOnError>false</failsOnError>
<failOnViolation>false</failOnViolation>
<linkXRef>false</linkXRef>
<skip>false</skip>
<violationSeverity>warning</violationSeverity>
</configuration>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- <reporting>-->
<!-- <plugins>-->
<!-- <plugin>-->
<!-- <groupId>org.apache.maven.plugins</groupId>-->
<!-- <artifactId>maven-checkstyle-plugin</artifactId>-->
<!-- <version>3.0.0</version>-->
<!-- <reportSets>-->
<!-- <reportSet>-->
<!-- <reports>-->
<!-- <report>check</report>-->
<!-- </reports>-->
<!-- </reportSet>-->
<!-- </reportSets>-->
<!-- </plugin>-->
<!-- </plugins>-->
<!-- </reporting>-->
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。