pom.xml 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>se.citerus</groupId>
  5. <artifactId>dddsample</artifactId>
  6. <packaging>pom</packaging>
  7. <name>DDDSample</name>
  8. <version>1.2-SNAPSHOT</version>
  9. <modules>
  10. <module>external</module>
  11. <module>tracking</module>
  12. </modules>
  13. <description>This application shows a few key concepts of
  14. Domain Driven Design implemented in Enterprise Java.
  15. </description>
  16. <url>http://dddsample.sourceforge.net</url>
  17. <distributionManagement>
  18. <site>
  19. <id>sf</id>
  20. <url>scp://shell.sf.net/home/groups/d/dd/dddsample/htdocs/preview</url>
  21. </site>
  22. </distributionManagement>
  23. <ciManagement/>
  24. <developers>
  25. <developer>
  26. <id>eric_evans</id>
  27. <name>Eric Evans</name>
  28. <organization>Domain Language, Inc.</organization>
  29. <organizationUrl>http://www.domainlanguage.com</organizationUrl>
  30. <timezone>-8</timezone>
  31. </developer>
  32. <developer>
  33. <id>peba</id>
  34. <name>Peter Backlund</name>
  35. <organization>Citerus</organization>
  36. <organizationUrl>http://www.citerus.se</organizationUrl>
  37. <timezone>+1</timezone>
  38. </developer>
  39. <developer>
  40. <id>patrikfr</id>
  41. <name>Patrik Fredriksson</name>
  42. <organization>Citerus</organization>
  43. <organizationUrl>http://www.citerus.se</organizationUrl>
  44. <timezone>+1</timezone>
  45. </developer>
  46. <developer>
  47. <id>jeham</id>
  48. <name>Jesper Hammarback</name>
  49. <organization>Citerus</organization>
  50. <organizationUrl>http://www.citerus.se</organizationUrl>
  51. <timezone>+1</timezone>
  52. </developer>
  53. <developer>
  54. <id>jorgen_falk</id>
  55. <name>Jorgen Falk</name>
  56. <organization>Citerus</organization>
  57. <organizationUrl>http://www.citerus.se</organizationUrl>
  58. <timezone>+1</timezone>
  59. </developer>
  60. </developers>
  61. <licenses>
  62. <license>
  63. <name>MIT</name>
  64. <url>http://www.opensource.org/licenses/mit-license.php</url>
  65. <distribution>repo</distribution>
  66. </license>
  67. </licenses>
  68. <scm>
  69. <developerConnection>scm:svn:https://dddsample.svn.sourceforge.net/svnroot/dddsample</developerConnection>
  70. <url>http://ddd.sventon.org</url>
  71. </scm>
  72. <properties>
  73. <spring.version>2.5.6</spring.version>
  74. <cxf.version>2.2.2</cxf.version>
  75. <slf4j.version>1.5.8</slf4j.version>
  76. </properties>
  77. <build>
  78. <defaultGoal>package</defaultGoal>
  79. <pluginManagement>
  80. <plugins>
  81. <plugin>
  82. <artifactId>maven-compiler-plugin</artifactId>
  83. <configuration>
  84. <source>1.6</source>
  85. <target>1.6</target>
  86. <encoding>UTF-8</encoding>
  87. </configuration>
  88. </plugin>
  89. <plugin>
  90. <artifactId>maven-resources-plugin</artifactId>
  91. <configuration>
  92. <encoding>UTF-8</encoding>
  93. </configuration>
  94. </plugin>
  95. <plugin>
  96. <groupId>org.mortbay.jetty</groupId>
  97. <artifactId>maven-jetty-plugin</artifactId>
  98. <version>6.1.19</version>
  99. </plugin>
  100. <plugin>
  101. <artifactId>maven-assembly-plugin</artifactId>
  102. <configuration>
  103. <descriptorRefs>
  104. <descriptorRef>src</descriptorRef>
  105. </descriptorRefs>
  106. </configuration>
  107. </plugin>
  108. <plugin>
  109. <artifactId>maven-surefire-plugin</artifactId>
  110. <version>2.4.2</version>
  111. <configuration>
  112. <useFile>false</useFile>
  113. </configuration>
  114. </plugin>
  115. </plugins>
  116. </pluginManagement>
  117. </build>
  118. <dependencies>
  119. <dependency>
  120. <groupId>commons-lang</groupId>
  121. <artifactId>commons-lang</artifactId>
  122. <version>2.3</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>commons-io</groupId>
  126. <artifactId>commons-io</artifactId>
  127. <version>1.3.1</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>commons-collections</groupId>
  131. <artifactId>commons-collections</artifactId>
  132. <version>3.2.1</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.slf4j</groupId>
  136. <artifactId>slf4j-log4j12</artifactId>
  137. <version>${slf4j.version}</version>
  138. <scope>runtime</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.slf4j</groupId>
  142. <artifactId>jcl-over-slf4j</artifactId>
  143. <version>${slf4j.version}</version>
  144. <scope>runtime</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.slf4j</groupId>
  148. <artifactId>slf4j-api</artifactId>
  149. <version>${slf4j.version}</version>
  150. <scope>runtime</scope>
  151. </dependency>
  152. <dependency>
  153. <groupId>junit</groupId>
  154. <artifactId>junit</artifactId>
  155. <version>4.4</version>
  156. <scope>test</scope>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.easymock</groupId>
  160. <artifactId>easymock</artifactId>
  161. <version>2.3</version>
  162. <scope>test</scope>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.mockito</groupId>
  166. <artifactId>mockito-core</artifactId>
  167. <version>1.8.0</version>
  168. <scope>test</scope>
  169. </dependency>
  170. </dependencies>
  171. <dependencyManagement>
  172. <dependencies>
  173. <dependency>
  174. <groupId>org.springframework</groupId>
  175. <artifactId>spring-webmvc</artifactId>
  176. <version>${spring.version}</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.springframework</groupId>
  180. <artifactId>spring-web</artifactId>
  181. <version>${spring.version}</version>
  182. <exclusions>
  183. <exclusion>
  184. <groupId>commons-logging</groupId>
  185. <artifactId>commons-logging</artifactId>
  186. </exclusion>
  187. </exclusions>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.springframework</groupId>
  191. <artifactId>spring-core</artifactId>
  192. <version>${spring.version}</version>
  193. <exclusions>
  194. <exclusion>
  195. <groupId>commons-logging</groupId>
  196. <artifactId>commons-logging</artifactId>
  197. </exclusion>
  198. </exclusions>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.springframework</groupId>
  202. <artifactId>spring</artifactId>
  203. <version>${spring.version}</version>
  204. <exclusions>
  205. <exclusion>
  206. <groupId>commons-logging</groupId>
  207. <artifactId>commons-logging</artifactId>
  208. </exclusion>
  209. </exclusions>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.springframework</groupId>
  213. <artifactId>spring-test</artifactId>
  214. <version>${spring.version}</version>
  215. <scope>test</scope>
  216. </dependency>
  217. <dependency>
  218. <groupId>cglib</groupId>
  219. <artifactId>cglib-nodep</artifactId>
  220. <version>2.2</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.hibernate</groupId>
  224. <artifactId>hibernate-core</artifactId>
  225. <version>3.3.1.GA</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>javassist</groupId>
  229. <artifactId>javassist</artifactId>
  230. <version>3.8.0.GA</version>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.hibernate</groupId>
  234. <artifactId>hibernate-annotations</artifactId>
  235. <version>3.4.0.GA</version>
  236. </dependency>
  237. <dependency>
  238. <groupId>commons-dbcp</groupId>
  239. <artifactId>commons-dbcp</artifactId>
  240. <version>1.2.2</version>
  241. <scope>runtime</scope>
  242. </dependency>
  243. <dependency>
  244. <groupId>hsqldb</groupId>
  245. <artifactId>hsqldb</artifactId>
  246. <version>1.8.0.7</version>
  247. <scope>runtime</scope>
  248. </dependency>
  249. <dependency>
  250. <groupId>javax.servlet</groupId>
  251. <artifactId>servlet-api</artifactId>
  252. <version>2.5</version>
  253. <scope>provided</scope>
  254. </dependency>
  255. <dependency>
  256. <groupId>taglibs</groupId>
  257. <artifactId>standard</artifactId>
  258. <version>1.1.2</version>
  259. <scope>runtime</scope>
  260. </dependency>
  261. <dependency>
  262. <groupId>javax.servlet</groupId>
  263. <artifactId>jstl</artifactId>
  264. <version>1.1.2</version>
  265. <scope>runtime</scope>
  266. </dependency>
  267. <dependency>
  268. <groupId>opensymphony</groupId>
  269. <artifactId>sitemesh</artifactId>
  270. <version>2.3</version>
  271. <scope>runtime</scope>
  272. </dependency>
  273. <dependency>
  274. <groupId>org.apache.activemq</groupId>
  275. <artifactId>activemq-core</artifactId>
  276. <version>5.2.0</version>
  277. <exclusions>
  278. <exclusion>
  279. <groupId>commons-logging</groupId>
  280. <artifactId>commons-logging</artifactId>
  281. </exclusion>
  282. <exclusion>
  283. <groupId>commons-logging</groupId>
  284. <artifactId>commons-logging-api</artifactId>
  285. </exclusion>
  286. </exclusions>
  287. </dependency>
  288. <dependency>
  289. <groupId>org.apache.xbean</groupId>
  290. <artifactId>xbean-spring</artifactId>
  291. <version>3.4.3</version>
  292. </dependency>
  293. <dependency>
  294. <groupId>org.apache.cxf</groupId>
  295. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  296. <version>${cxf.version}</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>org.apache.cxf</groupId>
  300. <artifactId>cxf-rt-transports-http</artifactId>
  301. <version>${cxf.version}</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>org.apache.cxf</groupId>
  305. <artifactId>cxf-rt-transports-http-jetty</artifactId>
  306. <version>${cxf.version}</version>
  307. <scope>test</scope>
  308. <exclusions>
  309. <exclusion>
  310. <groupId>org.slf4j</groupId>
  311. <artifactId>slf4j-jdk14</artifactId>
  312. </exclusion>
  313. </exclusions>
  314. </dependency>
  315. <dependency>
  316. <groupId>org.apache.cxf</groupId>
  317. <artifactId>cxf-rt-frontend-jaxrs</artifactId>
  318. <version>${cxf.version}</version>
  319. </dependency>
  320. <dependency>
  321. <groupId>javax.ws.rs</groupId>
  322. <artifactId>jsr311-api</artifactId>
  323. <version>1.0</version>
  324. </dependency>
  325. <dependency>
  326. <groupId>com.lowagie</groupId>
  327. <artifactId>itext</artifactId>
  328. <version>2.1.7</version>
  329. </dependency>
  330. </dependencies>
  331. </dependencyManagement>
  332. <reporting>
  333. <plugins>
  334. <plugin>
  335. <artifactId>maven-javadoc-plugin</artifactId>
  336. </plugin>
  337. <plugin>
  338. <artifactId>maven-jxr-plugin</artifactId>
  339. </plugin>
  340. <plugin>
  341. <artifactId>maven-surefire-report-plugin</artifactId>
  342. </plugin>
  343. <plugin>
  344. <groupId>org.codehaus.mojo</groupId>
  345. <artifactId>cobertura-maven-plugin</artifactId>
  346. </plugin>
  347. <plugin>
  348. <artifactId>maven-checkstyle-plugin</artifactId>
  349. <configuration>
  350. <configLocation>src/main/config/checkstyle.xml</configLocation>
  351. <!-- Java source code generated from WSDL -->
  352. <excludes>**/com/aggregator/**/*</excludes>
  353. </configuration>
  354. </plugin>
  355. </plugins>
  356. </reporting>
  357. </project>