|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ Copyright © 2022 Cask Data, Inc. |
| 4 | + ~ |
| 5 | + ~ Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 6 | + ~ use this file except in compliance with the License. You may obtain a copy of |
| 7 | + ~ the License at |
| 8 | + ~ |
| 9 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + ~ |
| 11 | + ~ Unless required by applicable law or agreed to in writing, software |
| 12 | + ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 | + ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 | + ~ License for the specific language governing permissions and limitations under |
| 15 | + ~ the License. |
| 16 | + --> |
| 17 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 20 | + <parent> |
| 21 | + <groupId>io.cdap.delta</groupId> |
| 22 | + <artifactId>database-delta-plugins</artifactId> |
| 23 | + <version>0.8.0-SNAPSHOT</version> |
| 24 | + </parent> |
| 25 | + <modelVersion>4.0.0</modelVersion> |
| 26 | + |
| 27 | + <artifactId>coverage-report</artifactId> |
| 28 | + <name>Database Delta Code Coverage</name> |
| 29 | + |
| 30 | + <dependencies> |
| 31 | + <dependency> |
| 32 | + <groupId>io.cdap.delta</groupId> |
| 33 | + <artifactId>delta-plugins-common</artifactId> |
| 34 | + <version>${project.version}</version> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>io.cdap.delta</groupId> |
| 38 | + <artifactId>mysql-delta-plugins</artifactId> |
| 39 | + <version>${project.version}</version> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>io.cdap.delta</groupId> |
| 43 | + <artifactId>sqlserver-delta-plugins</artifactId> |
| 44 | + <version>${project.version}</version> |
| 45 | + </dependency> |
| 46 | + </dependencies> |
| 47 | + <profiles> |
| 48 | + <profile> |
| 49 | + <id>coverage</id> |
| 50 | + <build> |
| 51 | + <plugins> |
| 52 | + <plugin> |
| 53 | + <groupId>org.jacoco</groupId> |
| 54 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 55 | + <version>${jacoco.version}</version> |
| 56 | + <executions> |
| 57 | + <execution> |
| 58 | + <id>report</id> |
| 59 | + <goals> |
| 60 | + <goal>report-aggregate</goal> |
| 61 | + </goals> |
| 62 | + <phase>verify</phase> |
| 63 | + </execution> |
| 64 | + </executions> |
| 65 | + </plugin> |
| 66 | + </plugins> |
| 67 | + </build> |
| 68 | + </profile> |
| 69 | + </profiles> |
| 70 | +</project> |
0 commit comments