소스 검색

Added CGLIB dep, fixed Jetty plugin version, specified resources file encoding to silence warning

peter_backlund 17 년 전
부모
커밋
f8a01cfd96
1개의 변경된 파일14개의 추가작업 그리고 1개의 파일을 삭제
  1. 14
    1
      dddsample/pom.xml

+ 14
- 1
dddsample/pom.xml 파일 보기

87
       <plugin>
87
       <plugin>
88
         <groupId>org.mortbay.jetty</groupId>
88
         <groupId>org.mortbay.jetty</groupId>
89
         <artifactId>maven-jetty-plugin</artifactId>
89
         <artifactId>maven-jetty-plugin</artifactId>
90
+        <version>6.1.19</version>
90
       </plugin>
91
       </plugin>
91
 
92
 
92
       <plugin>
93
       <plugin>
123
           </descriptorRefs>
124
           </descriptorRefs>
124
         </configuration>
125
         </configuration>
125
       </plugin>
126
       </plugin>
126
-      
127
+
128
+      <plugin>
129
+        <artifactId>maven-resources-plugin</artifactId>
130
+        <configuration>
131
+          <encoding>UTF-8</encoding>
132
+        </configuration>
133
+      </plugin>
134
+
127
     </plugins>
135
     </plugins>
128
   </build>
136
   </build>
129
   <dependencies>
137
   <dependencies>
161
       <scope>test</scope>
169
       <scope>test</scope>
162
     </dependency>
170
     </dependency>
163
     <dependency>
171
     <dependency>
172
+      <groupId>cglib</groupId>
173
+      <artifactId>cglib-nodep</artifactId>
174
+      <version>2.2</version>
175
+    </dependency>
176
+    <dependency>
164
       <groupId>org.hibernate</groupId>
177
       <groupId>org.hibernate</groupId>
165
       <artifactId>hibernate-core</artifactId>
178
       <artifactId>hibernate-core</artifactId>
166
       <version>3.3.1.GA</version>
179
       <version>3.3.1.GA</version>