Browse Source

Added dependencies: standard taglib and jstl.

Jesper Hammarbäck 19 years ago
parent
commit
956fd5da75
1 changed files with 15 additions and 2 deletions
  1. 15
    2
      dddsample/pom.xml

+ 15
- 2
dddsample/pom.xml View File

1
-<?xml version="1.0" encoding="UTF-8"?><project>
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project>
2
   <modelVersion>4.0.0</modelVersion>
3
   <modelVersion>4.0.0</modelVersion>
3
   <groupId>se.citerus</groupId>
4
   <groupId>se.citerus</groupId>
4
   <artifactId>dddsample</artifactId>
5
   <artifactId>dddsample</artifactId>
6
   <name>DDDSample</name>
7
   <name>DDDSample</name>
7
   <version>1.0-SNAPSHOT</version>
8
   <version>1.0-SNAPSHOT</version>
8
   <description>This application shows a few key concepts of
9
   <description>This application shows a few key concepts of
9
-        Domain Driven Design implemented in Enterprise Java.</description>
10
+    Domain Driven Design implemented in Enterprise Java.
11
+  </description>
10
   <url>http://sourceforge.net/projects/dddsample/</url>
12
   <url>http://sourceforge.net/projects/dddsample/</url>
11
   <ciManagement />
13
   <ciManagement />
12
   <developers>
14
   <developers>
100
       <groupId>javax.servlet</groupId>
102
       <groupId>javax.servlet</groupId>
101
       <artifactId>servlet-api</artifactId>
103
       <artifactId>servlet-api</artifactId>
102
       <version>2.5</version>
104
       <version>2.5</version>
105
+      <scope>provided</scope>
106
+    </dependency>
107
+    <dependency>
108
+      <groupId>taglibs</groupId>
109
+      <artifactId>standard</artifactId>
110
+      <version>1.1.2</version>
111
+    </dependency>
112
+    <dependency>
113
+      <groupId>javax.servlet</groupId>
114
+      <artifactId>jstl</artifactId>
115
+      <version>1.1.2</version>
103
     </dependency>
116
     </dependency>
104
   </dependencies>
117
   </dependencies>
105
 </project>
118
 </project>