pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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.osgi.service.adapters</groupId>
  17. <artifactId>adapters-parent</artifactId>
  18. <version>1.3.0-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.osgi.service.adapters</groupId>
  25. <artifactId>service-mocks</artifactId>
  26. <version>${project.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  30. <artifactId>adapters.logservice</artifactId>
  31. <version>${project.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  35. <artifactId>adapters.jdbc</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <groupId>org.jacoco</groupId>
  43. <artifactId>jacoco-maven-plugin</artifactId>
  44. <executions>
  45. <execution>
  46. <id>report</id>
  47. <goals>
  48. <goal>report-aggregate</goal>
  49. </goals>
  50. <phase>verify</phase>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>