secure-rest-webapp-archetype
Used in: 0 components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
Overview
Description
Maven Archetype for building Secure RESTful Web Services Archetype with Apache Shiro 1.2.3, Jersey 1.18.1 and Google Guice 3.0
Snippets
<dependency> <groupId>com.pampanet</groupId> <artifactId>secure-rest-webapp-archetype</artifactId> <version>0.1.0</version> </dependency>
Maven POM File
<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>com.pampanet</groupId> <artifactId>secure-rest-webapp-archetype</artifactId> <version>0.1.0</version> <packaging>maven-archetype</packaging> <name>secure-rest-webapp-archetype</name> <description>Maven Archetype for building Secure RESTful Web Services Archetype with Apache Shiro 1.2.3, Jersey 1.18.1 and Google Guice 3.0</description> <scm> <connection>scm:git:git@github.com:pabiagioli/secure-rest-webapp-archetype.git</connection> <developerConnection>scm:git:git@github.com:pabiagioli/secure-rest-webapp-archetype.git</developerConnection> <url>scm:git:git@github.com:pabiagioli/secure-rest-webapp-archetype.git</url> <tag>secure-rest-webapp-archetype-0.1.0</tag> </scm> <developers> <developer> <name>Pablo Biagioli</name> <email>pabiagioli@gmail.com</email> <organization>PampaNet</organization> <url>http://github.com/pabiagioli</url> </developer> </developers> <licenses> <license> <name>GNU General Public License (GPL)</name> <url>http://www.gnu.org/licenses/gpl.txt</url> </license> </licenses> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url> https://oss.sonatype.org/content/repositories/snapshots </url> </snapshotRepository> <repository> <id>ossrh</id> <url> https://oss.sonatype.org/service/local/staging/deploy/maven2/ </url> </repository> </distributionManagement> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>2.2</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <url> http://github.com/pabiagioli/shiro-guice-jersey-bootstrap </url> </project>