| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Readme.txt | 2011-05-09 | 901 Bytes | |
| Totals: 1 Item | 901 Bytes | 0 |
There are no downloads because this project should be used through maven.
To quickly create a web application type the following command:
mvn archetype:generate -DarchetypeGroupId=org.mortar -DarchetypeArtifactId=mortar-webapp-archetype -DarchetypeCatalog=http://www.mortarproject.org/maven2/archetype-catalog.xml
You will be prompted for a groupId, an artifactId and a base package.
If you want to add dependencies to your maven project:
<dependency>
<groupId>org.mortar</groupId>
<artifactId>mortar-extjs-ux</artifactId>
<version>${mortar.version}</version>
</dependency>
<dependency>
<groupId>org.mortar</groupId>
<artifactId>mortar-core</artifactId>
<version>${mortar.version}</version>
</dependency>
<dependency>
<groupId>org.mortar</groupId>
<artifactId>mortar-persistence-hibernate</artifactId>
<version>${mortar.version}</version>
</dependency>