|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<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"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion> |
4 | 5 | <parent> |
5 | 6 | <groupId>com.atlassian.commonmark</groupId> |
|
15 | 16 | <dependency> |
16 | 17 | <groupId>com.atlassian.commonmark</groupId> |
17 | 18 | <artifactId>commonmark</artifactId> |
18 | | - <scope>test</scope> |
19 | 19 | </dependency> |
20 | 20 | <dependency> |
21 | 21 | <groupId>com.atlassian.commonmark</groupId> |
22 | 22 | <artifactId>commonmark-ext-autolink</artifactId> |
23 | | - <scope>test</scope> |
24 | 23 | </dependency> |
25 | 24 | <dependency> |
26 | 25 | <groupId>com.atlassian.commonmark</groupId> |
27 | 26 | <artifactId>commonmark-ext-gfm-strikethrough</artifactId> |
28 | | - <scope>test</scope> |
29 | 27 | </dependency> |
30 | 28 | <dependency> |
31 | 29 | <groupId>com.atlassian.commonmark</groupId> |
32 | 30 | <artifactId>commonmark-ext-gfm-tables</artifactId> |
33 | | - <scope>test</scope> |
34 | 31 | </dependency> |
35 | 32 | <dependency> |
36 | 33 | <groupId>com.atlassian.commonmark</groupId> |
37 | 34 | <artifactId>commonmark-ext-yaml-front-matter</artifactId> |
38 | | - <scope>test</scope> |
39 | 35 | </dependency> |
| 36 | + |
40 | 37 | <dependency> |
41 | 38 | <groupId>org.pegdown</groupId> |
42 | 39 | <artifactId>pegdown</artifactId> |
|
61 | 58 | </dependency> |
62 | 59 | </dependencies> |
63 | 60 |
|
| 61 | + <profiles> |
| 62 | + <profile> |
| 63 | + <id>coverage</id> |
| 64 | + <build> |
| 65 | + <plugins> |
| 66 | + <plugin> |
| 67 | + <groupId>org.jacoco</groupId> |
| 68 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 69 | + <configuration> |
| 70 | + <!-- This is where coveralls expects the files to be, so just put it there. --> |
| 71 | + <outputDirectory>${project.parent.reporting.outputDirectory}/jacoco</outputDirectory> |
| 72 | + </configuration> |
| 73 | + <executions> |
| 74 | + <execution> |
| 75 | + <id>report-aggregate</id> |
| 76 | + <goals> |
| 77 | + <goal>report-aggregate</goal> |
| 78 | + </goals> |
| 79 | + <phase>test</phase> |
| 80 | + </execution> |
| 81 | + </executions> |
| 82 | + </plugin> |
| 83 | + </plugins> |
| 84 | + </build> |
| 85 | + </profile> |
| 86 | + </profiles> |
| 87 | + |
64 | 88 | <build> |
65 | 89 | <plugins> |
66 | 90 | <plugin> |
|
0 commit comments