warbler-embedded-jetty
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jruby.warbler</groupId> <artifactId>warbler-embedded-jetty</artifactId> <version>1.0.0</version> </dependency>
<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.jruby.warbler</groupId> <artifactId>warbler-embedded-jetty</artifactId> <version>1.0.0</version> <name>Warbler Embedded Jetty</name> <description>An all-in-one-jar embedded Jetty server for use with Warbler's "warble executable war".</description> <url>http://github.com/jruby/warbler/</url> <properties> <jetty.version>8.1.2.v20120308</jetty.version> </properties> <distributionManagement> <repository> <id>codehaus-jruby-repository</id> <name>JRuby Central Repository</name> <url>dav:https://dav.codehaus.org/repository/jruby</url> </repository> <snapshotRepository> <id>codehaus-jruby-snapshot-repository</id> <name>JRuby Central Development Repository</name> <url>dav:https://dav.codehaus.org/snapshots.repository/jruby</url> </snapshotRepository> </distributionManagement> <repositories> <repository> <id>codehaus</id> <name>Codehaus Repository</name> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> <url>http://repository.codehaus.org</url> </repository> </repositories> <developers> <developer> <id>nicksieger</id> <name>Nick Sieger</name> <email>nicksieger@gmail.com</email> </developer> </developers> <dependencies> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-webapp</artifactId> <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-deploy</artifactId> <version>${jetty.version}</version> </dependency> </dependencies> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.1</version> <executions> <execution> <id>unpack</id> <phase>prepare-package</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.outputDirectory}</outputDirectory> <excludes>META-INF/MANIFEST.MF,META-INF/ECLIPSEF.*,META-INF/eclipse.*</excludes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</version> <configuration> <archive> <manifest> <mainClass>JettyWarMain</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav</artifactId> <version>1.0-beta-2</version> </extension> </extensions> </build> </project>