-
Notifications
You must be signed in to change notification settings - Fork 50
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
ruhrotht
authored and
ruhrotht
committed
Sep 29, 2024
1 parent
93cfbd3
commit 3c0bc0c
Showing
3 changed files
with
70 additions
and
23 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
35 changes: 35 additions & 0 deletions
35
...eck-maven-plugin/src/test/resources-its/org/aim42/htmlSanityCheck/it/MavenIT/rain/pom.xml
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>doc-test-docs</artifactId> | ||
<groupId>org.aim42</groupId> | ||
<version>0.1-SNAPSHOT</version> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.aim42.htmlSanityCheck</groupId> | ||
<artifactId>htmlsanitycheck-maven-plugin</artifactId> | ||
<version>2.0.0-rc1</version> | ||
<executions> | ||
<execution> | ||
<phase>compile</phase> | ||
<goals> | ||
<goal>sanity-check</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<sourceDocuments> | ||
<file>src/file-to-test.html</file> | ||
</sourceDocuments> | ||
<sourceDir>src</sourceDir> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
|
||
</project> |
35 changes: 35 additions & 0 deletions
35
...maven-plugin/src/test/resources-its/org/aim42/htmlSanityCheck/it/MavenIT/sunshine/pom.xml
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>doc-test-docs</artifactId> | ||
<groupId>org.aim42</groupId> | ||
<version>0.1-SNAPSHOT</version> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.aim42.htmlSanityCheck</groupId> | ||
<artifactId>htmlsanitycheck-maven-plugin</artifactId> | ||
<version>2.0.0-rc1</version> | ||
<executions> | ||
<execution> | ||
<phase>compile</phase> | ||
<goals> | ||
<goal>sanity-check</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<sourceDocuments> | ||
<file>src/file-to-test.html</file> | ||
</sourceDocuments> | ||
<sourceDir>src</sourceDir> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
|
||
</project> |