pom.xml 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright 2019-2025 Steinar Bang -->
  3. <!-- -->
  4. <!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
  5. <!-- you may not use this file except in compliance with the License. -->
  6. <!-- You may obtain a copy of the License at -->
  7. <!-- http://www.apache.org/licenses/LICENSE-2.0 -->
  8. <!-- Unless required by applicable law or agreed to in writing, -->
  9. <!-- software distributed under the License is distributed on an "AS IS" BASIS, -->
  10. <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
  11. <!-- See the License for the specific language governing permissions and limitations -->
  12. <!-- under the License. -->
  13. <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">
  14. <modelVersion>4.0.0</modelVersion>
  15. <parent>
  16. <groupId>no.priv.bang.authservice</groupId>
  17. <artifactId>authservice-parent</artifactId>
  18. <version>2.3.3-SNAPSHOT</version>
  19. </parent>
  20. <artifactId>jacoco-coverage-report</artifactId>
  21. <name>Jacoco aggregate XML test coverage report</name>
  22. <dependencies>
  23. <dependency>
  24. <groupId>no.priv.bang.authservice</groupId>
  25. <artifactId>authservice.definitions</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>no.priv.bang.authservice</groupId>
  29. <artifactId>authservice.db.liquibase</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>no.priv.bang.authservice</groupId>
  33. <artifactId>authservice.db.liquibase.test</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>no.priv.bang.authservice</groupId>
  37. <artifactId>authservice.db.liquibase.production</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>no.priv.bang.authservice</groupId>
  41. <artifactId>authservice.web.security.dbrealm</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>no.priv.bang.authservice</groupId>
  45. <artifactId>authservice.web.security.memorysession</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>no.priv.bang.authservice</groupId>
  49. <artifactId>authservice.web.security.cipherkey</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>no.priv.bang.authservice</groupId>
  53. <artifactId>authservice.web.security.shirofilter</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>no.priv.bang.authservice</groupId>
  57. <artifactId>authservice.web.security</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>no.priv.bang.authservice</groupId>
  61. <artifactId>authservice.users</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>no.priv.bang.authservice</groupId>
  65. <artifactId>authservice.web.users.api</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>no.priv.bang.authservice</groupId>
  69. <artifactId>authservice.web.users.frontend</artifactId>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.jacoco</groupId>
  76. <artifactId>jacoco-maven-plugin</artifactId>
  77. <executions>
  78. <execution>
  79. <id>report</id>
  80. <goals>
  81. <goal>report-aggregate</goal>
  82. </goals>
  83. <phase>verify</phase>
  84. </execution>
  85. </executions>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>