pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>no.priv.bang.ukelonn</groupId>
  5. <artifactId>parent</artifactId>
  6. <version>1.0.0-SNAPSHOT</version>
  7. <packaging>pom</packaging>
  8. <name>ukelonn parent project</name>
  9. <properties>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. <maven.bundle.plugin.version>2.5.3</maven.bundle.plugin.version>
  12. <dependency.osgi.version>5.0.0</dependency.osgi.version>
  13. <dependency.pax.web.version>4.2.7</dependency.pax.web.version>
  14. <dependency.pax.swissbox.version>1.8.2</dependency.pax.swissbox.version>
  15. <dependency.pax.exam.version>4.9.1</dependency.pax.exam.version>
  16. <dependency.pax.url.version>2.4.7</dependency.pax.url.version>
  17. <dependency.pax.jdbc.version>0.9.0</dependency.pax.jdbc.version>
  18. <dependency.jetty.version>9.2.17.v20160517</dependency.jetty.version>
  19. <dependency.xbean.version>4.1</dependency.xbean.version>
  20. <dependency.httpcomponents.version>4.3.3</dependency.httpcomponents.version>
  21. <dependency.myfaces.version>2.2.6</dependency.myfaces.version>
  22. <derby.version>10.11.1.1</derby.version>
  23. <postgresql.version>9.4.1211.jre7</postgresql.version>
  24. <karaf.version>4.0.7</karaf.version>
  25. </properties>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>junit</groupId>
  30. <artifactId>junit</artifactId>
  31. <version>4.12</version>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.hamcrest</groupId>
  36. <artifactId>hamcrest-library</artifactId>
  37. <version>1.3</version>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.mockito</groupId>
  42. <artifactId>mockito-all</artifactId>
  43. <version>1.10.19</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.osgi</groupId>
  48. <artifactId>org.osgi.core</artifactId>
  49. <version>${dependency.osgi.version}</version>
  50. <scope>provided</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.osgi</groupId>
  54. <artifactId>org.osgi.compendium</artifactId>
  55. <version>${dependency.osgi.version}</version>
  56. <scope>provided</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.ops4j.pax.logging</groupId>
  60. <artifactId>pax-logging-api</artifactId>
  61. <version>${dependency.pax.swissbox.version}</version>
  62. <scope>provided</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.ops4j.pax.logging</groupId>
  66. <artifactId>pax-logging-service</artifactId>
  67. <version>${dependency.pax.swissbox.version}</version>
  68. <scope>provided</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.ops4j.pax.url</groupId>
  72. <artifactId>pax-url-war</artifactId>
  73. <version>${dependency.pax.url.version}</version>
  74. <scope>provided</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.ops4j.pax.web</groupId>
  78. <artifactId>pax-web-spi</artifactId>
  79. <version>${dependency.pax.web.version}</version>
  80. <scope>provided</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.ops4j.pax.web</groupId>
  84. <artifactId>pax-web-api</artifactId>
  85. <version>${dependency.pax.web.version}</version>
  86. <scope>provided</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.ops4j.pax.web</groupId>
  90. <artifactId>pax-web-extender-war</artifactId>
  91. <version>${dependency.pax.web.version}</version>
  92. <scope>provided</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.ops4j.pax.web</groupId>
  96. <artifactId>pax-web-extender-whiteboard</artifactId>
  97. <version>${dependency.pax.web.version}</version>
  98. <scope>provided</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.ops4j.pax.web</groupId>
  102. <artifactId>pax-web-runtime</artifactId>
  103. <version>${dependency.pax.web.version}</version>
  104. <scope>provided</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.ops4j.pax.web</groupId>
  108. <artifactId>pax-web-jsp</artifactId>
  109. <version>${dependency.pax.web.version}</version>
  110. <scope>provided</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.eclipse.jdt.core.compiler</groupId>
  114. <artifactId>ecj</artifactId>
  115. <version>4.4</version>
  116. <scope>provided</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.xbean</groupId>
  120. <artifactId>xbean-reflect</artifactId>
  121. <version>${dependency.xbean.version}</version>
  122. <scope>provided</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.xbean</groupId>
  126. <artifactId>xbean-finder</artifactId>
  127. <version>${dependency.xbean.version}</version>
  128. <scope>provided</scope>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.xbean</groupId>
  132. <artifactId>xbean-bundleutils</artifactId>
  133. <version>${dependency.xbean.version}</version>
  134. <scope>provided</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.ow2.asm</groupId>
  138. <artifactId>asm-all</artifactId>
  139. <version>5.0.2</version>
  140. <scope>provided</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>commons-codec</groupId>
  144. <artifactId>commons-codec</artifactId>
  145. <version>1.10</version>
  146. <scope>provided</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.apache.felix</groupId>
  150. <artifactId>org.apache.felix.eventadmin</artifactId>
  151. <version>1.3.2</version>
  152. <scope>provided</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.apache.httpcomponents</groupId>
  156. <artifactId>httpcore</artifactId>
  157. <version>${dependency.httpcomponents.version}</version>
  158. <scope>provided</scope>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.apache.httpcomponents</groupId>
  162. <artifactId>httpmime</artifactId>
  163. <version>${dependency.httpcomponents.version}</version>
  164. <scope>provided</scope>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.httpcomponents</groupId>
  168. <artifactId>httpclient</artifactId>
  169. <version>${dependency.httpcomponents.version}</version>
  170. <scope>provided</scope>
  171. </dependency>
  172. <dependency>
  173. <groupId>javax.servlet</groupId>
  174. <artifactId>javax.servlet-api</artifactId>
  175. <version>3.1.0</version>
  176. <scope>provided</scope>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.ops4j.pax.web</groupId>
  180. <artifactId>pax-web-jetty</artifactId>
  181. <version>${dependency.pax.web.version}</version>
  182. <scope>provided</scope>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.eclipse.jetty</groupId>
  186. <artifactId>jetty-util</artifactId>
  187. <version>${dependency.jetty.version}</version>
  188. <scope>provided</scope>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.eclipse.jetty</groupId>
  192. <artifactId>jetty-io</artifactId>
  193. <version>${dependency.jetty.version}</version>
  194. <scope>provided</scope>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.eclipse.jetty</groupId>
  198. <artifactId>jetty-http</artifactId>
  199. <version>${dependency.jetty.version}</version>
  200. <scope>provided</scope>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.eclipse.jetty</groupId>
  204. <artifactId>jetty-continuation</artifactId>
  205. <version>${dependency.jetty.version}</version>
  206. <scope>provided</scope>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.eclipse.jetty</groupId>
  210. <artifactId>jetty-server</artifactId>
  211. <version>${dependency.jetty.version}</version>
  212. <scope>provided</scope>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.eclipse.jetty</groupId>
  216. <artifactId>jetty-client</artifactId>
  217. <version>${dependency.jetty.version}</version>
  218. <scope>provided</scope>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.eclipse.jetty</groupId>
  222. <artifactId>jetty-security</artifactId>
  223. <version>${dependency.jetty.version}</version>
  224. <scope>provided</scope>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.eclipse.jetty</groupId>
  228. <artifactId>jetty-xml</artifactId>
  229. <version>${dependency.jetty.version}</version>
  230. <scope>provided</scope>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.eclipse.jetty</groupId>
  234. <artifactId>jetty-servlet</artifactId>
  235. <version>${dependency.jetty.version}</version>
  236. <scope>provided</scope>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.ops4j.pax.exam</groupId>
  240. <artifactId>pax-exam-junit4</artifactId>
  241. <version>${dependency.pax.exam.version}</version>
  242. <scope>test</scope>
  243. </dependency>
  244. <dependency>
  245. <groupId>org.ops4j.pax.exam</groupId>
  246. <artifactId>pax-exam-link-mvn</artifactId>
  247. <version>${dependency.pax.exam.version}</version>
  248. <scope>test</scope>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.ops4j.pax.exam</groupId>
  252. <artifactId>pax-exam-container-native</artifactId>
  253. <version>${dependency.pax.exam.version}</version>
  254. <scope>test</scope>
  255. </dependency>
  256. <dependency>
  257. <groupId>org.ops4j.pax.exam</groupId>
  258. <artifactId>pax-exam-container-forked</artifactId>
  259. <version>${dependency.pax.exam.version}</version>
  260. <scope>test</scope>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.ops4j.pax.url</groupId>
  264. <artifactId>pax-url-reference</artifactId>
  265. <version>${dependency.pax.url.version}</version>
  266. </dependency>
  267. <dependency>
  268. <groupId>commons-beanutils</groupId>
  269. <artifactId>commons-beanutils</artifactId>
  270. <version>1.8.3</version>
  271. <scope>provided</scope>
  272. </dependency>
  273. <dependency>
  274. <groupId>commons-collections</groupId>
  275. <artifactId>commons-collections</artifactId>
  276. <version>3.2.1</version>
  277. <scope>provided</scope>
  278. </dependency>
  279. <dependency>
  280. <groupId>org.apache.servicemix.bundles</groupId>
  281. <artifactId>org.apache.servicemix.bundles.commons-digester</artifactId>
  282. <version>1.8_4</version>
  283. <scope>provided</scope>
  284. </dependency>
  285. <dependency>
  286. <groupId>org.apache.servicemix.specs</groupId>
  287. <artifactId>org.apache.servicemix.specs.jsr303-api-1.0.0</artifactId>
  288. <version>1.8.0</version>
  289. <scope>provided</scope>
  290. </dependency>
  291. <dependency>
  292. <groupId>org.apache.servicemix.specs</groupId>
  293. <artifactId>org.apache.servicemix.specs.jsr250-1.0</artifactId>
  294. <version>2.0.0</version>
  295. <scope>provided</scope>
  296. </dependency>
  297. <dependency>
  298. <groupId>org.apache.geronimo.bundles</groupId>
  299. <artifactId>commons-discovery</artifactId>
  300. <version>0.4_1</version>
  301. <scope>provided</scope>
  302. </dependency>
  303. <dependency>
  304. <groupId>javax.enterprise</groupId>
  305. <artifactId>cdi-api</artifactId>
  306. <version>1.2</version>
  307. <scope>provided</scope>
  308. </dependency>
  309. <dependency>
  310. <groupId>javax.interceptor</groupId>
  311. <artifactId>javax.interceptor-api</artifactId>
  312. <version>1.2</version>
  313. <scope>provided</scope>
  314. </dependency>
  315. <dependency>
  316. <groupId>org.apache.myfaces.core</groupId>
  317. <artifactId>myfaces-api</artifactId>
  318. <version>${dependency.myfaces.version}</version>
  319. <scope>provided</scope>
  320. </dependency>
  321. <dependency>
  322. <groupId>org.apache.myfaces.core</groupId>
  323. <artifactId>myfaces-impl</artifactId>
  324. <version>${dependency.myfaces.version}</version>
  325. <scope>provided</scope>
  326. </dependency>
  327. <dependency>
  328. <groupId>org.primefaces</groupId>
  329. <artifactId>primefaces</artifactId>
  330. <version>5.1</version>
  331. <scope>provided</scope>
  332. </dependency>
  333. <dependency>
  334. <groupId>org.ops4j.pax.jdbc</groupId>
  335. <artifactId>pax-jdbc</artifactId>
  336. <version>${dependency.pax.jdbc.version}</version>
  337. <scope>provided</scope>
  338. </dependency>
  339. <dependency>
  340. <groupId>org.ops4j.pax.jdbc</groupId>
  341. <artifactId>pax-jdbc-derby</artifactId>
  342. <version>${dependency.pax.jdbc.version}</version>
  343. <scope>provided</scope>
  344. </dependency>
  345. <dependency>
  346. <groupId>org.apache.derby</groupId>
  347. <artifactId>derby</artifactId>
  348. <version>${derby.version}</version>
  349. <scope>provided</scope>
  350. </dependency>
  351. <dependency>
  352. <groupId>org.postgresql</groupId>
  353. <artifactId>postgresql</artifactId>
  354. <version>${postgresql.version}</version>
  355. <scope>provided</scope>
  356. </dependency>
  357. </dependencies>
  358. </dependencyManagement>
  359. <build>
  360. <pluginManagement>
  361. <plugins>
  362. <plugin>
  363. <groupId>org.apache.maven.plugins</groupId>
  364. <artifactId>maven-compiler-plugin</artifactId>
  365. <version>3.5.1</version>
  366. <configuration>
  367. <source>1.7</source>
  368. <target>1.7</target>
  369. </configuration>
  370. </plugin>
  371. <plugin>
  372. <groupId>org.apache.maven.plugins</groupId>
  373. <artifactId>maven-source-plugin</artifactId>
  374. <version>2.4</version>
  375. </plugin>
  376. <plugin>
  377. <groupId>org.apache.maven.plugins</groupId>
  378. <artifactId>maven-javadoc-plugin</artifactId>
  379. <version>2.10.2</version>
  380. </plugin>
  381. <plugin>
  382. <groupId>org.codehaus.mojo</groupId>
  383. <artifactId>cobertura-maven-plugin</artifactId>
  384. <version>2.7</version>
  385. </plugin>
  386. <plugin>
  387. <groupId>org.apache.felix</groupId>
  388. <artifactId>maven-bundle-plugin</artifactId>
  389. <version>${maven.bundle.plugin.version}</version>
  390. </plugin>
  391. <plugin>
  392. <groupId>org.apache.maven.plugins</groupId>
  393. <artifactId>maven-clean-plugin</artifactId>
  394. <version>3.0.0</version>
  395. <configuration>
  396. <filesets>
  397. <fileset>
  398. <directory>.</directory>
  399. <includes>
  400. <include>**/*.log</include>
  401. </includes>
  402. <followSymlinks>false</followSymlinks>
  403. </fileset>
  404. </filesets>
  405. </configuration>
  406. </plugin>
  407. <plugin>
  408. <groupId>org.apache.maven.plugins</groupId>
  409. <artifactId>maven-surefire-plugin</artifactId>
  410. <version>2.19.1</version>
  411. </plugin>
  412. <plugin>
  413. <groupId>org.eluder.coveralls</groupId>
  414. <artifactId>coveralls-maven-plugin</artifactId>
  415. <version>3.1.0</version>
  416. </plugin>
  417. <plugin>
  418. <groupId>org.ops4j</groupId>
  419. <artifactId>maven-pax-plugin</artifactId>
  420. <version>1.5</version>
  421. </plugin>
  422. </plugins>
  423. </pluginManagement>
  424. <plugins>
  425. <plugin>
  426. <groupId>org.apache.maven.plugins</groupId>
  427. <artifactId>maven-dependency-plugin</artifactId>
  428. <dependencies>
  429. <dependency>
  430. <groupId>org.apache.felix</groupId>
  431. <artifactId>maven-bundle-plugin</artifactId>
  432. <version>${maven.bundle.plugin.version}</version>
  433. <type>maven-plugin</type>
  434. </dependency>
  435. </dependencies>
  436. <extensions>true</extensions>
  437. </plugin>
  438. <plugin>
  439. <groupId>org.apache.maven.plugins</groupId>
  440. <artifactId>maven-source-plugin</artifactId>
  441. <executions>
  442. <execution>
  443. <id>attach-sources</id>
  444. <goals>
  445. <goal>jar</goal>
  446. </goals>
  447. </execution>
  448. </executions>
  449. </plugin>
  450. <plugin>
  451. <groupId>org.apache.maven.plugins</groupId>
  452. <artifactId>maven-javadoc-plugin</artifactId>
  453. <configuration>
  454. <show>private</show>
  455. </configuration>
  456. <executions>
  457. <execution>
  458. <id>attach-javadocs</id>
  459. <goals>
  460. <goal>jar</goal>
  461. </goals>
  462. </execution>
  463. </executions>
  464. </plugin>
  465. <plugin>
  466. <groupId>org.codehaus.mojo</groupId>
  467. <artifactId>cobertura-maven-plugin</artifactId>
  468. <configuration>
  469. <outputDirectory>${basedir}/target</outputDirectory>
  470. <formats>
  471. <format>html</format>
  472. <format>xml</format>
  473. </formats>
  474. <aggregate>true</aggregate>
  475. </configuration>
  476. </plugin>
  477. <plugin>
  478. <groupId>org.eluder.coveralls</groupId>
  479. <artifactId>coveralls-maven-plugin</artifactId>
  480. <configuration>
  481. <coberturaReports>
  482. <coberturaReport>${basedir}/target/coverage.xml</coberturaReport>
  483. </coberturaReports>
  484. </configuration>
  485. </plugin>
  486. </plugins>
  487. </build>
  488. <modules>
  489. <module>ukelonn.rebundled</module>
  490. <module>ukelonn.api</module>
  491. <module>ukelonn.bundle</module>
  492. <module>ukelonn.tests</module>
  493. <module>ukelonn.bundle.test.db</module>
  494. <module>ukelonn.bundle.postgresql.db</module>
  495. <module>ukelonn.gogoshell</module>
  496. <module>ukelonn.karaf</module>
  497. </modules>
  498. </project>