Skip to content

Commit

Permalink
Simplified dependencies; updated artifact name to spring-mvc-showcase…
Browse files Browse the repository at this point in the history
… for consistency
  • Loading branch information
Keith Donald committed Jun 24, 2011
1 parent 8c1425c commit 659b8c8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 23 deletions.
2 changes: 1 addition & 1 deletion README
Expand Up @@ -37,7 +37,7 @@ In your preferred IDE such as SpringSource Tool Suite (STS) or IDEA:
- Import spring-mvc-showcase as a Maven Project
- Drag-n-drop the project onto the "SpringSource tc Server Developer Edition" or another Servlet 2.5 or > Server to run, such as Tomcat.

Access the deployed web application at: http://localhost:8080/mvc-showcase/
Access the deployed web application at: http://localhost:8080/spring-mvc-showcase/

Other info:
-------------------
Expand Down
31 changes: 11 additions & 20 deletions pom.xml
Expand Up @@ -3,8 +3,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.samples</groupId>
<artifactId>mvc-showcase</artifactId>
<name>mvc-showcase</name>
<artifactId>spring-mvc-showcase</artifactId>
<name>spring-mvc-showcase</name>
<packaging>war</packaging>
<version>1.0.0-BUILD-SNAPSHOT</version>
<properties>
Expand Down Expand Up @@ -85,8 +85,13 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>jstl-api</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jstl-impl</artifactId>
<version>1.2</version>
</dependency>

Expand All @@ -99,9 +104,9 @@

<!-- Rome Atom+RSS -->
<dependency>
<groupId>rome</groupId>
<groupId>net.java.dev.rome</groupId>
<artifactId>rome</artifactId>
<version>1.0</version>
<version>1.0.0</version>
</dependency>

<!-- JSR 303 with Hibernate Validator -->
Expand Down Expand Up @@ -160,20 +165,6 @@
<url>http://maven.springframework.org/milestone</url>
<snapshots><enabled>false</enabled></snapshots>
</repository>
<!-- For Hibernate Validator -->
<repository>
<id>org.jboss.repository.releases</id>
<name>JBoss Maven Release Repository</name>
<url>https://repository.jboss.org/nexus/content/repositories/releases</url>
<snapshots><enabled>false</enabled></snapshots>
</repository>
<!-- For Rome -->
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<snapshots><enabled>false</enabled></snapshots>
</repository>
</repositories>
<build>
<plugins>
Expand Down
4 changes: 2 additions & 2 deletions src/main/webapp/WEB-INF/views/home.jsp
Expand Up @@ -2,12 +2,12 @@
<%@ page session="false" %>
<html>
<head>
<title>mvc-showcase</title>
<title>spring-mvc-showcase</title>
<link href="<c:url value="/resources/form.css" />" rel="stylesheet" type="text/css" />
<link href="<c:url value="/resources/jqueryui/1.8/themes/base/jquery.ui.all.css" />" rel="stylesheet" type="text/css"/>
</head>
<body>
<h1>mvc-showcase</h1>
<h1>spring-mvc-showcase</h1>
<p>Recommended: Using a Web Developer tool such a Firebug to inspect the client/server interaction</p>
<div id="tabs">
<ul>
Expand Down

0 comments on commit 659b8c8

Please sign in to comment.