pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xml:space="preserve">
  3. <!-- Copyright 2016-2018 Steinar Bang -->
  4. <!-- -->
  5. <!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
  6. <!-- you may not use this file except in compliance with the License. -->
  7. <!-- You may obtain a copy of the License at -->
  8. <!-- http://www.apache.org/licenses/LICENSE-2.0 -->
  9. <!-- Unless required by applicable law or agreed to in writing, -->
  10. <!-- software distributed under the License is distributed on an "AS IS" BASIS, -->
  11. <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
  12. <!-- See the License for the specific language governing permissions and limitations -->
  13. <!-- under the License. -->
  14. <modelVersion>4.0.0</modelVersion>
  15. <parent>
  16. <artifactId>parent</artifactId>
  17. <groupId>no.priv.bang.ukelonn</groupId>
  18. <version>1.0.0-SNAPSHOT</version>
  19. </parent>
  20. <artifactId>ukelonn.backend</artifactId>
  21. <name>Ukelonn webapp backend</name>
  22. <properties>
  23. <Bundle-SymbolicName>no.priv.bang.ukelonn.backend</Bundle-SymbolicName>
  24. <karaf-feature-name>ukelonn-backend</karaf-feature-name>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>no.priv.bang.ukelonn</groupId>
  29. <artifactId>ukelonn.services</artifactId>
  30. <version>${project.version}</version>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>no.priv.bang.ukelonn</groupId>
  35. <artifactId>ukelonn.services</artifactId>
  36. <version>${project.version}</version>
  37. <type>xml</type>
  38. <classifier>features</classifier>
  39. </dependency>
  40. <dependency>
  41. <groupId>no.priv.bang.ukelonn</groupId>
  42. <artifactId>ukelonn.db.liquibase</artifactId>
  43. <version>${project.version}</version>
  44. <scope>provided</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>no.priv.bang.authservice</groupId>
  48. <artifactId>authservice.db.liquibase</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>no.priv.bang.ukelonn</groupId>
  53. <artifactId>ukelonn.db.liquibase.test</artifactId>
  54. <version>${project.version}</version>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>no.priv.bang.osgiservice</groupId>
  59. <artifactId>osgiservice.users</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>no.priv.bang.osgiservice</groupId>
  63. <artifactId>osgiservice.users</artifactId>
  64. <type>xml</type>
  65. <classifier>features</classifier>
  66. <version>${osgi-service.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>no.priv.bang.authservice</groupId>
  70. <artifactId>authservice.users</artifactId>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.osgi</groupId>
  75. <artifactId>org.osgi.core</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.osgi</groupId>
  79. <artifactId>org.osgi.service.component.annotations</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.osgi</groupId>
  83. <artifactId>org.osgi.service.log</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.osgi</groupId>
  87. <artifactId>org.osgi.service.jdbc</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>junit</groupId>
  91. <artifactId>junit</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.assertj</groupId>
  95. <artifactId>assertj-core</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.mockito</groupId>
  99. <artifactId>mockito-core</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  103. <artifactId>service-mocks</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.ops4j.pax.jdbc</groupId>
  107. <artifactId>pax-jdbc-pool-common</artifactId>
  108. <scope>test</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.ops4j.pax.jdbc</groupId>
  112. <artifactId>pax-jdbc-derby</artifactId>
  113. <scope>test</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.liquibase</groupId>
  117. <artifactId>liquibase-core</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.karaf.shell</groupId>
  121. <artifactId>org.apache.karaf.shell.console</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.shiro</groupId>
  125. <artifactId>shiro-core</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.slf4j</groupId>
  129. <artifactId>slf4j-simple</artifactId>
  130. </dependency>
  131. <dependency>
  132. <groupId>no.priv.bang.beans</groupId>
  133. <artifactId>beans.immutable</artifactId>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.commons</groupId>
  137. <artifactId>commons-lang3</artifactId>
  138. <scope>test</scope>
  139. </dependency>
  140. </dependencies>
  141. <build>
  142. <plugins>
  143. <plugin>
  144. <artifactId>maven-clean-plugin</artifactId>
  145. </plugin>
  146. <plugin>
  147. <groupId>org.apache.felix</groupId>
  148. <artifactId>maven-bundle-plugin</artifactId>
  149. </plugin>
  150. <plugin>
  151. <groupId>org.apache.karaf.tooling</groupId>
  152. <artifactId>karaf-maven-plugin</artifactId>
  153. <configuration>
  154. <includeTransitiveDependency>true</includeTransitiveDependency>
  155. </configuration>
  156. </plugin>
  157. <plugin>
  158. <groupId>org.apache.karaf.tooling</groupId>
  159. <artifactId>karaf-services-maven-plugin</artifactId>
  160. </plugin>
  161. </plugins>
  162. </build>
  163. </project>