pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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.db.derbytest</artifactId>
  21. <name>Ukelonn webapp derby test database</name>
  22. <properties>
  23. <Bundle-SymbolicName>no.priv.bang.ukelonn.db.derbytest</Bundle-SymbolicName>
  24. <karaf-feature-name>ukelonn-db-derby-test</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.db.liquibase</artifactId>
  36. <version>${project.version}</version>
  37. <scope>provided</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>no.priv.bang.authservice</groupId>
  41. <artifactId>authservice.db.liquibase</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>no.priv.bang.ukelonn</groupId>
  45. <artifactId>ukelonn.services</artifactId>
  46. <version>${project.version}</version>
  47. <type>xml</type>
  48. <classifier>features</classifier>
  49. </dependency>
  50. <dependency>
  51. <groupId>no.priv.bang.ukelonn</groupId>
  52. <artifactId>ukelonn.db.liquibase</artifactId>
  53. <version>${project.version}</version>
  54. <type>xml</type>
  55. <classifier>features</classifier>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.osgi</groupId>
  59. <artifactId>org.osgi.core</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.osgi</groupId>
  63. <artifactId>org.osgi.service.component.annotations</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.osgi</groupId>
  67. <artifactId>org.osgi.service.log</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.osgi</groupId>
  71. <artifactId>org.osgi.service.jdbc</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>no.priv.bang.osgiservice</groupId>
  75. <artifactId>osgiservice.database</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  79. <artifactId>service-mocks</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>junit</groupId>
  83. <artifactId>junit</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.assertj</groupId>
  87. <artifactId>assertj-core</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.mockito</groupId>
  91. <artifactId>mockito-core</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.ops4j.pax.jdbc</groupId>
  95. <artifactId>pax-jdbc</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.ops4j.pax.jdbc</groupId>
  99. <artifactId>pax-jdbc-derby</artifactId>
  100. <scope>test</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.liquibase</groupId>
  104. <artifactId>liquibase-core</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.apache.derby</groupId>
  108. <artifactId>derby</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.derby</groupId>
  112. <artifactId>derbyclient</artifactId>
  113. <version>${derby.version}</version>
  114. <scope>test</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.shiro</groupId>
  118. <artifactId>shiro-core</artifactId>
  119. <scope>test</scope>
  120. </dependency>
  121. </dependencies>
  122. <build>
  123. <plugins>
  124. <plugin>
  125. <groupId>org.apache.felix</groupId>
  126. <artifactId>maven-bundle-plugin</artifactId>
  127. </plugin>
  128. <plugin>
  129. <groupId>org.apache.maven.plugins</groupId>
  130. <artifactId>maven-surefire-plugin</artifactId>
  131. <configuration>
  132. <systemProperties>
  133. <property>
  134. <name>derby.stream.error.file</name>
  135. <value>target/derby.log</value>
  136. </property>
  137. </systemProperties>
  138. </configuration>
  139. </plugin>
  140. <plugin>
  141. <groupId>org.apache.karaf.tooling</groupId>
  142. <artifactId>karaf-maven-plugin</artifactId>
  143. </plugin>
  144. </plugins>
  145. </build>
  146. </project>