init package
This commit is contained in:
parent
cb789c92aa
commit
c8e6d952a0
BIN
eigenbase-properties-1.1.4.jar
Normal file
BIN
eigenbase-properties-1.1.4.jar
Normal file
Binary file not shown.
99
flume.spec
Normal file
99
flume.spec
Normal file
@ -0,0 +1,99 @@
|
||||
Name: flume
|
||||
Version: 1.9.0
|
||||
Release: 1
|
||||
Summary: Apache Flume is a distributed, reliable, and availble service for efficiently collecting, aggregating, and moving large amounts of log data.
|
||||
|
||||
License: Apache 2.0
|
||||
URL: https://github.com/apache/flume
|
||||
|
||||
Source0: https://github.com/apache/%{name}/archive/refs/tags/release-%{version}-rc3.tar.gz
|
||||
Source1: ua-parser-1.3.0.jar
|
||||
Source2: pentaho-aggdesigner-algorithm-5.1.3-jhyde.jar
|
||||
Source3: xmvn-reactor
|
||||
Source4: eigenbase-properties-1.1.4.jar
|
||||
Source5: linq4j-0.4.jar
|
||||
Source6: quidem-0.1.1.jar
|
||||
|
||||
BuildRequires: java-1.8.0-openjdk-devel maven xmvn xmvn-install gradle-local maven-local
|
||||
Requires: java-1.8.0-openjdk
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
Apache Flume is a distributed, reliable, and available service for efficiently collecting,
|
||||
aggregating, and moving large amounts of log data. It has a simple and flexible architecture
|
||||
based on streaming data flows. It is robust and fault tolerant with tunable reliability
|
||||
mechanisms and many failover and recovery mechanisms. The system is centrally managed and
|
||||
allows for intelligent dynamic management. It uses a simple extensible data model that allows
|
||||
for online analytic application.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-release-%{version}-rc3
|
||||
mvn install:install-file -DgroupId=ua_parser -DartifactId=ua-parser -Dversion=1.3.0 -Dpackaging=jar -Dfile=%{SOURCE1}
|
||||
mvn install:install-file -DgroupId=org.pentaho -DartifactId=pentaho-aggdesigner-algorithm -Dversion=5.1.3-jhyde -Dpackaging=jar -Dfile=%{SOURCE2}
|
||||
mvn install:install-file -DgroupId=eigenbase -DartifactId=eigenbase-properties -Dversion=1.1.4 -Dpackaging=jar -Dfile=%{SOURCE4}
|
||||
mvn install:install-file -DgroupId=net.hydromatic -DartifactId=linq4j -Dversion=0.4 -Dpackaging=jar -Dfile=%{SOURCE5}
|
||||
mvn install:install-file -DgroupId=net.hydromatic -DartifactId=quidem -Dversion=0.1.1 -Dpackaging=jar -Dfile=%{SOURCE6}
|
||||
cp %{SOURCE3} ./.xmvn-reactor
|
||||
echo `pwd` > absolute_prefix.log
|
||||
sed -i 's/\//\\\//g' absolute_prefix.log
|
||||
absolute_prefix=`head -n 1 absolute_prefix.log`
|
||||
sed -i 's/absolute-prefix/'"$absolute_prefix"'/g' .xmvn-reactor
|
||||
|
||||
find -name "*.jar" -delete
|
||||
find -name "*.cmd" -delete
|
||||
|
||||
%build
|
||||
# for javadoc encoding
|
||||
export LC_ALL=en_US.UTF-8
|
||||
|
||||
mvn package -DskipTests -Pdist -Dtar
|
||||
|
||||
%install
|
||||
%mvn_install -J build/dist/docs
|
||||
|
||||
install -d -m 0755 %{buildroot}%{_bindir}
|
||||
install -d -m 0755 %{buildroot}%{_sysconfdir}/%{name}
|
||||
install -d -m 0755 %{buildroot}%{_datadir}/%{name}/bin
|
||||
install -d -m 0755 %{buildroot}%{_datadir}/%{name}/conf
|
||||
install -d -m 0755 %{buildroot}%{_datadir}/%{name}/lib
|
||||
install -d -m 0755 %{buildroot}%{_datadir}/%{name}/tools
|
||||
install -d -m 0755 %{buildroot}%{_datadir}/doc/%{name}
|
||||
|
||||
pushd flume-ng-dist/target/apache-flume-1.9.0-bin/apache-flume-1.9.0-bin
|
||||
cp -arf bin/* %{buildroot}%{_datadir}/%{name}/bin
|
||||
cp -arf conf/* %{buildroot}%{_datadir}/%{name}/conf
|
||||
cp -arf lib/* %{buildroot}%{_datadir}/%{name}/lib
|
||||
cp -arf tools/* %{buildroot}%{_datadir}/%{name}/tools
|
||||
for f in DEVNOTES doap_Flume.rdf LICENSE NOTICE README.md RELEASE-NOTES;do
|
||||
cp -f ${f} %{buildroot}%{_datadir}/doc/%{name}
|
||||
done
|
||||
popd
|
||||
|
||||
# /usr/bin
|
||||
pushd flume-ng-dist/target/apache-flume-1.9.0-bin/apache-flume-1.9.0-bin/bin
|
||||
ls | awk '{print $1}' | for line in `xargs`;do
|
||||
ln -s %{_datadir}/%{name}/bin/${line} %{buildroot}%{_bindir}/${line}
|
||||
done
|
||||
popd
|
||||
|
||||
# /usr/share/flume/lib
|
||||
pushd flume-ng-dist/target/apache-flume-1.9.0-bin/apache-flume-1.9.0-bin/lib
|
||||
for f in `ls flume-* | grep -v tests | grep -v examples`
|
||||
do
|
||||
pkgname=`echo $f | sed "s/-%{version}//"`
|
||||
rm -f %{buildroot}%{_datadir}/%{name}/lib/$f
|
||||
ln -s %{_datadir}/java/%{name}/${pkgname} %{buildroot}%{_datadir}/%{name}/lib/$f
|
||||
done
|
||||
popd
|
||||
|
||||
%files -f .mfiles
|
||||
%doc %{_datadir}/doc/%{name}/*
|
||||
%{_bindir}/*
|
||||
%{_datadir}/%{name}/*
|
||||
%{_sysconfdir}/%{name}
|
||||
%dir %{_javadir}/%{name}
|
||||
|
||||
%changelog
|
||||
* Tue Apr 13 2021 Ge Wang <wangge20@huawei.com> 1.9.0-1
|
||||
- Init package
|
||||
BIN
linq4j-0.4.jar
Normal file
BIN
linq4j-0.4.jar
Normal file
Binary file not shown.
BIN
pentaho-aggdesigner-algorithm-5.1.3-jhyde.jar
Normal file
BIN
pentaho-aggdesigner-algorithm-5.1.3-jhyde.jar
Normal file
Binary file not shown.
BIN
quidem-0.1.1.jar
Normal file
BIN
quidem-0.1.1.jar
Normal file
Binary file not shown.
BIN
release-1.9.0-rc3.tar.gz
Normal file
BIN
release-1.9.0-rc3.tar.gz
Normal file
Binary file not shown.
BIN
ua-parser-1.3.0.jar
Normal file
BIN
ua-parser-1.3.0.jar
Normal file
Binary file not shown.
752
xmvn-reactor
Normal file
752
xmvn-reactor
Normal file
@ -0,0 +1,752 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata xmlns="http://fedorahosted.org/xmvn/METADATA/3.0.0">
|
||||
<artifacts>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-legacy-sources</groupId>
|
||||
<artifactId>flume-avro-source</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-legacy-sources/flume-avro-source/target/flume-avro-source-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-legacy-sources</groupId>
|
||||
<artifactId>flume-avro-source</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-legacy-sources/flume-avro-source/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-dataset-sink</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-dataset-sink/target/flume-dataset-sink-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-dataset-sink</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-dataset-sink/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-channels</groupId>
|
||||
<artifactId>flume-file-channel</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-channels/flume-file-channel/target/flume-file-channel-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-channels</groupId>
|
||||
<artifactId>flume-file-channel</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-channels/flume-file-channel/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-hdfs-sink</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-hdfs-sink/target/flume-hdfs-sink-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-hdfs-sink</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-hdfs-sink/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-hive-sink</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-hive-sink/target/flume-hive-sink-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-hive-sink</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-hive-sink/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-http-sink</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-http-sink/target/flume-http-sink-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-http-sink</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-http-sink/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-irc-sink</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-irc-sink/target/flume-irc-sink-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-irc-sink</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-irc-sink/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-channels</groupId>
|
||||
<artifactId>flume-jdbc-channel</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-channels/flume-jdbc-channel/target/flume-jdbc-channel-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-channels</groupId>
|
||||
<artifactId>flume-jdbc-channel</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-channels/flume-jdbc-channel/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sources</groupId>
|
||||
<artifactId>flume-jms-source</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sources/flume-jms-source/target/flume-jms-source-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sources</groupId>
|
||||
<artifactId>flume-jms-source</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sources/flume-jms-source/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-channels</groupId>
|
||||
<artifactId>flume-kafka-channel</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-channels/flume-kafka-channel/target/flume-kafka-channel-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-channels</groupId>
|
||||
<artifactId>flume-kafka-channel</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-channels/flume-kafka-channel/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sources</groupId>
|
||||
<artifactId>flume-kafka-source</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sources/flume-kafka-source/target/flume-kafka-source-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sources</groupId>
|
||||
<artifactId>flume-kafka-source</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sources/flume-kafka-source/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume</groupId>
|
||||
<artifactId>flume-ng-auth</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-auth/target/flume-ng-auth-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume</groupId>
|
||||
<artifactId>flume-ng-auth</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-auth/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-configfilters</groupId>
|
||||
<artifactId>flume-ng-config-filter-api</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-configfilters/flume-ng-config-filter-api/target/flume-ng-config-filter-api-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-configfilters</groupId>
|
||||
<artifactId>flume-ng-config-filter-api</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-configfilters/flume-ng-config-filter-api/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume</groupId>
|
||||
<artifactId>flume-ng-configuration</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-configuration/target/flume-ng-configuration-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume</groupId>
|
||||
<artifactId>flume-ng-configuration</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-configuration/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume</groupId>
|
||||
<artifactId>flume-ng-core</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-core/target/flume-ng-core-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume</groupId>
|
||||
<artifactId>flume-ng-core</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-core/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-ng-elasticsearch-sink</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-ng-elasticsearch-sink/target/flume-ng-elasticsearch-sink-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-ng-elasticsearch-sink</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-ng-elasticsearch-sink/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume</groupId>
|
||||
<artifactId>flume-ng-embedded-agent</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-embedded-agent/target/flume-ng-embedded-agent-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume</groupId>
|
||||
<artifactId>flume-ng-embedded-agent</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-embedded-agent/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-configfilters</groupId>
|
||||
<artifactId>flume-ng-environment-variable-config-filter</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-configfilters/flume-ng-environment-variable-config-filter/target/flume-ng-environment-variable-config-filter-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-configfilters</groupId>
|
||||
<artifactId>flume-ng-environment-variable-config-filter</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-configfilters/flume-ng-environment-variable-config-filter/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-configfilters</groupId>
|
||||
<artifactId>flume-ng-external-process-config-filter</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-configfilters/flume-ng-external-process-config-filter/target/flume-ng-external-process-config-filter-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-configfilters</groupId>
|
||||
<artifactId>flume-ng-external-process-config-filter</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-configfilters/flume-ng-external-process-config-filter/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-configfilters</groupId>
|
||||
<artifactId>flume-ng-hadoop-credential-store-config-filter</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-configfilters/flume-ng-hadoop-credential-store-config-filter/target/flume-ng-hadoop-credential-store-config-filter-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-configfilters</groupId>
|
||||
<artifactId>flume-ng-hadoop-credential-store-config-filter</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-configfilters/flume-ng-hadoop-credential-store-config-filter/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-ng-hbase2-sink</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-ng-hbase2-sink/target/flume-ng-hbase2-sink-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-ng-hbase2-sink</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-ng-hbase2-sink/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-ng-hbase-sink</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-ng-hbase-sink/target/flume-ng-hbase-sink-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-ng-hbase-sink</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-ng-hbase-sink/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-ng-kafka-sink</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-ng-kafka-sink/target/flume-ng-kafka-sink-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-ng-kafka-sink</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-ng-kafka-sink/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-clients</groupId>
|
||||
<artifactId>flume-ng-log4jappender</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-clients/flume-ng-log4jappender/target/flume-ng-log4jappender-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-clients</groupId>
|
||||
<artifactId>flume-ng-log4jappender</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-clients/flume-ng-log4jappender/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-ng-morphline-solr-sink</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-ng-morphline-solr-sink/target/flume-ng-morphline-solr-sink-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sinks</groupId>
|
||||
<artifactId>flume-ng-morphline-solr-sink</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sinks/flume-ng-morphline-solr-sink/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume</groupId>
|
||||
<artifactId>flume-ng-node</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-node/target/flume-ng-node-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume</groupId>
|
||||
<artifactId>flume-ng-node</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-node/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume</groupId>
|
||||
<artifactId>flume-ng-sdk</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sdk/target/flume-ng-sdk-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume</groupId>
|
||||
<artifactId>flume-ng-sdk</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sdk/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sources</groupId>
|
||||
<artifactId>flume-scribe-source</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sources/flume-scribe-source/target/flume-scribe-source-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sources</groupId>
|
||||
<artifactId>flume-scribe-source</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sources/flume-scribe-source/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-shared</groupId>
|
||||
<artifactId>flume-shared-kafka</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-shared/flume-shared-kafka/target/flume-shared-kafka-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-shared</groupId>
|
||||
<artifactId>flume-shared-kafka</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-shared/flume-shared-kafka/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-channels</groupId>
|
||||
<artifactId>flume-spillable-memory-channel</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-channels/flume-spillable-memory-channel/target/flume-spillable-memory-channel-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-channels</groupId>
|
||||
<artifactId>flume-spillable-memory-channel</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-channels/flume-spillable-memory-channel/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sources</groupId>
|
||||
<artifactId>flume-taildir-source</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sources/flume-taildir-source/target/flume-taildir-source-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sources</groupId>
|
||||
<artifactId>flume-taildir-source</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sources/flume-taildir-source/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-legacy-sources</groupId>
|
||||
<artifactId>flume-thrift-source</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-legacy-sources/flume-thrift-source/target/flume-thrift-source-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-legacy-sources</groupId>
|
||||
<artifactId>flume-thrift-source</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-legacy-sources/flume-thrift-source/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume</groupId>
|
||||
<artifactId>flume-tools</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-tools/target/flume-tools-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume</groupId>
|
||||
<artifactId>flume-tools</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-tools/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sources</groupId>
|
||||
<artifactId>flume-twitter-source</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sources/flume-twitter-source/target/flume-twitter-source-1.9.0.jar</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<groupId>org.apache.flume.flume-ng-sources</groupId>
|
||||
<artifactId>flume-twitter-source</artifactId>
|
||||
<extension>pom</extension>
|
||||
<version>1.9.0</version>
|
||||
<path>absolute-prefix/flume-ng-sources/flume-twitter-source/pom.xml</path>
|
||||
<properties>
|
||||
<type>jar</type>
|
||||
<requiresJava>1.6</requiresJava>
|
||||
</properties>
|
||||
</artifact>
|
||||
</artifacts>
|
||||
</metadata>
|
||||
Loading…
x
Reference in New Issue
Block a user