<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"> <parent> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-integration-project</artifactId> <version>7.5.0.v20110901</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-runner</artifactId> <name>Jetty :: Runner</name> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin </artifactId> <configuration> <source>1.5</source> <target>1.5</target> <verbose>false</verbose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-dependencies</id> <phase>package</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <includes>**</includes> <excludes>**/MANIFEST.MF</excludes> <outputDirectory>${project.build.directory}/classes</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins </groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>package</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <archive> <manifest> <mainClass>org.mortbay.jetty.runner.Runner</mainClass> </manifest> <manifestEntries> <mode>development</mode> <url>http://jetty.mortbay.org</url> <Built-By>${user.name}</Built-By> <package>org.mortbay.jetty.runner</package> <Bundle-License>http://www.apache.org/licenses/LICENSE-2.0</Bundle-License> <Bundle-Name>Jetty Runner</Bundle-Name> <Bundle-Vendor>Mort Bay Consulting</Bundle-Vendor> </manifestEntries> </archive> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-plus</artifactId> <version>${jetty-version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-jndi</artifactId> <version>${jetty-version}</version> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jsp-2.1-glassfish</artifactId> <version>2.1.v20100127</version> </dependency> <dependency> <groupId>javax.transaction</groupId> <artifactId>jta</artifactId> <version>1.1</version> </dependency> </dependencies> </project>
<dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-runner</artifactId> <version>7.5.0.v20110901</version> </dependency>
org.mortbay.jetty:jetty-runner:7.5.0.v20110901