You can download flume-ng-sdk-1.7.0.jar in this page.
Apache License
flume-ng-sdk-1.7.0.jar file has the following types.
META-INF/DEPENDENCIES META-INF/LICENSE META-INF/MANIFEST.MF META-INF/NOTICE META-INF/maven/org.apache.flume/flume-ng-sdk/pom.properties META-INF/maven/org.apache.flume/flume-ng-sdk/pom.xml org.apache.flume.Event.class org.apache.flume.EventDeliveryException.class org.apache.flume.FlumeException.class org.apache.flume.api.AbstractRpcClient.class org.apache.flume.api.FailoverRpcClient.class org.apache.flume.api.HostInfo.class org.apache.flume.api.LoadBalancingRpcClient.class org.apache.flume.api.NettyAvroRpcClient.class org.apache.flume.api.RpcClient.class org.apache.flume.api.RpcClientConfigurationConstants.class org.apache.flume.api.RpcClientFactory.class org.apache.flume.api.ThriftRpcClient.class org.apache.flume.event.EventBuilder.class org.apache.flume.event.JSONEvent.class org.apache.flume.event.SimpleEvent.class org.apache.flume.source.avro.AvroFlumeEvent.class org.apache.flume.source.avro.AvroSourceProtocol.class org.apache.flume.source.avro.Status.class org.apache.flume.thrift.Status.class org.apache.flume.thrift.ThriftFlumeEvent.class org.apache.flume.thrift.ThriftSourceProtocol.class org.apache.flume.util.OrderSelector.class org.apache.flume.util.RandomOrderSelector.class org.apache.flume.util.RoundRobinOrderSelector.class org.apache.flume.util.SpecificOrderIterator.class
flume-ng-sdk-1.7.0.pom file content.
<!-- 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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>flume-parent</artifactId> <groupId>org.apache.flume</groupId> <version>1.7.0</version> </parent> <artifactId>flume-ng-sdk</artifactId> <name>Flume NG SDK</name> <description>Flume Software Development Kit: Stable public API for integration with Flume 1.x</description> <profiles> <profile> <id>compileThrift</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>compileThrift</id> <phase>generate-sources</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <echo file="target/compile-thrift.sh"> LICENSE=src/main/thrift/aslv2 THRIFT_DIR=src/main/thrift JAVA_DIR=target/generated-sources/thrift mkdir -p $JAVA_DIR 2> /dev/null JSTATUS=$? if [ $JSTATUS -ne 0 ] ; then echo "Could not create $JAVA_DIR. Will not generate thrift files." exit $JSTATUS fi for THRIFT_FILE in `ls $THRIFT_DIR/*.thrift 2> /dev/null` do thrift --gen java:hashcode -o $JAVA_DIR $THRIFT_FILE done SRC_DIR=$JAVA_DIR/gen-java/org/apache/flume/thrift/ DEST_DIR=src/main/java/org/apache/flume/thrift if [ ! -d $DEST_DIR ] ; then mkdir $DEST_DIR 2> /dev/null STATUS=$? if [ $STATUS -ne 0 ] ; then echo "Could not create $DEST_DIR. Will not generate thrift files." exit $STATUS fi fi for JAVA_FILE in `ls $SRC_DIR/*.java 2> /dev/null` do echo $JAVA_FILE cat $LICENSE > $JAVA_FILE.tmp cat $JAVA_FILE >> $JAVA_FILE.tmp mv $JAVA_FILE.tmp $JAVA_FILE cp $JAVA_FILE $DEST_DIR done rm -rf $JAVA_DIR </echo> <exec executable="sh" dir="${basedir}" failonerror="true"> <arg line="target/compile-thrift.sh"/> </exec> </target> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.avro</groupId> <artifactId>avro-maven-plugin</artifactId> <versionRange>[${avro.version},)</versionRange> <goals> <goal>idl-protocol</goal> </goals> </pluginExecutionFilter> <action> <execute /> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId>com.thoughtworks.paranamer</groupId> <artifactId>paranamer-maven-plugin</artifactId> <versionRange>[2.3,)</versionRange> <goals> <goal>generate</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.avro</groupId> <artifactId>avro-maven-plugin</artifactId> <configuration> <stringType>CharSequence</stringType> </configuration> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>idl-protocol</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.thoughtworks.paranamer</groupId> <artifactId>paranamer-maven-plugin</artifactId> <executions> <execution> <id>run</id> <configuration> <sourceDirectory>${project.build.directory}/generated-sources/avro</sourceDirectory> <outputDirectory>${project.build.directory}/classes</outputDirectory> </configuration> <goals> <goal>generate</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <!-- only used for tests --> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <!-- only used for tests --> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.avro</groupId> <artifactId>avro</artifactId> </dependency> <dependency> <groupId>org.apache.avro</groupId> <artifactId>avro-ipc</artifactId> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty</artifactId> </dependency> <dependency> <groupId>org.apache.thrift</groupId> <artifactId>libthrift</artifactId> </dependency> </dependencies> </project>
<dependency> <groupId>org.apache.flume</groupId> <artifactId>flume-ng-sdk</artifactId> <version>1.7.0</version> </dependency>
If you think the following flume-ng-sdk-1.7.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download flume-ng-sdk-1.7.0.jar file