
archetype-resources.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jersey-example-java8-webapp
Show all versions of jersey-example-java8-webapp
Jersey (Java8) WebApp Example Archetype.
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2015, 2024 Oracle and/or its affiliates. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v. 2.0, which is available at http://www.eclipse.org/legal/epl-2.0. This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License v. 2.0 are satisfied: GNU General Public License, version 2 with the GNU Classpath Exception, which is available at https://www.gnu.org/software/classpath/license.html. SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.glassfish.jersey.examples</groupId> <artifactId>webapp-example-parent</artifactId> <relativePath>../webapp-example-parent/pom.xml</relativePath> <version>${version}</version> </parent> <!-- Use in the case when Jetty is not needed <parent> <groupId>org.glassfish.jersey.examples</groupId> <artifactId>project</artifactId> <version>${version}</version> </parent> --> <artifactId>${artifactId}</artifactId> <packaging>war</packaging> <name>${projectName}</name> <description>${projectDescription}</description> <dependencies> <dependency> <groupId>org.glassfish.jersey.containers</groupId> <artifactId>jersey-container-grizzly2-http</artifactId> </dependency> <dependency> <groupId>org.glassfish.jersey.containers</groupId> <artifactId>jersey-container-servlet</artifactId> </dependency> <dependency> <groupId>org.glassfish.jersey.inject</groupId> <artifactId>jersey-hk2</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <configuration> <mainClass>${package}.App</mainClass> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <inherited>true</inherited> <configuration> <source>${java.version}</source> <target>${java.version}</target> <showWarnings>false</showWarnings> <fork>false</fork> </configuration> </plugin> <!-- Run the application using "mvn jetty:run" --> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <configuration> <scanIntervalSeconds>5</scanIntervalSeconds> <stopPort>9999</stopPort> <stopKey>STOP</stopKey> <webApp> <contextPath>/</contextPath> <webInfIncludeJarPattern>.*/.*jersey-[^/]\.jar$</webInfIncludeJarPattern> </webApp> <systemProperties> <systemProperty> <name>jetty.port</name> <value>${jersey.config.test.container.port}</value> </systemProperty> </systemProperties> <war>${project.build.directory}/${project.build.finalName}.war</war> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>${war.mvn.plugin.version}</version> </plugin> </plugins> </build> <profiles> <profile> <id>pre-release</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>xml-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> <properties> <java.version>17</java.version> <jersey.config.test.container.port>8080</jersey.config.test.container.port> </properties> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy