Skip to content

Commit

Permalink
Merge pull request #1 from dcapwell/master
Browse files Browse the repository at this point in the history
Add Distro Manager
  • Loading branch information
Vijay2win committed Sep 19, 2012
2 parents 1ee8721 + 1cd4bd3 commit 8bb3de7
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,36 @@
<groupId>com.apache.flume.cassandra</groupId>
<artifactId>flume-cassandra-sink</artifactId>
<version>1.0-SNAPSHOT</version>

<properties>
<astyanax.version>1.0.4</astyanax.version>
<flume.version>1.3.0-SNAPSHOT</flume.version>

<distro.release.url></distro.release.url>
<distro.snapshot.url></distro.snapshot.url>
</properties>

<distributionManagement>
<repository>
<id>central</id>
<url>${distro.release.url}</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<url>${distro.snapshot.url}</url>
</snapshotRepository>
</distributionManagement>

<dependencies>
<dependency>
<groupId>com.netflix.astyanax</groupId>
<artifactId>astyanax</artifactId>
<version>1.0.4</version>
<version>${astyanax.version}</version>
</dependency>
<dependency>
<groupId>org.apache.flume</groupId>
<artifactId>flume-ng-core</artifactId>
<version>1.3.0-SNAPSHOT</version>
<version>${flume.version}</version>
</dependency>
</dependencies>
<repositories>
Expand Down

0 comments on commit 8bb3de7

Please sign in to comment.