使用Scala编写flink算子时的pom文件设置

Scala与flink版本

Scala:2.12.11
flink:1.10.0

本文pom引入的插件都时以上两个软件的版本,如果版本与本文有差异,请自行去maven中央仓库查找对应版本

查找示例:

使用Scala编写flink算子时的pom文件设置_第1张图片
使用Scala编写flink算子时的pom文件设置_第2张图片

pom文件



    4.0.0

    com.ddyii.flink
    flinkScipt
    1.0-SNAPSHOT

    
        
        
            org.apache.flink
            flink-scala_2.12
            1.10.0
        
        
        
            org.apache.flink
            flink-streaming-scala_2.12
            1.10.0
            provided
        
    

    

        
            
                
                net.alchim31.maven
                scala-maven-plugin
                4.3.1
                
                    
                        
                            testCompile
                        
                    
                
            

            
                
                org.apache.maven.plugins
                maven-assembly-plugin
                3.2.0
                
                    
                        jar-with-dependencies
                    
                
                
                    
                        make-assembly
                        package
                        
                            single
                        
                    
                
            
        
    

你可能感兴趣的:(使用Scala编写flink算子时的pom文件设置)