servlet31-archetype-webapp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.graphast</groupId> <artifactId>servlet31-archetype-webapp</artifactId> <version>1.0.11</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ====================================================================== --> <!-- Archetype for Servlet 3.1 --> <!-- ====================================================================== --> <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> <groupId>org.graphast</groupId> <artifactId>servlet31-archetype-webapp</artifactId> <version>1.0.11</version> <description>Webapp Archetype for Servlet 3.1</description> <name>Servlet 3.1 WebApp Archetype</name> <url>https://github.com/ARiDa/graphast</url> <licenses> <license> <name>GNU Lesser General Public License (LGPL), Version 2.1</name> <url>http://www.fsf.org/licensing/licenses/lgpl.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/ARiDa/graphast.git</connection> <url>https://github.com/ARiDa/graphast.git</url> <developerConnection>https://github.com/ARiDa/graphast.git</developerConnection> </scm> <developers> <developer> <id>graphast</id> <name>Graphast</name> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> <configuration> <altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo</altDeploymentRepository> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <phase>package</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>