<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.  The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License.  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied.  See the License for the
specific language governing permissions and limitations
under the License.
-->
<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>

	<parent>
		<groupId>org.apache.flink</groupId>
		<artifactId>flink-examples</artifactId>
		<version>1.20.0-h0.cbu.mrs.360.r18</version>
	</parent>

	<artifactId>flink-examples-batch</artifactId>
	<name>Flink : Examples : Batch</name>
	<packaging>jar</packaging>

	<dependencies>
		<dependency>
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-java</artifactId>
			<version>${project.version}</version>
		</dependency>

		<dependency>
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-clients</artifactId>
			<version>${project.version}</version>
		</dependency>
	</dependencies>


	<build>
		<plugins>

			<!-- create the example JAR files -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<executions>

					<!-- KMeans -->
					<execution>
						<id>KMeans</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>

						<configuration>
							<classifier>KMeans</classifier>

							<archive>
								<manifestEntries>
									<program-class>org.apache.flink.examples.java.clustering.KMeans</program-class>
								</manifestEntries>
							</archive>

							<includes>
								<include>**/java/clustering/KMeans.class</include>
								<include>**/java/clustering/KMeans$*.class</include>
								<include>**/java/clustering/util/KMeansDataGenerator.class</include>
								<include>**/java/clustering/util/KMeansData.class</include>
								<include>**/java/util/DataSetDeprecationInfo.class</include>
								<include>META-INF/LICENSE</include>
								<include>META-INF/NOTICE</include>
							</includes>
						</configuration>
					</execution>

					<!-- Transitive Closure -->
					<execution>
						<id>TransitiveClosure</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<classifier>TransitiveClosure</classifier>

							<archive>
								<manifestEntries>
									<program-class>org.apache.flink.examples.java.graph.TransitiveClosureNaive</program-class>
								</manifestEntries>
							</archive>

							<includes>
								<include>**/java/graph/TransitiveClosureNaive.class</include>
								<include>**/java/graph/TransitiveClosureNaive$*.class</include>
								<include>**/java/graph/util/ConnectedComponentsData.class</include>
								<include>**/java/util/DataSetDeprecationInfo.class</include>
								<include>META-INF/LICENSE</include>
								<include>META-INF/NOTICE</include>
							</includes>
						</configuration>
					</execution>

					<!-- Connected Components -->
					<execution>
						<id>ConnectedComponents</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<classifier>ConnectedComponents</classifier>

							<archive>
								<manifestEntries>
									<program-class>org.apache.flink.examples.java.graph.ConnectedComponents</program-class>
								</manifestEntries>
							</archive>

							<includes>
								<include>**/java/graph/ConnectedComponents.class</include>
								<include>**/java/graph/ConnectedComponents$*.class</include>
								<include>**/java/graph/util/ConnectedComponentsData.class</include>
								<include>**/java/util/DataSetDeprecationInfo.class</include>
								<include>META-INF/LICENSE</include>
								<include>META-INF/NOTICE</include>
							</includes>
						</configuration>
					</execution>

					<!-- EnumTriangles Basic -->
					<execution>
						<id>EnumTriangles</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<classifier>EnumTriangles</classifier>

							<archive>
								<manifestEntries>
									<program-class>org.apache.flink.examples.java.graph.EnumTriangles</program-class>
								</manifestEntries>
							</archive>

							<includes>
								<include>**/java/graph/EnumTriangles.class</include>
								<include>**/java/graph/EnumTriangles$*.class</include>
								<include>**/java/graph/util/EnumTrianglesDataTypes.class</include>
								<include>**/java/graph/util/EnumTrianglesDataTypes$*.class</include>
								<include>**/java/graph/util/EnumTrianglesData.class</include>
								<include>**/java/util/DataSetDeprecationInfo.class</include>
								<include>META-INF/LICENSE</include>
								<include>META-INF/NOTICE</include>
							</includes>
						</configuration>
					</execution>

					<!-- PageRank -->
					<execution>
						<id>PageRank</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<classifier>PageRank</classifier>

							<archive>
								<manifestEntries>
									<program-class>org.apache.flink.examples.java.graph.PageRank</program-class>
								</manifestEntries>
							</archive>

							<includes>
								<include>**/java/graph/PageRank.class</include>
								<include>**/java/graph/PageRank$*.class</include>
								<include>**/java/graph/util/PageRankData.class</include>
								<include>**/java/util/DataSetDeprecationInfo.class</include>
								<include>META-INF/LICENSE</include>
								<include>META-INF/NOTICE</include>
							</includes>
						</configuration>
					</execution>

					<!-- WebLogAnalysis -->
					<execution>
						<id>WebLogAnalysis</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<classifier>WebLogAnalysis</classifier>

							<archive>
								<manifestEntries>
									<program-class>org.apache.flink.examples.java.relational.WebLogAnalysis</program-class>
								</manifestEntries>
							</archive>

							<includes>
								<include>**/java/relational/WebLogAnalysis.class</include>
								<include>**/java/relational/WebLogAnalysis$*.class</include>
								<include>**/java/relational/util/WebLogData.class</include>
								<include>**/java/relational/util/WebLogDataGenerator.class</include>
								<include>**/java/util/DataSetDeprecationInfo.class</include>
								<include>META-INF/LICENSE</include>
								<include>META-INF/NOTICE</include>
							</includes>
						</configuration>
					</execution>

					<!-- WordCount -->
					<execution>
						<id>WordCount</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<classifier>WordCount</classifier>

							<archive>
								<manifestEntries>
									<program-class>org.apache.flink.examples.java.wordcount.WordCount</program-class>
								</manifestEntries>
							</archive>

							<includes>
								<include>**/java/wordcount/WordCount.class</include>
								<include>**/java/wordcount/WordCount$*.class</include>
								<include>**/java/wordcount/util/WordCountData.class</include>
								<include>**/java/util/DataSetDeprecationInfo.class</include>
								<include>META-INF/LICENSE</include>
								<include>META-INF/NOTICE</include>
							</includes>
						</configuration>
					</execution>

					<!-- Distributed Copy -->
					<execution>
						<id>DistCp</id>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<classifier>DistCp</classifier>

							<archive>
								<manifestEntries>
									<program-class>org.apache.flink.examples.java.distcp.DistCp</program-class>
								</manifestEntries>
							</archive>

							<includes>
								<include>**/java/distcp/*</include>
								<include>**/java/util/DataSetDeprecationInfo.class</include>
								<include>META-INF/LICENSE</include>
								<include>META-INF/NOTICE</include>
							</includes>
						</configuration>
					</execution>
				</executions>
			</plugin>

			<!--simplify the name of example JARs for build-target/examples -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-antrun-plugin</artifactId>
				<executions>
					<execution>
						<id>rename</id>
						<configuration>
							<target>
								<copy file="${project.basedir}/target/flink-examples-batch-${project.version}-KMeans.jar" tofile="${project.basedir}/target/KMeans.jar" />
								<copy file="${project.basedir}/target/flink-examples-batch-${project.version}-ConnectedComponents.jar" tofile="${project.basedir}/target/ConnectedComponents.jar" />
								<copy file="${project.basedir}/target/flink-examples-batch-${project.version}-EnumTriangles.jar" tofile="${project.basedir}/target/EnumTriangles.jar" />
								<copy file="${project.basedir}/target/flink-examples-batch-${project.version}-PageRank.jar" tofile="${project.basedir}/target/PageRank.jar" />
								<copy file="${project.basedir}/target/flink-examples-batch-${project.version}-TransitiveClosure.jar" tofile="${project.basedir}/target/TransitiveClosure.jar" />
								<copy file="${project.basedir}/target/flink-examples-batch-${project.version}-WebLogAnalysis.jar" tofile="${project.basedir}/target/WebLogAnalysis.jar" />
								<copy file="${project.basedir}/target/flink-examples-batch-${project.version}-WordCount.jar" tofile="${project.basedir}/target/WordCount.jar" />
								<copy file="${project.basedir}/target/flink-examples-batch-${project.version}-DistCp.jar" tofile="${project.basedir}/target/DistCp.jar" />
							</target>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

</project>
