jetty-runner
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-runner</artifactId> <version>11.0.24</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <parent> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-project</artifactId> <version>11.0.24</version> </parent> <artifactId>jetty-runner</artifactId> <name>Jetty :: Runner</name> <properties> <assembly-directory>target/distribution</assembly-directory> <bundle-symbolic-name>${project.groupId}.runner</bundle-symbolic-name> <!-- too many external dependencies to fix... :) --> <spotbugs.skip>true</spotbugs.skip> </properties> <dependencies> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>apache-jsp</artifactId> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>glassfish-jstl</artifactId> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-annotations</artifactId> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-jaas</artifactId> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-jndi</artifactId> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-plus</artifactId> </dependency> <dependency> <groupId>org.eclipse.jetty.websocket</groupId> <artifactId>websocket-jetty-server</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-slf4j-impl</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-client</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.demos</groupId> <artifactId>demo-simple-webapp</artifactId> <type>war</type> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <!-- jetty-runner is not an OSGi component --> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>org.eclipse.jetty.runner.Runner</mainClass> </manifest> <manifestEntries> <Comment>Jetty Runner</Comment> </manifestEntries> </archive> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-dependencies</id> <goals> <goal>unpack-dependencies</goal> </goals> <phase>prepare-package</phase> <configuration> <includes>**</includes> <excludes>**/MANIFEST.MF, META-INF/LICENSE, META-INF/*.RSA, META-INF/*.DSA, META-INF/*.SF, module-info.class, readme.txt, MANIFEST.MF, about.html, ecj.1</excludes> <outputDirectory>${project.build.directory}/classes</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> <includeScope>compile</includeScope> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <configuration> <debug>${it.debug}</debug> <addTestClassPath>true</addTestClassPath> <scriptVariables> <maven.dependency.plugin.version>${maven.dependency.plugin.version}</maven.dependency.plugin.version> <maven.surefire.plugin.version>${maven.surefire.plugin.version}</maven.surefire.plugin.version> <hamcrest.version>${hamcrest.version}</hamcrest.version> </scriptVariables> <goals> <goal>clean</goal> </goals> </configuration> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>integration-test</goal> <goal>verify</goal> </goals> <phase>integration-test</phase> <configuration> <extraArtifacts> <extraArtifact>org.eclipse.jetty.demos:demo-simple-webapp:${project.version}:war</extraArtifact> <extraArtifact>org.eclipse.jetty:jetty-client:${project.version}:jar</extraArtifact> </extraArtifacts> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>