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