Author: smohanty
Date: Tue Apr 23 22:55:46 2013
New Revision: 1471189
URL: http://svn.apache.org/r1471189
Log:
AMBARI-1952. hadoop dependency version for ambari-log4j is hardcoded, making it
regular expression based to pick latest from the repository. (smohanty)
Modified:
incubator/ambari/trunk/CHANGES.txt
incubator/ambari/trunk/contrib/ambari-log4j/pom.xml
Modified: incubator/ambari/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1471189&r1=1471188&r2=1471189&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Tue Apr 23 22:55:46 2013
@@ -774,6 +774,9 @@ Trunk (unreleased changes):
BUG FIXES
+ AMBARI-1952. hadoop dependency version for ambari-log4j is hardcoded, making
+ it regular expression based to pick latest from the repository. (smohanty)
+
AMBARI-2007. Decom DataNode throws JS error. (smohanty)
AMBARI-1994. Adding component to Host should should wire-up + adjust
Modified: incubator/ambari/trunk/contrib/ambari-log4j/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/contrib/ambari-log4j/pom.xml?rev=1471189&r1=1471188&r2=1471189&view=diff
==============================================================================
--- incubator/ambari/trunk/contrib/ambari-log4j/pom.xml (original)
+++ incubator/ambari/trunk/contrib/ambari-log4j/pom.xml Tue Apr 23 22:55:46 2013
@@ -26,7 +26,7 @@
<repositories>
<repository>
<id>hdp.internal</id>
- <url>http://s3.amazonaws.com/repo.hortonworks.com/release</url>
+ <url>http://repo1.maven.org/maven2</url>
</repository>
</repositories>
<dependencies>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-tools</artifactId>
- <version>1.1.1.1</version>
+ <version>[1.0,2.0)</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
- <version>1.1.1.1</version>
+ <version>[1.0,2.0)</version>
</dependency>
<dependency>
<groupId>log4j</groupId>