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