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
- Host: GitHub
- URL: https://github.com/maciejwalkowiak/servlet3-maven-archetype
- Owner: maciejwalkowiak
- Created: 2013-05-22T14:48:34.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2020-08-30T11:31:11.000Z (about 5 years ago)
- Last Synced: 2025-04-03T14:40:22.662Z (7 months ago)
- Language: Java
- Homepage: http://maciejwalkowiak.github.io/servlet3-maven-archetype/
- Size: 323 KB
- Stars: 56
- Watchers: 8
- Forks: 32
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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
```