No there isn't unfortunately... I use this, so I can quickly change versions:
<!-- mvn -f hadoop-installer.xml install -Dhadoop.version=0.16.4 -Dmaven.test.skip=true --> <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> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop</artifactId> <name>Hadoop (${hadoop.version})</name> <packaging>jar</packaging> <version>${hadoop.version}</version> <build> <plugins> <plugin> <artifactId>maven-install-plugin</artifactId> <executions> <execution> <id>install-hadoop</id> <phase>install</phase> <goals> <goal>install-file</goal> </goals> <configuration> <file>hadoop-jars/hadoop-${hadoop.version}-core.jar</file> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-core</artifactId> <packaging>jar</packaging> <version>${hadoop.version}</version> <generatePom>true</generatePom> <createChecksum>true</createChecksum> </configuration> </execution> </executions> </plugin> </plugins> </build> </project> On Fri, Jul 11, 2008 at 4:11 PM, Larry Compton <[EMAIL PROTECTED]> wrote: > Are the Hadoop JAR files housed in a Maven repository somewhere? If so, > please post the repository URL. > > TIA > > -- > Larry Compton >