An open API service indexing awesome lists of open source software.

https://github.com/maciejwalkowiak/servlet3-maven-archetype

Maven archetype for basic Servlet 3 based Java web application - no xml, Tomcat 7 ready
https://github.com/maciejwalkowiak/servlet3-maven-archetype

Last synced: 6 months ago
JSON representation

Maven archetype for basic Servlet 3 based Java web application - no xml, Tomcat 7 ready

Awesome Lists containing this project

README

          

# servlet3-maven-archetype

Project provides Maven archetype for creating plain simple Servlet 3 based webapplication.

- no dependencies to any web framework - just plain Java Servlet
- no XML
- Tomcat 7 plugin included - gets your application running in seconds

## Installation

Clone this repository:

```
$ git clone https://github.com/maciejwalkowiak/servlet3-maven-archetype.git
```

Install it to local Maven repository

```
$ cd servlet3-maven-archetype
$ mvn install
```

## Create project based on this archetype

```
$ mvn archetype:generate \
-DarchetypeGroupId=pl.maciejwalkowiak \
-DarchetypeArtifactId=servlet3-webapp-archetype \
-DarchetypeVersion=1.0.1
```

Run project:

```
$ mvn tomcat7:run
```