Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

  • Here's the file: http://download.eclipse.org/jetty/stable-7/dist/jetty-distribution-7.3.0.v20110203.zip
  • Put this somewhere on your machine that won't be disturbed, for instance $HOME/arc. You may need to make the arc/ directory if you are going to use that.
  • Construct the file URL for this file. For instance, if you put it in /Users/adam/arc/jetty-distribution-7.3.0.v20110203.zip, the file url would be file:///Users/adam/arc/jetty-distribution-7.3.0.v20110203.zip
    .
  • For Windows, if you put the file in c:\downloadsjetty-distribution-7.3.0.v20110203.zip, the file url would be file:///c:/downloads/jetty-distribution-7.3.0.v20110203.zip.
  • Save the following text as the $HOME/.m2/settings.xml file, replacing the REPLACE-WITH-FILE-URL in the text below with the URL you just constructed:
    Code Block
    xml
    xml
    <settings 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/settings-1.0.0.xsd">
       <profiles>
          <profile>
             <id>local</id>
             <activation>
                <activeByDefault>true</activeByDefault>
             </activation>
             <properties>
                <tomcat<jetty.container.url>REPLACE-WITH-FILE-URL</tomcatjetty.container.url>
             </properties>
          </profile>
       </profiles>
    </settings>

...