jetty-ee10-maven-plugin
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.jetty.ee10</groupId> <artifactId>jetty-ee10-maven-plugin</artifactId> <version>12.0.0.beta0</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"> <parent> <groupId>org.eclipse.jetty.ee10</groupId> <artifactId>jetty-ee10</artifactId> <version>12.0.0.beta0</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jetty-ee10-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>EE10 :: Jetty Maven Plugin</name> <description>Jetty EE10 maven plugins</description> <properties> <bundle-symbolic-name>${project.groupId}.maven.plugin</bundle-symbolic-name> <jetty.stopKey>FREEBEER</jetty.stopKey> <jetty.jvmArgs></jetty.jvmArgs> <jacoco.skip>true</jacoco.skip> </properties> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>test-reserve-ports</id> <phase>process-test-classes</phase> <goals> <goal>reserve-network-port</goal> </goals> <configuration> <portNames> <portName>test.stopPort</portName> <portName>test.jettyPort</portName> </portNames> </configuration> </execution> <execution> <id>reserve-ports</id> <phase>pre-integration-test</phase> <goals> <goal>reserve-network-port</goal> </goals> <configuration> <portNames> <portName>jetty.stopPort</portName> </portNames> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Dstop.port=@{test.stopPort} -Djetty.port=@{test.jettyPort}</argLine> <excludes> <exclude>**/IntegrationTest*.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <configuration> <goalPrefix>jetty</goalPrefix> </configuration> <executions> <execution> <id>exec-plugin-doc</id> <phase>generate-sources</phase> <goals> <goal>helpmojo</goal> </goals> </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> <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> <junitPackageName>org.eclipse.jetty.maven.its.ee10</junitPackageName> <streamLogsOnFailures>true</streamLogsOnFailures> <addTestClassPath>true</addTestClassPath> <ignoreFailures>true</ignoreFailures> <setupIncludes> <setupInclude>it-parent-pom/pom.xml</setupInclude> </setupIncludes> <pomExcludes> <!-- enable again when springboot is migrated to jakarta --> <pomExclude>javax-annotation-api/pom.xml</pomExclude> <!-- enable again when gwt is migrated to jakarta --> <pomExclude>jetty-start-gwt-it/pom.xml</pomExclude> <!-- bean-validation-webapp-2.25.1.war is not jakarta namespace ready --> <pomExclude>jetty-start-war-mojo-it/pom.xml</pomExclude> </pomExcludes> <scriptVariables> <jettyStopKey>${jetty.stopKey}</jettyStopKey> <jettyStopPort>${jetty.stopPort}</jettyStopPort> <maven.surefire.plugin.version>${maven.surefire.plugin.version}</maven.surefire.plugin.version> </scriptVariables> <settingsFile>src/it/settings.xml</settingsFile> <goals> <goal>clean</goal> </goals> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-artifact-transfer</artifactId> <version>${maven-artifact-transfer.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <exclusions> <exclusion> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-tools-api</artifactId> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-home</artifactId> <type>zip</type> <exclusions> <exclusion> <groupId>*</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-util</artifactId> </dependency> <dependency> <groupId>org.eclipse.jetty.ee10</groupId> <artifactId>jetty-ee10-webapp</artifactId> <optional>true</optional> <exclusions> <exclusion> <groupId>jakarta.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.eclipse.jetty.ee10</groupId> <artifactId>jetty-ee10-quickstart</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jetty.ee10</groupId> <artifactId>jetty-ee10-jaas</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jetty.ee10</groupId> <artifactId>jetty-ee10-plus</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-jndi</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jetty.ee10</groupId> <artifactId>jetty-ee10-servlet</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-http</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-io</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-jmx</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jetty.ee10</groupId> <artifactId>jetty-ee10-annotations</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jetty.ee10.websocket</groupId> <artifactId>jetty-ee10-websocket-jakarta-server</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jetty.ee10.websocket</groupId> <artifactId>jetty-ee10-websocket-jetty-server</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jetty.ee10</groupId> <artifactId>jetty-ee10-apache-jsp</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jetty.ee10</groupId> <artifactId>jetty-ee10-glassfish-jstl</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.transaction</groupId> <artifactId>jakarta.transaction-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-slf4j-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-client</artifactId> <scope>test</scope> </dependency> </dependencies> </project>