
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 easypack-archetype-jetty
Show all versions of easypack-archetype-jetty
Maven archetype for creating a project that uses an embedded Jetty and is packaged with an EasyPack packaging
The newest version!
<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> <groupId>${groupId}</groupId> <artifactId>${artifactId}</artifactId> <version>${version}</version> <packaging>${packaging}</packaging> <name>${artifactId}</name> <!-- FIXME change it to the project's website --> <url>http://maven.apache.org</url> <properties> <jetty.version>9.3.0.M2</jetty.version> </properties> <dependencies> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <version>${jetty.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <version>${jetty.version}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.github.easypack</groupId> <artifactId>easypack-maven-plugin</artifactId> <version>1.0.BETA</version> <extensions>true</extensions> #if($groupId != $package) <configuration> <mainClass>${package}.start.Start</mainClass> </configuration> #end </plugin> </plugins> </build> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy