Skip to content

Commit c2faba6

Browse files
committed
Added jetty port parameter to top level pom, upgraded to Hiberate 3.3.2.GA.
1 parent 17e50df commit c2faba6

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

dddsample/pom.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
<spring.version>2.5.6</spring.version>
6666
<cxf.version>2.2.7</cxf.version>
6767
<slf4j.version>1.5.11</slf4j.version>
68+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6869
</properties>
6970
<build>
7071
<defaultGoal>install</defaultGoal>
@@ -88,6 +89,14 @@
8889
<groupId>org.mortbay.jetty</groupId>
8990
<artifactId>maven-jetty-plugin</artifactId>
9091
<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>
91100
</plugin>
92101
<plugin>
93102
<artifactId>maven-assembly-plugin</artifactId>
@@ -216,7 +225,7 @@
216225
<dependency>
217226
<groupId>org.hibernate</groupId>
218227
<artifactId>hibernate-core</artifactId>
219-
<version>3.3.1.GA</version>
228+
<version>3.3.2.GA</version>
220229
</dependency>
221230
<dependency>
222231
<groupId>javassist</groupId>

0 commit comments

Comments
 (0)