Hi Jeff,

I have the following in my .m2/settings.xml...

-------------------------------------------------
<settings>
  <profiles>
    <profile>
      <id>default</id>
      <repositories>
        <repository>
          <id>spike.releases.3dparty</id>
          <name>Repository for third party libraries</name>
          <url>file:///C:/MavenRepo</url>
        </repository>
      </repositories>
    </profile>

    <profile>
      <id>snapshots</id>
      <repositories>
        <repository>
          <id>Maven Snapshots</id>
          <url>http://snapshots.maven.codehaus.org/maven2/</url>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
          <releases>
            <enabled>false</enabled>
          </releases>
        </repository>
      </repositories>

      <pluginRepositories>
        <pluginRepository>
          <id>Maven Snapshots</id>
          <url>http://snapshots.maven.codehaus.org/maven2/</url>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
          <releases>
            <enabled>false</enabled>
          </releases>
        </pluginRepository>
      </pluginRepositories>
    </profile>
  </profiles>

  <activeProfiles>
    <activeProfile>default</activeProfile>
  </activeProfiles>
</settings>
-------------------------------------------------

...and then just do an 'mvn -P default,snapshots install'. Due to http://jira.codehaus.org/browse/MJAR-31 the webstart-plugin won't work out of the box. You will have to check out the sources of the jar plugin and patch it according to:

http://mail-archives.apache.org/mod_mbox/maven-dev/200603.mbox/[EMAIL PROTECTED]

and then 'mvn install' it.

Hope this helps
-Tim

[EMAIL PROTECTED] schrieb:
Thanks Geoffrey,

I checked it out of SVN and ran mvn install. It would appear that the
project refers to many dependencies that are not available in the
repository, and so the install fails. Is there any place I can get a
working, ready to use version of this plugin?

Regards,
Jeff


[...]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to