Procházet zdrojové kódy

Added dependencies: standard taglib and jstl.

Jesper Hammarbäck před 19 roky
rodič
revize
956fd5da75
1 změnil soubory, kde provedl 15 přidání a 2 odebrání
  1. 15
    2
      dddsample/pom.xml

+ 15
- 2
dddsample/pom.xml Zobrazit soubor

@@ -1,4 +1,5 @@
1
-<?xml version="1.0" encoding="UTF-8"?><project>
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project>
2 3
   <modelVersion>4.0.0</modelVersion>
3 4
   <groupId>se.citerus</groupId>
4 5
   <artifactId>dddsample</artifactId>
@@ -6,7 +7,8 @@
6 7
   <name>DDDSample</name>
7 8
   <version>1.0-SNAPSHOT</version>
8 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 12
   <url>http://sourceforge.net/projects/dddsample/</url>
11 13
   <ciManagement />
12 14
   <developers>
@@ -100,6 +102,17 @@
100 102
       <groupId>javax.servlet</groupId>
101 103
       <artifactId>servlet-api</artifactId>
102 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 116
     </dependency>
104 117
   </dependencies>
105 118
 </project>