pom.xml 9.9KB

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