pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright 2020 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.oldalbum</groupId>
  17. <artifactId>oldalbum</artifactId>
  18. <version>2.2.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.oldalbum</groupId>
  25. <artifactId>oldalbum.services</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>no.priv.bang.oldalbum</groupId>
  29. <artifactId>oldalbum.roleadder.test</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>no.priv.bang.oldalbum</groupId>
  33. <artifactId>oldalbum.db.liquibase</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>no.priv.bang.oldalbum</groupId>
  37. <artifactId>oldalbum.db.liquibase.test</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>no.priv.bang.oldalbum</groupId>
  41. <artifactId>oldalbum.db.liquibase.production</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>no.priv.bang.oldalbum</groupId>
  45. <artifactId>oldalbum.db.liquibase.urlinit</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>no.priv.bang.oldalbum</groupId>
  49. <artifactId>oldalbum.backend</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>no.priv.bang.oldalbum</groupId>
  53. <artifactId>oldalbum.web.security</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>no.priv.bang.oldalbum</groupId>
  57. <artifactId>oldalbum.web.api</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>no.priv.bang.oldalbum</groupId>
  61. <artifactId>oldalbum.web.frontend</artifactId>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.jacoco</groupId>
  68. <artifactId>jacoco-maven-plugin</artifactId>
  69. <executions>
  70. <execution>
  71. <id>report</id>
  72. <goals>
  73. <goal>report-aggregate</goal>
  74. </goals>
  75. <phase>verify</phase>
  76. </execution>
  77. </executions>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. </project>