Spring-Beispiel um eine View mit Controller erweitert
[percentcodec] / examples / spring / pom.xml
index 90010cc..b6924e4 100644 (file)
   <packaging>war</packaging>
   <name>Juplo - Examples: Spring-MVC</name>
 
+  <dependencies>
+
+    <!--  Spring -->
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-context</artifactId>
+      <version>${springframework.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-web</artifactId>
+      <version>${springframework.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-webmvc</artifactId>
+      <version>${springframework.version}</version>
+    </dependency>
+
+  </dependencies>
+
 </project>