Skip to content

first #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 33 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
795a6ad
rebase了一下,压缩仓库的大小
confucianzuoyuan Apr 29, 2019
b355d44
update
confucianzuoyuan Apr 18, 2020
e3e5e36
update
confucianzuoyuan Apr 21, 2020
d5f33c0
md
confucianzuoyuan May 20, 2020
dee302d
非常非常关键的改变!
confucianzuoyuan May 25, 2020
b8ba992
udpate
confucianzuoyuan May 26, 2020
3a002cd
update
confucianzuoyuan Jul 28, 2020
d961dca
update
confucianzuoyuan Aug 5, 2020
3e2ae12
update
confucianzuoyuan Aug 6, 2020
3d93c64
update
confucianzuoyuan Aug 6, 2020
0365f76
update
confucianzuoyuan Aug 6, 2020
4079638
update
confucianzuoyuan Aug 6, 2020
d5c6c5e
update
confucianzuoyuan Aug 6, 2020
6aba8c4
update
confucianzuoyuan Aug 7, 2020
993d0a9
update
confucianzuoyuan Aug 7, 2020
b4cde65
update
confucianzuoyuan Aug 9, 2020
3ad0c0a
update
confucianzuoyuan Aug 9, 2020
bcf63d0
update
confucianzuoyuan Aug 9, 2020
ad406a8
update
confucianzuoyuan Aug 9, 2020
c143395
udpate
confucianzuoyuan Aug 17, 2020
11f3996
update
confucianzuoyuan Aug 19, 2020
ef4371c
udpate
confucianzuoyuan Sep 8, 2020
fffc535
flink 0317
confucianzuoyuan Sep 9, 2020
79a9709
udpate
confucianzuoyuan Sep 9, 2020
a17d5fb
udpate
confucianzuoyuan Sep 10, 2020
fd67169
update
confucianzuoyuan Sep 10, 2020
820a38e
update
confucianzuoyuan Sep 11, 2020
18b8fd8
update
confucianzuoyuan Sep 11, 2020
45b4def
update
confucianzuoyuan Sep 11, 2020
06db558
udpate
confucianzuoyuan Sep 11, 2020
174e5fb
update
confucianzuoyuan Sep 11, 2020
08d3e78
upate
confucianzuoyuan Sep 11, 2020
0a0c115
update
confucianzuoyuan Sep 11, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.DS_Store
target/
.classpath
.idea/
.project
.settings/
.vscode/
*.iml
.metals/
*.aux
*.log
*.toc
*.synctex.gz
_minted-尚硅谷Flink教程/
*.out
164 changes: 164 additions & 0 deletions Flink0105/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.atguigu</groupId>
<artifactId>Flink0105</artifactId>
<name>Flink Quickstart Job</name>
<version>1.0</version>
<url>http://www.myorganization.org</url>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<exclude>org.apache.flink:force-shading</exclude>
<exclude>com.google.code.findbugs:jsr305</exclude>
<exclude>org.slf4j:*</exclude>
<exclude>log4j:*</exclude>
</excludes>
</artifactSet>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer>
<mainClass>com.atguigu.day1.WordCountFromBatch</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>3.2.2</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<args>
<arg>-nobootcp</arg>
</args>
</configuration>
</plugin>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.8</version>
<configuration>
<downloadSources>true</downloadSources>
<projectnatures>
<projectnature>org.scala-ide.sdt.core.scalanature</projectnature>
<projectnature>org.eclipse.jdt.core.javanature</projectnature>
</projectnatures>
<buildcommands>
<buildcommand>org.scala-ide.sdt.core.scalabuilder</buildcommand>
</buildcommands>
<classpathContainers>
<classpathContainer>org.scala-ide.sdt.launching.SCALA_CONTAINER</classpathContainer>
<classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
</classpathContainers>
<excludes>
<exclude>org.scala-lang:scala-library</exclude>
<exclude>org.scala-lang:scala-compiler</exclude>
</excludes>
<sourceIncludes>
<sourceInclude>**/*.scala</sourceInclude>
<sourceInclude>**/*.java</sourceInclude>
</sourceIncludes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/main/scala</source>
</sources>
</configuration>
</execution>
<execution>
<id>add-test-source</id>
<phase>generate-test-sources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>src/test/scala</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots />
<id>apache.snapshots</id>
<name>Apache Development Snapshot Repository</name>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.7</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<properties>
<scala.version>2.11.12</scala.version>
<scala.binary.version>2.11</scala.binary.version>
<flink.version>1.10.0</flink.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
Loading