|
Project Information
Links
|
Lightweight, expressive Java MVC2 framework inspired by Ruby on Rails (yes, another one). This one is good though, honest. The easiest way to try SeemoreJ is to follow these introductory articles.
The second easiest way to try SeemoreJ is to create a new project using the SeemoreJ archetype and guessing the rest. Best to follow the introductory articles, really. mvn archetype:generate -DarchetypeCatalog=http://maven.malethan.com/repo/archetype-catalog.xml The third easiest way is to add these sections to your project POM and manually create the small number of supporting files. You'll definitely want to follow the introductory articles rather than do this. <repositories>
<repository>
<id>central</id>
<url>http://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>jboss</id>
<url>http://repository.jboss.org/maven2/</url>
</repository>
<repository>
<id>malethan</id>
<url>http://maven.malethan.com/repo/</url>
</repository>
</repositories>
<!-- ... -->
<dependencies>
<dependency>
<groupId>com.malethan.seemorej</groupId>
<artifactId>seemorej</artifactId>
<version>0.2</version>
</dependency>
<dependency>
<groupId>com.malethan.seemorej</groupId>
<artifactId>seemorej-hibernate</artifactId>
<version>0.2</version>
</dependency>
</dependencies>
|