-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ondrej Zizka
committed
Nov 30, 2022
1 parent
5972164
commit b0d9305
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,9 @@ | |
<description>JUnitDiff creates a HTML table from JUnit results. Rows are tests, columns are runs. Clicking the statuses reveals a pop-up with the logs and the stacktrace if any. </description> | ||
<url>https://github.com/OndraZizka/junitdiff</url> | ||
<!-- <url>http://ondra.zizka.cz/stranky/programovani/java/junit-test-results-report-comparison-junitdiff.texy</url> --> | ||
<licenses><license><name>The Apache Software License, Version 2.0</name><url>http://www.apache.org/licenses/LICENSE-2.0.txt</url><distribution>repo</distribution></license></licenses> | ||
<developers><developer><name>Ondrej Zizka</name><email>[email protected]</email></developer></developers> | ||
<issueManagement><system>GitHub Issues</system><url>https://github.com/OndraZizka/junitdiff/issues</url></issueManagement> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
|
@@ -146,7 +149,7 @@ | |
</profile> | ||
|
||
<profile> | ||
<id>packageDistributable</id> | ||
<id>packageDistributable</id> <activation><property><name>release</name></property></activation> | ||
<build> | ||
<plugins> | ||
<!-- Copy the dependencies to /lib --> | ||
|
@@ -199,7 +202,7 @@ | |
</profile> | ||
|
||
<profile> | ||
<id>e2eTest</id> | ||
<id>e2eTest</id> <activation><property><name>release</name></property></activation> | ||
<build> | ||
<plugins> | ||
<!-- One real execution of the tool from outside JUnit. --> | ||
|
@@ -223,7 +226,7 @@ | |
</profile> | ||
|
||
<!-- Release. --> | ||
<profile><id>release</id> | ||
<profile><id>release</id> <activation><property><name>release</name></property></activation> | ||
<properties> | ||
<ossrh.host>oss.sonatype.org</ossrh.host> | ||
</properties> | ||
|