2020-02-19 19:33:50 -05:00
|
|
|
<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.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2022-02-07 06:02:02 -05:00
|
|
|
<version>10.0.9-SNAPSHOT</version>
|
2020-02-19 19:33:50 -05:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-runner</artifactId>
|
|
|
|
<name>Jetty :: Runner</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<assembly-directory>target/distribution</assembly-directory>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.runner</bundle-symbolic-name>
|
2020-12-10 20:47:26 -05:00
|
|
|
<!-- too many external dependencies to fix... :) -->
|
|
|
|
<spotbugs.skip>true</spotbugs.skip>
|
2020-02-19 19:33:50 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>unpack-dependencies</id>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includes>**</includes>
|
2020-11-26 12:51:24 -05:00
|
|
|
<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>
|
2020-02-19 19:33:50 -05:00
|
|
|
<outputDirectory>${project.build.directory}/classes</outputDirectory>
|
|
|
|
<overWriteReleases>false</overWriteReleases>
|
|
|
|
<overWriteSnapshots>true</overWriteSnapshots>
|
2021-09-13 12:32:56 -04:00
|
|
|
<includeScope>compile</includeScope>
|
2020-02-19 19:33:50 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2021-04-26 20:26:33 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-02-19 19:33:50 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>integration-test</id>
|
|
|
|
<phase>integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>install</goal>
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
<goal>verify</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
2021-04-26 20:26:33 -04:00
|
|
|
<debug>${it.debug}</debug>
|
|
|
|
<addTestClassPath>true</addTestClassPath>
|
2020-02-19 19:33:50 -05:00
|
|
|
<scriptVariables>
|
|
|
|
<maven.dependency.plugin.version>${maven.dependency.plugin.version}</maven.dependency.plugin.version>
|
2021-09-22 10:54:52 -04:00
|
|
|
<maven.surefire.plugin.version>${maven.surefire.plugin.version}</maven.surefire.plugin.version>
|
2021-04-26 20:26:33 -04:00
|
|
|
<hamcrest.version>${hamcrest.version}</hamcrest.version>
|
2020-02-19 19:33:50 -05:00
|
|
|
</scriptVariables>
|
|
|
|
<goals>
|
|
|
|
<goal>clean</goal>
|
|
|
|
</goals>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- jetty-runner is not an OSGi component -->
|
|
|
|
<skip>true</skip>
|
|
|
|
<!-- there is no way to skip MANIFEST creation by the plugin so just configure dummy location -->
|
|
|
|
<manifestLocation>${project.build.directory}/NON_USED_MANIFEST</manifestLocation>
|
|
|
|
</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>
|
2020-11-26 12:51:24 -05:00
|
|
|
<manifestEntries>
|
|
|
|
<Comment>Jetty Runner</Comment>
|
|
|
|
</manifestEntries>
|
2020-02-19 19:33:50 -05:00
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-plus</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.websocket</groupId>
|
|
|
|
<artifactId>websocket-jetty-server</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-jndi</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>apache-jsp</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>apache-jstl</artifactId>
|
|
|
|
</dependency>
|
2020-03-19 18:46:41 -04:00
|
|
|
<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>
|
2021-04-26 20:26:33 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.demos</groupId>
|
|
|
|
<artifactId>demo-simple-webapp</artifactId>
|
|
|
|
<type>war</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-02-19 19:33:50 -05:00
|
|
|
</dependencies>
|
|
|
|
</project>
|