Parcourir la source

Added jetty port parameter to top level pom, upgraded to Hiberate 3.3.2.GA.

peter_backlund il y a 16 ans
Parent
révision
c2faba6eb7
1 fichiers modifiés avec 10 ajouts et 1 suppressions
  1. 10
    1
      dddsample/pom.xml

+ 10
- 1
dddsample/pom.xml Voir le fichier

@@ -65,6 +65,7 @@
65 65
     <spring.version>2.5.6</spring.version>
66 66
     <cxf.version>2.2.7</cxf.version>
67 67
     <slf4j.version>1.5.11</slf4j.version>
68
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
68 69
   </properties>
69 70
   <build>
70 71
     <defaultGoal>install</defaultGoal>
@@ -88,6 +89,14 @@
88 89
           <groupId>org.mortbay.jetty</groupId>
89 90
           <artifactId>maven-jetty-plugin</artifactId>
90 91
           <version>6.1.19</version>
92
+          <configuration>
93
+            <systemProperties>
94
+              <systemProperty>
95
+                <name>jetty.port</name>
96
+                <value>${jetty.port}</value>
97
+              </systemProperty>
98
+            </systemProperties>
99
+          </configuration>
91 100
         </plugin>
92 101
         <plugin>
93 102
           <artifactId>maven-assembly-plugin</artifactId>
@@ -216,7 +225,7 @@
216 225
       <dependency>
217 226
         <groupId>org.hibernate</groupId>
218 227
         <artifactId>hibernate-core</artifactId>
219
-        <version>3.3.1.GA</version>
228
+        <version>3.3.2.GA</version>
220 229
       </dependency>
221 230
       <dependency>
222 231
         <groupId>javassist</groupId>