You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flume.apache.org by pr...@apache.org on 2012/02/06 20:45:16 UTC

svn commit: r1241127 - /incubator/flume/branches/flume-728/pom.xml

Author: prasadm
Date: Mon Feb  6 19:45:16 2012
New Revision: 1241127

URL: http://svn.apache.org/viewvc?rev=1241127&view=rev
Log:
FLUME-942: Support event compatibility with Flume 0.9x

Modified:
    incubator/flume/branches/flume-728/pom.xml

Modified: incubator/flume/branches/flume-728/pom.xml
URL: http://svn.apache.org/viewvc/incubator/flume/branches/flume-728/pom.xml?rev=1241127&r1=1241126&r2=1241127&view=diff
==============================================================================
--- incubator/flume/branches/flume-728/pom.xml (original)
+++ incubator/flume/branches/flume-728/pom.xml Mon Feb  6 19:45:16 2012
@@ -38,8 +38,8 @@ limitations under the License.
     <!-- defaults for flaky test and focused test exclusions -->
     <test.exclude.pattern>$</test.exclude.pattern> <!-- junk pattern -->
     <test.include.pattern>**/Test*.java</test.include.pattern>
-  </properties>
 
+  </properties>
 
   <modules>
     <module>flume-ng-core</module>
@@ -47,6 +47,7 @@ limitations under the License.
     <module>flume-ng-node</module>
     <module>flume-ng-dist</module>
     <module>flume-ng-channels</module>
+    <module>flume-ng-legacy-sources</module>
   </modules>
 
   <profiles>
@@ -122,6 +123,15 @@ limitations under the License.
         </dependencies>
       </dependencyManagement>
     </profile>
+    <profile>
+      <id>compileThrift</id>
+      <activation>
+       <activeByDefault>false</activeByDefault>
+      </activation>
+      <properties>
+        <thrift.executable>${env.THRIFT_HOME}/bin/thrift</thrift.executable>
+      </properties>
+    </profile>
   </profiles>
 
   <inceptionYear>2009</inceptionYear>
@@ -513,6 +523,12 @@ limitations under the License.
       </dependency>
 
       <dependency>
+        <groupId>org.apache.thrift</groupId>
+        <artifactId>libthrift</artifactId>
+        <version>0.6.1</version>
+      </dependency>
+
+      <dependency>
         <groupId>org.apache.hadoop</groupId>
         <artifactId>hadoop-common</artifactId>
         <version>${hadoop.version}</version>
@@ -592,6 +608,18 @@ limitations under the License.
         <version>1.1.0-incubating-SNAPSHOT</version>
       </dependency>
 
+      <dependency>
+        <groupId>org.apache.flume.flume-ng-legacy-sources</groupId>
+        <artifactId>flume-thrift-source</artifactId>
+        <version>1.1.0-incubating-SNAPSHOT</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.apache.flume.flume-ng-legacy-sources</groupId>
+        <artifactId>flume-avro-source</artifactId>
+        <version>1.1.0-incubating-SNAPSHOT</version>
+      </dependency>
+
     </dependencies>
   </dependencyManagement>