If we're talking about the same plugin, I've had some success
modifying it. I built it with the following POM where I just changed
the betas to alphas
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-tomcat-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>2.0-beta-1-SNAPSHOT</version>
<name>Maven Tomcat Plugin</name>
<developers>
<developer>
<name>Mark Hobson</name>
<email>[EMAIL PROTECTED]</email>
<roles>
<role>Lead Developer</role>
</roles>
<timezone>0</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0-alpha-3</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.0-alpha-3</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
</project>
On 31 Aug 2005, at 13:14, Ralph Pöllath wrote:
Hi,
Is it currently possible to use the tomcat plugin [1] with maven
2.0-alpha-3? I understand it's work in progress, but I'd like to
start playing with it if possible.
I grabbed the source from svn, changed the version numbers of its
parent and dependencies to those available on repo1, built and
installed it in my local repository. Now when I try to run it,
maven starts looking for the latest version in repo1 and of course
won't find any (since the tomcat plugin hasn't been released yet).
Thanks,
-Ralph.
[1] http://jira.codehaus.org/browse/MNG-785
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]