pom.xml 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright 2019 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>1.15.21-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. <version>${project.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>no.priv.bang.authservice</groupId>
  30. <artifactId>authservice.db.liquibase</artifactId>
  31. <version>${project.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>no.priv.bang.authservice</groupId>
  35. <artifactId>authservice.db.liquibase.test</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>no.priv.bang.authservice</groupId>
  40. <artifactId>authservice.db.liquibase.production</artifactId>
  41. <version>${project.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>no.priv.bang.authservice</groupId>
  45. <artifactId>authservice.web.security.dbrealm</artifactId>
  46. <version>${project.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>no.priv.bang.authservice</groupId>
  50. <artifactId>authservice.web.security.memorysession</artifactId>
  51. <version>${project.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>no.priv.bang.authservice</groupId>
  55. <artifactId>authservice.web.security</artifactId>
  56. <version>${project.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>no.priv.bang.authservice</groupId>
  60. <artifactId>authservice.users</artifactId>
  61. <version>${project.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>no.priv.bang.authservice</groupId>
  65. <artifactId>authservice.web.users.api</artifactId>
  66. <version>${project.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>no.priv.bang.authservice</groupId>
  70. <artifactId>authservice.web.users.frontend</artifactId>
  71. <version>${project.version}</version>
  72. </dependency>
  73. </dependencies>
  74. <build>
  75. <plugins>
  76. <plugin>
  77. <groupId>org.jacoco</groupId>
  78. <artifactId>jacoco-maven-plugin</artifactId>
  79. <executions>
  80. <execution>
  81. <id>report</id>
  82. <goals>
  83. <goal>report-aggregate</goal>
  84. </goals>
  85. <phase>verify</phase>
  86. </execution>
  87. </executions>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. </project>