Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 21a74fc

Browse files
committed
Fixing wrong path
1 parent 79330f7 commit 21a74fc

2 files changed

Lines changed: 5 additions & 18 deletions

File tree

.travis/pom.xml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,6 @@
2727
<version>12.2.0.1</version>
2828
<scope>compile</scope>
2929
</dependency>
30-
<dependency>
31-
<groupId>xml_validator</groupId>
32-
<artifactId>xml_validator</artifactId>
33-
<version>1.0</version>
34-
<scope>system</scope>
35-
<systemPath>${project.basedir}/lib/xml_validator.jar</systemPath>
36-
</dependency>
37-
<dependency>
38-
<groupId>com.oracle.jdbc</groupId>
39-
<artifactId>orai18n</artifactId>
40-
<version>12.2.0.1</version>
41-
<scope>compile</scope>
42-
</dependency>
4330
</dependencies>
4431

4532
<repositories>

.travis/validate_report_files.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
GL_VALID=1
44

55
HTML_FILENAME="coverage.html"
6-
XSD_DIR="xsd"
7-
XML_JAR_DIR="lib"
86
JUNIT_FILENAME="junit_test_results.xml"
9-
JUNIT_XSD="xsd\junit4.xsd"
107
TFS_FILENAME="tfs_test_results.xml"
11-
TFS_XSD="xsd\junit_windy.xsd"
8+
XSD_DIR="xsd"
9+
XML_JAR_DIR="lib"
10+
JUNIT_XSD="$$XSD_DIR/junit4.xsd"
11+
TFS_XSD="$XSD_DIR/junit_windy.xsd"
1212

1313

1414
#Exclude existing issue with OL nested in PRE
@@ -21,7 +21,7 @@ WARNING_REGEX="info warning:"
2121
ERROR_REGEX="error:"
2222

2323
#XML Validator
24-
XML_VALIDATOR="lib\xml_validator.jar"
24+
XML_VALIDATOR="$XML_JAR_DIR/xml_validator.jar"
2525

2626
#Validate HTML
2727
HTML_VALIDATION_RESULTS=$(curl -H "Content-Type: text/html; charset=utf-8" --data-binary @$HTML_FILENAME "$HTML_VALIDATOR_URL?out=$VALIDATOR_OUT&filterpattern=$EXCLUSION_REGEX")

0 commit comments

Comments
 (0)