123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  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. </plugin>
  112. </plugins>
  113. </pluginManagement>
  114. </build>
  115. <dependencies>
  116. <dependency>
  117. <groupId>commons-lang</groupId>
  118. <artifactId>commons-lang</artifactId>
  119. <version>2.3</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>commons-io</groupId>
  123. <artifactId>commons-io</artifactId>
  124. <version>1.3.1</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-collections</groupId>
  128. <artifactId>commons-collections</artifactId>
  129. <version>3.2.1</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.slf4j</groupId>
  133. <artifactId>slf4j-log4j12</artifactId>
  134. <version>${slf4j.version}</version>
  135. <scope>runtime</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.slf4j</groupId>
  139. <artifactId>jcl-over-slf4j</artifactId>
  140. <version>${slf4j.version}</version>
  141. <scope>runtime</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.slf4j</groupId>
  145. <artifactId>slf4j-api</artifactId>
  146. <version>${slf4j.version}</version>
  147. <scope>runtime</scope>
  148. </dependency>
  149. <dependency>
  150. <groupId>junit</groupId>
  151. <artifactId>junit</artifactId>
  152. <version>4.4</version>
  153. <scope>test</scope>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.easymock</groupId>
  157. <artifactId>easymock</artifactId>
  158. <version>2.3</version>
  159. <scope>test</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.mockito</groupId>
  163. <artifactId>mockito-core</artifactId>
  164. <version>1.8.0</version>
  165. <scope>test</scope>
  166. </dependency>
  167. </dependencies>
  168. <dependencyManagement>
  169. <dependencies>
  170. <dependency>
  171. <groupId>org.springframework</groupId>
  172. <artifactId>spring-webmvc</artifactId>
  173. <version>${spring.version}</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.springframework</groupId>
  177. <artifactId>spring-web</artifactId>
  178. <version>${spring.version}</version>
  179. <exclusions>
  180. <exclusion>
  181. <groupId>commons-logging</groupId>
  182. <artifactId>commons-logging</artifactId>
  183. </exclusion>
  184. </exclusions>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.springframework</groupId>
  188. <artifactId>spring-core</artifactId>
  189. <version>${spring.version}</version>
  190. <exclusions>
  191. <exclusion>
  192. <groupId>commons-logging</groupId>
  193. <artifactId>commons-logging</artifactId>
  194. </exclusion>
  195. </exclusions>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.springframework</groupId>
  199. <artifactId>spring</artifactId>
  200. <version>${spring.version}</version>
  201. <exclusions>
  202. <exclusion>
  203. <groupId>commons-logging</groupId>
  204. <artifactId>commons-logging</artifactId>
  205. </exclusion>
  206. </exclusions>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.springframework</groupId>
  210. <artifactId>spring-test</artifactId>
  211. <version>${spring.version}</version>
  212. <scope>test</scope>
  213. </dependency>
  214. <dependency>
  215. <groupId>cglib</groupId>
  216. <artifactId>cglib-nodep</artifactId>
  217. <version>2.2</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.hibernate</groupId>
  221. <artifactId>hibernate-core</artifactId>
  222. <version>3.3.1.GA</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>javassist</groupId>
  226. <artifactId>javassist</artifactId>
  227. <version>3.8.0.GA</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.hibernate</groupId>
  231. <artifactId>hibernate-annotations</artifactId>
  232. <version>3.4.0.GA</version>
  233. </dependency>
  234. <dependency>
  235. <groupId>commons-dbcp</groupId>
  236. <artifactId>commons-dbcp</artifactId>
  237. <version>1.2.2</version>
  238. <scope>runtime</scope>
  239. </dependency>
  240. <dependency>
  241. <groupId>hsqldb</groupId>
  242. <artifactId>hsqldb</artifactId>
  243. <version>1.8.0.7</version>
  244. <scope>runtime</scope>
  245. </dependency>
  246. <dependency>
  247. <groupId>javax.servlet</groupId>
  248. <artifactId>servlet-api</artifactId>
  249. <version>2.5</version>
  250. <scope>provided</scope>
  251. </dependency>
  252. <dependency>
  253. <groupId>taglibs</groupId>
  254. <artifactId>standard</artifactId>
  255. <version>1.1.2</version>
  256. <scope>runtime</scope>
  257. </dependency>
  258. <dependency>
  259. <groupId>javax.servlet</groupId>
  260. <artifactId>jstl</artifactId>
  261. <version>1.1.2</version>
  262. <scope>runtime</scope>
  263. </dependency>
  264. <dependency>
  265. <groupId>opensymphony</groupId>
  266. <artifactId>sitemesh</artifactId>
  267. <version>2.3</version>
  268. <scope>runtime</scope>
  269. </dependency>
  270. <dependency>
  271. <groupId>org.apache.activemq</groupId>
  272. <artifactId>activemq-core</artifactId>
  273. <version>5.2.0</version>
  274. <exclusions>
  275. <exclusion>
  276. <groupId>commons-logging</groupId>
  277. <artifactId>commons-logging</artifactId>
  278. </exclusion>
  279. <exclusion>
  280. <groupId>commons-logging</groupId>
  281. <artifactId>commons-logging-api</artifactId>
  282. </exclusion>
  283. </exclusions>
  284. </dependency>
  285. <dependency>
  286. <groupId>org.apache.xbean</groupId>
  287. <artifactId>xbean-spring</artifactId>
  288. <version>3.4.3</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>org.apache.cxf</groupId>
  292. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  293. <version>${cxf.version}</version>
  294. </dependency>
  295. <dependency>
  296. <groupId>org.apache.cxf</groupId>
  297. <artifactId>cxf-rt-transports-http</artifactId>
  298. <version>${cxf.version}</version>
  299. </dependency>
  300. <dependency>
  301. <groupId>org.apache.cxf</groupId>
  302. <artifactId>cxf-rt-transports-http-jetty</artifactId>
  303. <version>${cxf.version}</version>
  304. <scope>test</scope>
  305. <exclusions>
  306. <exclusion>
  307. <groupId>org.slf4j</groupId>
  308. <artifactId>slf4j-jdk14</artifactId>
  309. </exclusion>
  310. </exclusions>
  311. </dependency>
  312. <dependency>
  313. <groupId>org.apache.cxf</groupId>
  314. <artifactId>cxf-rt-frontend-jaxrs</artifactId>
  315. <version>${cxf.version}</version>
  316. </dependency>
  317. <dependency>
  318. <groupId>javax.ws.rs</groupId>
  319. <artifactId>jsr311-api</artifactId>
  320. <version>1.0</version>
  321. </dependency>
  322. <dependency>
  323. <groupId>com.lowagie</groupId>
  324. <artifactId>itext</artifactId>
  325. <version>2.1.7</version>
  326. </dependency>
  327. </dependencies>
  328. </dependencyManagement>
  329. <reporting>
  330. <plugins>
  331. <plugin>
  332. <artifactId>maven-javadoc-plugin</artifactId>
  333. </plugin>
  334. <plugin>
  335. <artifactId>maven-jxr-plugin</artifactId>
  336. </plugin>
  337. <plugin>
  338. <artifactId>maven-surefire-report-plugin</artifactId>
  339. </plugin>
  340. <plugin>
  341. <groupId>org.codehaus.mojo</groupId>
  342. <artifactId>cobertura-maven-plugin</artifactId>
  343. </plugin>
  344. <plugin>
  345. <artifactId>maven-checkstyle-plugin</artifactId>
  346. <configuration>
  347. <configLocation>src/main/config/checkstyle.xml</configLocation>
  348. <!-- Java source code generated from WSDL -->
  349. <excludes>**/com/aggregator/**/*</excludes>
  350. </configuration>
  351. </plugin>
  352. </plugins>
  353. </reporting>
  354. </project>