pom.xml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>UTIS_WALL_RTC</groupId>
  6. <artifactId>UTIS_WALL_RTC</artifactId>
  7. <packaging>war</packaging>
  8. <version>1.0.0</version>
  9. <name>UTIS_WALL_RTC</name>
  10. <properties>
  11. <java.version>1.6</java.version>
  12. <maven.compiler.target>1.6</maven.compiler.target>
  13. <maven.compiler.source>1.6</maven.compiler.source>
  14. <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
  16. <spring.maven.artifact.version>3.2.9.RELEASE</spring.maven.artifact.version>
  17. <spring.security.maven.artifact.version>3.2.9.RELEASE</spring.security.maven.artifact.version>
  18. <egovframework.rte.version>3.10.0</egovframework.rte.version>
  19. <org.aspectj-version>1.7.3</org.aspectj-version>
  20. <!-- web servlet -->
  21. <jsp.version>2.2.1</jsp.version>
  22. <jstl.version>1.2.1</jstl.version>
  23. <servlet.version>2.5</servlet.version>
  24. <org.apache.tiles-version>3.0.8</org.apache.tiles-version>
  25. <failOnMissingWebXml>false</failOnMissingWebXml>
  26. </properties>
  27. <repositories>
  28. <repository>
  29. <id>gnt public</id>
  30. <url>http://192.168.1.154/nexus/content/groups/public/</url>
  31. <releases>
  32. <enabled>true</enabled>
  33. </releases>
  34. <snapshots>
  35. <enabled>true</enabled>
  36. </snapshots>
  37. </repository>
  38. <repository>
  39. <id>mesir-repo</id>
  40. <url>https://maven.atlassian.com/3rdparty/</url>
  41. </repository>
  42. </repositories>
  43. <dependencies>
  44. <dependency>
  45. <groupId>org.springframework</groupId>
  46. <artifactId>spring-aop</artifactId>
  47. <version>${spring.maven.artifact.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework</groupId>
  51. <artifactId>spring-beans</artifactId>
  52. <version>${spring.maven.artifact.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework</groupId>
  56. <artifactId>spring-context</artifactId>
  57. <version>${spring.maven.artifact.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-context-support</artifactId>
  62. <version>${spring.maven.artifact.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework</groupId>
  66. <artifactId>spring-core</artifactId>
  67. <version>${spring.maven.artifact.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework</groupId>
  71. <artifactId>spring-jdbc</artifactId>
  72. <version>${spring.maven.artifact.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework</groupId>
  76. <artifactId>spring-test</artifactId>
  77. <version>${spring.maven.artifact.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework</groupId>
  81. <artifactId>spring-tx</artifactId>
  82. <version>${spring.maven.artifact.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework</groupId>
  86. <artifactId>spring-web</artifactId>
  87. <version>${spring.maven.artifact.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework</groupId>
  91. <artifactId>spring-webmvc</artifactId>
  92. <version>${spring.maven.artifact.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>aopalliance</groupId>
  96. <artifactId>aopalliance</artifactId>
  97. <version>1.0</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>javax.annotation</groupId>
  101. <artifactId>jsr250-api</artifactId>
  102. <version>1.0</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>javax.servlet</groupId>
  106. <artifactId>servlet-api</artifactId>
  107. <version>${servlet.version}</version>
  108. <scope>provided</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>javax.servlet.jsp</groupId>
  112. <artifactId>javax.servlet.jsp-api</artifactId>
  113. <version>${jsp.version}</version>
  114. <scope>provided</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>javax.servlet.jsp.jstl</groupId>
  118. <artifactId>javax.servlet.jsp.jstl-api</artifactId>
  119. <version>${jstl.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>jstl</groupId>
  123. <artifactId>jstl</artifactId>
  124. <version>1.2</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.sun.facelets</groupId>
  128. <artifactId>jsf-facelets</artifactId>
  129. <version>1.1.14</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>commons-dbcp</groupId>
  133. <artifactId>commons-dbcp</artifactId>
  134. <version>1.3</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>commons-logging</groupId>
  138. <artifactId>commons-logging</artifactId>
  139. <version>1.1.1</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>commons-beanutils</groupId>
  143. <artifactId>commons-beanutils</artifactId>
  144. <version>1.8.3</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>commons-lang</groupId>
  148. <artifactId>commons-lang</artifactId>
  149. <version>2.6</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>junit</groupId>
  153. <artifactId>junit</artifactId>
  154. <version>4.8.1</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>taglibs</groupId>
  158. <artifactId>standard</artifactId>
  159. <version>1.1.2</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>cglib</groupId>
  163. <artifactId>cglib</artifactId>
  164. <version>3.3.0</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.slf4j</groupId>
  168. <artifactId>slf4j-api</artifactId>
  169. <version>1.7.25</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>hsqldb</groupId>
  173. <artifactId>hsqldb</artifactId>
  174. <version>1.8.0.10</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.easymock</groupId>
  178. <artifactId>easymock</artifactId>
  179. <version>3.0</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.apache.commons</groupId>
  183. <artifactId>commons-collections4</artifactId>
  184. <version>4.1</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>commons-digester</groupId>
  188. <artifactId>commons-digester</artifactId>
  189. <version>1.8</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.antlr</groupId>
  193. <artifactId>antlr</artifactId>
  194. <version>3.0.1</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.springframework.security</groupId>
  198. <artifactId>spring-security-core</artifactId>
  199. <version>${spring.security.maven.artifact.version}</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>org.springframework.security</groupId>
  203. <artifactId>spring-security-web</artifactId>
  204. <version>${spring.security.maven.artifact.version}</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.springframework.security</groupId>
  208. <artifactId>spring-security-taglibs</artifactId>
  209. <version>${spring.security.maven.artifact.version}</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.springframework.security</groupId>
  213. <artifactId>spring-security-acl</artifactId>
  214. <version>${spring.security.maven.artifact.version}</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.hibernate</groupId>
  218. <artifactId>hibernate-entitymanager</artifactId>
  219. <version>3.4.0.GA</version>
  220. <exclusions>
  221. <exclusion>
  222. <groupId>org.slf4j</groupId>
  223. <artifactId>slf4j-api</artifactId>
  224. </exclusion>
  225. <exclusion>
  226. <groupId>commons-collections</groupId>
  227. <artifactId>commons-collections</artifactId>
  228. </exclusion>
  229. <exclusion>
  230. <groupId>antlr</groupId>
  231. <artifactId>antlr</artifactId>
  232. </exclusion>
  233. </exclusions>
  234. </dependency>
  235. <dependency>
  236. <groupId>org.hibernate</groupId>
  237. <artifactId>hibernate-annotations</artifactId>
  238. <version>3.4.0.GA</version>
  239. <exclusions>
  240. <exclusion>
  241. <groupId>org.slf4j</groupId>
  242. <artifactId>slf4j-api</artifactId>
  243. </exclusion>
  244. </exclusions>
  245. </dependency>
  246. <dependency>
  247. <groupId>commons-pool</groupId>
  248. <artifactId>commons-pool</artifactId>
  249. <version>1.5.6</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>commons-validator</groupId>
  253. <artifactId>commons-validator</artifactId>
  254. <version>1.3.1</version>
  255. </dependency>
  256. <dependency>
  257. <groupId>commons-vfs</groupId>
  258. <artifactId>commons-vfs</artifactId>
  259. <version>1.0</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.jasypt</groupId>
  263. <artifactId>jasypt</artifactId>
  264. <version>1.7</version>
  265. </dependency>
  266. <dependency>
  267. <groupId>org.apache.commons</groupId>
  268. <artifactId>commons-compress</artifactId>
  269. <version>1.1</version>
  270. </dependency>
  271. <dependency>
  272. <groupId>xerces</groupId>
  273. <artifactId>xercesImpl</artifactId>
  274. <version>2.10.0</version>
  275. </dependency>
  276. <dependency>
  277. <groupId>net.sf.jxls</groupId>
  278. <artifactId>jxls-core</artifactId>
  279. <version>0.9.9</version>
  280. </dependency>
  281. <dependency>
  282. <groupId>net.sf.jxls</groupId>
  283. <artifactId>jxls-reader</artifactId>
  284. <version>0.9.9</version>
  285. </dependency>
  286. <dependency>
  287. <groupId>net.sf.ehcache</groupId>
  288. <artifactId>ehcache-core</artifactId>
  289. <version>2.4.1</version>
  290. <exclusions>
  291. <exclusion>
  292. <groupId>org.slf4j</groupId>
  293. <artifactId>slf4j-api</artifactId>
  294. </exclusion>
  295. </exclusions>
  296. </dependency>
  297. <dependency>
  298. <groupId>net.sf.ehcache</groupId>
  299. <artifactId>ehcache-terracotta</artifactId>
  300. <version>2.1.1</version>
  301. </dependency>
  302. <dependency>
  303. <groupId>org.quartz-scheduler</groupId>
  304. <artifactId>quartz</artifactId>
  305. <version>1.8.5</version>
  306. <exclusions>
  307. <exclusion>
  308. <groupId>org.slf4j</groupId>
  309. <artifactId>slf4j-api</artifactId>
  310. </exclusion>
  311. </exclusions>
  312. </dependency>
  313. <dependency>
  314. <groupId>org.quartz-scheduler</groupId>
  315. <artifactId>quartz-oracle</artifactId>
  316. <version>1.8.5</version>
  317. </dependency>
  318. <dependency>
  319. <groupId>org.quartz-scheduler</groupId>
  320. <artifactId>quartz-weblogic</artifactId>
  321. <version>1.8.5</version>
  322. </dependency>
  323. <dependency>
  324. <groupId>org.quartz-scheduler</groupId>
  325. <artifactId>quartz-jboss</artifactId>
  326. <version>1.8.5</version>
  327. </dependency>
  328. <dependency>
  329. <groupId>oro</groupId>
  330. <artifactId>oro</artifactId>
  331. <version>2.0.8</version>
  332. </dependency>
  333. <dependency>
  334. <groupId>com.ibm.icu</groupId>
  335. <artifactId>icu4j</artifactId>
  336. <version>4.8</version>
  337. </dependency>
  338. <dependency>
  339. <groupId>commons-net</groupId>
  340. <artifactId>commons-net</artifactId>
  341. <version>3.0.1</version>
  342. </dependency>
  343. <dependency>
  344. <groupId>org.apache.commons</groupId>
  345. <artifactId>commons-email</artifactId>
  346. <version>1.2</version>
  347. </dependency>
  348. <dependency>
  349. <groupId>ldapsdk</groupId>
  350. <artifactId>ldapsdk</artifactId>
  351. <version>4.1</version>
  352. </dependency>
  353. <dependency>
  354. <groupId>com.artofsolving</groupId>
  355. <artifactId>jodconverter</artifactId>
  356. <version>2.2.1</version>
  357. <exclusions>
  358. <exclusion>
  359. <groupId>org.slf4j</groupId>
  360. <artifactId>slf4j-api</artifactId>
  361. </exclusion>
  362. </exclusions>
  363. </dependency>
  364. <dependency>
  365. <groupId>org.apache.xmlbeans</groupId>
  366. <artifactId>xmlbeans</artifactId>
  367. <version>2.3.0</version>
  368. </dependency>
  369. <dependency>
  370. <groupId>commons-io</groupId>
  371. <artifactId>commons-io</artifactId>
  372. <version>1.3.1</version>
  373. </dependency>
  374. <dependency>
  375. <groupId>commons-fileupload</groupId>
  376. <artifactId>commons-fileupload</artifactId>
  377. <version>1.2.1</version>
  378. </dependency>
  379. <dependency>
  380. <groupId>org.apache.poi</groupId>
  381. <artifactId>poi</artifactId>
  382. <version>3.10-FINAL</version>
  383. </dependency>
  384. <dependency>
  385. <groupId>org.apache.poi</groupId>
  386. <artifactId>poi-excelant</artifactId>
  387. <version>3.10-FINAL</version>
  388. </dependency>
  389. <dependency>
  390. <groupId>org.apache.poi</groupId>
  391. <artifactId>poi-ooxml</artifactId>
  392. <version>3.10-FINAL</version>
  393. </dependency>
  394. <dependency>
  395. <groupId>org.apache.poi</groupId>
  396. <artifactId>poi-ooxml-schemas</artifactId>
  397. <version>3.10-FINAL</version>
  398. </dependency>
  399. <dependency>
  400. <groupId>org.apache.poi</groupId>
  401. <artifactId>poi-scratchpad</artifactId>
  402. <version>3.10-FINAL</version>
  403. </dependency>
  404. <dependency>
  405. <groupId>net.sourceforge.jexcelapi</groupId>
  406. <artifactId>jxl</artifactId>
  407. <version>2.6.12</version>
  408. <exclusions>
  409. <exclusion>
  410. <groupId>log4j</groupId>
  411. <artifactId>log4j</artifactId>
  412. </exclusion>
  413. </exclusions>
  414. </dependency>
  415. <dependency>
  416. <groupId>org.twitter4j</groupId>
  417. <artifactId>twitter4j-core</artifactId>
  418. <version>2.1.3</version>
  419. </dependency>
  420. <!--
  421. <dependency>
  422. <groupId>net.sourceforge.ajaxtags</groupId>
  423. <artifactId>ajaxtags</artifactId>
  424. <version>1.5-beta-0.02</version>
  425. </dependency>
  426. -->
  427. <dependency>
  428. <groupId>org.apache.xmlgraphics</groupId>
  429. <artifactId>batik-ext</artifactId>
  430. <version>1.7</version>
  431. </dependency>
  432. <dependency>
  433. <groupId>org.apache.tiles</groupId>
  434. <artifactId>tiles-servlet</artifactId>
  435. <version>${org.apache.tiles-version}</version>
  436. </dependency>
  437. <dependency>
  438. <groupId>org.apache.tiles</groupId>
  439. <artifactId>tiles-api</artifactId>
  440. <version>${org.apache.tiles-version}</version>
  441. </dependency>
  442. <dependency>
  443. <groupId>org.apache.tiles</groupId>
  444. <artifactId>tiles-jsp</artifactId>
  445. <version>${org.apache.tiles-version}</version>
  446. </dependency>
  447. <dependency>
  448. <groupId>org.apache.tiles</groupId>
  449. <artifactId>tiles-core</artifactId>
  450. <version>${org.apache.tiles-version}</version>
  451. </dependency>
  452. <dependency>
  453. <groupId>org.apache.tiles</groupId>
  454. <artifactId>tiles-template</artifactId>
  455. <version>${org.apache.tiles-version}</version>
  456. </dependency>
  457. <dependency>
  458. <groupId>org.bouncycastle</groupId>
  459. <artifactId>bcprov-jdk16</artifactId>
  460. <version>1.46</version>
  461. </dependency>
  462. <dependency>
  463. <groupId>jmimemagic</groupId>
  464. <artifactId>jmimemagic</artifactId>
  465. <version>0.1.2</version>
  466. <exclusions>
  467. <exclusion>
  468. <groupId>log4j</groupId>
  469. <artifactId>log4j</artifactId>
  470. </exclusion>
  471. </exclusions>
  472. </dependency>
  473. <dependency>
  474. <groupId>org.scala-lang</groupId>
  475. <artifactId>scala-library</artifactId>
  476. <version>2.10.4</version>
  477. </dependency>
  478. <dependency>
  479. <groupId>org.lazyluke</groupId>
  480. <artifactId>log4jdbc-remix</artifactId>
  481. <version>0.2.7</version>
  482. </dependency>
  483. <dependency>
  484. <groupId>org.aspectj</groupId>
  485. <artifactId>aspectjrt</artifactId>
  486. <version>${org.aspectj-version}</version>
  487. </dependency>
  488. <dependency>
  489. <groupId>net.sf.json-lib</groupId>
  490. <artifactId>json-lib</artifactId>
  491. <version>2.4</version>
  492. <classifier>jdk15</classifier>
  493. </dependency>
  494. <dependency>
  495. <groupId>org.aspectj</groupId>
  496. <artifactId>aspectjweaver</artifactId>
  497. <version>${org.aspectj-version}</version>
  498. </dependency>
  499. <dependency>
  500. <groupId>org.aspectj</groupId>
  501. <artifactId>aspectjtools</artifactId>
  502. <version>${org.aspectj-version}</version>
  503. </dependency>
  504. <dependency>
  505. <groupId>com.fasterxml.jackson.core</groupId>
  506. <artifactId>jackson-core</artifactId>
  507. <version>2.9.9</version>
  508. </dependency>
  509. <dependency>
  510. <groupId>com.fasterxml.jackson.core</groupId>
  511. <artifactId>jackson-databind</artifactId>
  512. <version>2.9.9</version>
  513. </dependency>
  514. <dependency>
  515. <groupId>org.apache.commons</groupId>
  516. <artifactId>commons-text</artifactId>
  517. <version>1.9</version>
  518. </dependency>
  519. <dependency>
  520. <groupId>com.google.code.gson</groupId>
  521. <artifactId>gson</artifactId>
  522. <version>2.9.0</version>
  523. </dependency>
  524. <dependency>
  525. <groupId>com.gnt.ibatis</groupId>
  526. <artifactId>ibatis-sqlmap</artifactId>
  527. <version>2.3.0</version>
  528. </dependency>
  529. <dependency>
  530. <groupId>org.springframework</groupId>
  531. <artifactId>spring-ibatis</artifactId>
  532. <version>2.0.8</version>
  533. <exclusions>
  534. <exclusion>
  535. <groupId>org.apache.ibatis</groupId>
  536. <artifactId>ibatis-sqlmap</artifactId>
  537. </exclusion>
  538. </exclusions>
  539. </dependency>
  540. <dependency>
  541. <groupId>org.codehaus.jackson</groupId>
  542. <artifactId>jackson-mapper-asl</artifactId>
  543. <version>1.9.13</version>
  544. </dependency>
  545. <!--
  546. <dependency>
  547. <groupId>com.utic.lib</groupId>
  548. <artifactId>transCoord</artifactId>
  549. <version>1.0.0</version>
  550. </dependency>
  551. -->
  552. <dependency>
  553. <groupId>org.mortbay.jetty</groupId>
  554. <artifactId>jetty-util</artifactId>
  555. <version>6.1.26</version>
  556. </dependency>
  557. <dependency>
  558. <groupId>org.jdom</groupId>
  559. <artifactId>jdom</artifactId>
  560. <version>1.1</version>
  561. </dependency>
  562. <dependency>
  563. <groupId>org.jdom</groupId>
  564. <artifactId>jdom2</artifactId>
  565. <version>2.0.6</version>
  566. </dependency>
  567. <dependency>
  568. <groupId>net.sf.ehcache</groupId>
  569. <artifactId>ehcache-web</artifactId>
  570. <version>2.0.4</version>
  571. </dependency>
  572. <dependency>
  573. <groupId>opensymphony</groupId>
  574. <artifactId>sitemesh</artifactId>
  575. <version>2.4.2</version>
  576. </dependency>
  577. <dependency>
  578. <groupId>oracle</groupId>
  579. <artifactId>ojdbc14</artifactId>
  580. <version>10.2.0.4</version>
  581. </dependency>
  582. <dependency>
  583. <groupId>ch.qos.logback</groupId>
  584. <artifactId>logback-core</artifactId>
  585. <version>1.2.3</version>
  586. </dependency>
  587. <dependency>
  588. <groupId>ch.qos.logback</groupId>
  589. <artifactId>logback-classic</artifactId>
  590. <version>1.2.3</version>
  591. </dependency>
  592. <!-- 마이바티스 추가 -->
  593. <!-- 마이바티스 스프링 연동 -->
  594. <dependency>
  595. <groupId>org.mybatis</groupId>
  596. <artifactId>mybatis-spring</artifactId>
  597. <version>1.2.3</version>
  598. </dependency>
  599. <!-- 마이바티스 모듈 -->
  600. <dependency>
  601. <groupId>org.mybatis</groupId>
  602. <artifactId>mybatis</artifactId>
  603. <version>3.3.0</version>
  604. </dependency>
  605. <dependency>
  606. <groupId>org.logback-extensions</groupId>
  607. <artifactId>logback-ext-spring</artifactId>
  608. <version>0.1.5</version>
  609. </dependency>
  610. <dependency>
  611. <groupId>javax.activation</groupId>
  612. <artifactId>activation</artifactId>
  613. <version>1.1</version>
  614. </dependency>
  615. <dependency>
  616. <groupId>javax.mail</groupId>
  617. <artifactId>mail</artifactId>
  618. <version>1.4.7</version>
  619. </dependency>
  620. <dependency>
  621. <groupId>org.slf4j</groupId>
  622. <artifactId>jcl-over-slf4j</artifactId>
  623. <version>1.7.6</version>
  624. <classifier>sources</classifier>
  625. </dependency>
  626. <dependency>
  627. <groupId>org.bgee.log4jdbc-log4j2</groupId>
  628. <artifactId>log4jdbc-log4j2-jdbc4.1</artifactId>
  629. <version>1.16</version>
  630. <classifier>sources</classifier>
  631. </dependency>
  632. <dependency>
  633. <groupId>org.springframework.mobile</groupId>
  634. <artifactId>spring-mobile-device</artifactId>
  635. <version>1.1.5.RELEASE</version>
  636. </dependency>
  637. </dependencies>
  638. <build>
  639. <defaultGoal>package</defaultGoal>
  640. <directory>${basedir}/target</directory>
  641. <finalName>UTIS_WALL_RTC</finalName>
  642. <pluginManagement>
  643. <plugins>
  644. <plugin>
  645. <groupId>org.apache.maven.plugins</groupId>
  646. <artifactId>maven-compiler-plugin</artifactId>
  647. <configuration>
  648. <source>${java.version}</source>
  649. <target>${java.version}</target>
  650. <encoding>UTF-8</encoding>
  651. </configuration>
  652. </plugin>
  653. <plugin>
  654. <groupId>org.codehaus.mojo</groupId>
  655. <artifactId>hibernate3-maven-plugin</artifactId>
  656. <version>2.1</version>
  657. <configuration>
  658. <components>
  659. <component>
  660. <name>hbm2ddl</name>
  661. <implementation>annotationconfiguration</implementation>
  662. </component>
  663. </components>
  664. </configuration>
  665. <dependencies>
  666. <dependency>
  667. <groupId>hsqldb</groupId>
  668. <artifactId>hsqldb</artifactId>
  669. <version>1.8.0.7</version>
  670. </dependency>
  671. </dependencies>
  672. </plugin>
  673. <!-- EMMA -->
  674. <plugin>
  675. <groupId>org.codehaus.mojo</groupId>
  676. <artifactId>emma-maven-plugin</artifactId>
  677. <version>1.0-alpha-1</version>
  678. </plugin>
  679. <!-- PMD manven plugin -->
  680. <plugin>
  681. <groupId>org.apache.maven.plugins</groupId>
  682. <artifactId>maven-pmd-plugin</artifactId>
  683. <version>2.4</version>
  684. </plugin>
  685. </plugins>
  686. </pluginManagement>
  687. <plugins>
  688. <!-- EMMA -->
  689. <plugin>
  690. <groupId>org.apache.maven.plugins</groupId>
  691. <artifactId>maven-surefire-plugin</artifactId>
  692. <configuration>
  693. <skipTests>false</skipTests>
  694. <forkMode>once</forkMode>
  695. <reportFormat>xml</reportFormat>
  696. <excludes>
  697. <exclude>**/Abstract*.java</exclude>
  698. <exclude>**/*Suite.java</exclude>
  699. </excludes>
  700. <includes>
  701. <include>**/*Test.java</include>
  702. </includes>
  703. </configuration>
  704. </plugin>
  705. <plugin>
  706. <groupId>org.codehaus.mojo</groupId>
  707. <artifactId>emma-maven-plugin</artifactId>
  708. <version>1.0-alpha-1</version><!--$NO-MVN-MAN-VER$ -->
  709. <inherited>true</inherited>
  710. </plugin>
  711. <plugin>
  712. <groupId>org.apache.maven.plugins</groupId>
  713. <artifactId>maven-javadoc-plugin</artifactId>
  714. <version>2.5</version>
  715. </plugin>
  716. </plugins>
  717. </build>
  718. </project>