pom.xml 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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">
  3. <!-- Copyright 2016-2021 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>ukelonn</artifactId>
  17. <groupId>no.priv.bang.ukelonn</groupId>
  18. <version>1.0.0-SNAPSHOT</version>
  19. </parent>
  20. <artifactId>ukelonn.testutils</artifactId>
  21. <name>Ukelonn webapp common test code</name>
  22. <properties>
  23. <sonar.exclusions>**/*</sonar.exclusions>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>no.priv.bang.ukelonn</groupId>
  28. <artifactId>ukelonn.services</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>no.priv.bang.ukelonn</groupId>
  32. <artifactId>ukelonn.db.liquibase.test</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>no.priv.bang.ukelonn</groupId>
  36. <artifactId>ukelonn.backend</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>no.priv.bang.authservice</groupId>
  40. <artifactId>authservice.web.security.dbrealm</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>no.priv.bang.authservice</groupId>
  44. <artifactId>authservice.web.security.memorysession</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>no.priv.bang.ukelonn</groupId>
  48. <artifactId>ukelonn.web.security</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>javax.servlet</groupId>
  52. <artifactId>javax.servlet-api</artifactId>
  53. <scope>compile</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.ops4j.pax.jdbc</groupId>
  57. <artifactId>pax-jdbc-derby</artifactId>
  58. <scope>compile</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>no.priv.bang.osgiservice</groupId>
  62. <artifactId>osgiservice.users</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  66. <artifactId>service-mocks</artifactId>
  67. <scope>compile</scope>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <artifactId>maven-clean-plugin</artifactId>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>