You can download flink-clients-0.6.jar in this page.
Apache License
flink-clients-0.6.jar file has the following types.
META-INF/DEPENDENCIES META-INF/LICENSE META-INF/MANIFEST.MF META-INF/NOTICE META-INF/maven/org.apache.flink/flink-clients/pom.properties META-INF/maven/org.apache.flink/flink-clients/pom.xml org.apache.flink.client.CliFrontend.class org.apache.flink.client.LocalExecutor.class org.apache.flink.client.RemoteExecutor.class org.apache.flink.client.WebFrontend.class org.apache.flink.client.minicluster.NepheleMiniCluster.class org.apache.flink.client.program.Client.class org.apache.flink.client.program.ContextEnvironment.class org.apache.flink.client.program.JobWithJars.class org.apache.flink.client.program.PackagedProgram.class org.apache.flink.client.program.ProgramInvocationException.class org.apache.flink.client.web.GUIServletStub.class org.apache.flink.client.web.JobSubmissionServlet.class org.apache.flink.client.web.JobsInfoServlet.class org.apache.flink.client.web.JobsServlet.class org.apache.flink.client.web.PactJobJSONServlet.class org.apache.flink.client.web.PlanDisplayServlet.class org.apache.flink.client.web.WebInterfaceServer.class
flink-clients-0.6.pom file content.
<?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-parent</artifactId> <version>0.6-incubating</version> <relativePath>..</relativePath> </parent> <artifactId>flink-clients</artifactId> <name>flink-clients</name> <packaging>jar</packaging> <dependencies> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-runtime</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-compiler</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-java</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <!-- version is derived from base module --> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-security</artifactId> <!-- version is derived from base module --> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <!-- version is derived from base module --> </dependency> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3.1</version> <type>jar</type> <scope>compile</scope> </dependency> <!-- commons-io is required by commons-fileupload See http://commons.apache.org/proper/commons-fileupload/dependencies.html and https://github.com/dimalabs/ozone/pull/157 --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> <scope>compile</scope> </dependency> </dependencies> <!-- More information on this: http://stackoverflow.com/questions/1401857/using-maven-to-build-separate-jar-files-for-unit-testing-a-custom-class-loader --> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.4</version><!--$NO-MVN-MAN-VER$--> <executions> <execution> <id>create-test-dependency</id> <phase>process-test-classes</phase> <goals> <goal>single</goal> </goals> <configuration> <archive> <manifest> <mainClass>org.apache.flink.client.testjar.WordCount</mainClass> </manifest> </archive> <finalName>maven</finalName> <attach>false</attach> <descriptors> <descriptor>src/test/assembly/test-assembly.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> <!--Remove the external jar test code from the test-classes directory since it musn't be in the classpath when running the tests to actually test whether the user code class loader is properly used.--> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.5</version><!--$NO-MVN-MAN-VER$--> <executions> <execution> <id>remove-externaltestclasses</id> <phase>process-test-classes</phase> <goals> <goal>clean</goal> </goals> <configuration> <excludeDefaultDirectories>true</excludeDefaultDirectories> <filesets> <fileset> <directory>${project.build.testOutputDirectory}</directory> <includes> <include>**/testjar/*.class</include> </includes> </fileset> </filesets> </configuration> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId> org.apache.maven.plugins </groupId> <artifactId> maven-assembly-plugin </artifactId> <versionRange> [2.4,) </versionRange> <goals> <goal>single</goal> </goals> </pluginExecutionFilter> <action> <ignore></ignore> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <versionRange>[1,)</versionRange> <goals> <goal>clean</goal> </goals> </pluginExecutionFilter> <action> <ignore/> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>
<dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-clients</artifactId> <version>0.6</version> </dependency>
If you think the following flink-clients-0.6.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download flink-clients-0.6.jar file