Skip to content

Commit 7a553d3

Browse files
committed
first commit
0 parents  commit 7a553d3

26 files changed

+27883
-0
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
test/* linguist-vendored

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
**/out/**
2+
**/temp/**
3+
**/tmp/**
4+
5+
.scannerwork/
6+
7+
*~
8+
.fuse_hidden*
9+
.directory
10+
.Trash-*
11+
.nfs*
12+
*.DS_Store
13+
.AppleDouble
14+
.LSOverride
15+
Icon
16+
._*
17+
.DocumentRevisions-V100
18+
.fseventsd
19+
.Spotlight-V100
20+
.TemporaryItems
21+
.Trashes
22+
.VolumeIcon.icns
23+
.com.apple.timemachine.donotpresent
24+
.AppleDB
25+
.AppleDesktop
26+
Network Trash Folder
27+
Temporary Items
28+
.apdisk

.travis.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
language: java
2+
sudo: required
3+
dist: bionic
4+
5+
jdk:
6+
- openjdk11
7+
8+
addons:
9+
apt:
10+
packages:
11+
- ant
12+
13+
env:
14+
- DITA_OT=3.4.1
15+
16+
before_install:
17+
- zip -r fox.jason.passthrough.doxygen.zip . -x *.zip* *.git/* *temp/* *out/*
18+
- curl -LO https://github.com/dita-ot/dita-ot/releases/download/$DITA_OT/dita-ot-$DITA_OT.zip
19+
- unzip -q dita-ot-$DITA_OT.zip
20+
- chmod +x dita-ot-$DITA_OT/bin/dita
21+
22+
install:
23+
- dita-ot-$DITA_OT/bin/dita --install https://github.com/jason-fox/fox.jason.unit-test/archive/master.zip
24+
- dita-ot-$DITA_OT/bin/dita --install https://github.com/doctales/org.doctales.xmltask/archive/master.zip
25+
- dita-ot-$DITA_OT/bin/dita --install https://github.com/jason-fox/fox.jason.passthrough/archive/master.zip
26+
- dita-ot-$DITA_OT/bin/dita --install fox.jason.passthrough.doxygen.zip
27+
28+
before_script:
29+
- dita-ot-$DITA_OT/bin/dita --input dita-ot-$DITA_OT/plugins/fox.jason.passthrough.doxygen -f xsl-instrument
30+
31+
script:
32+
- dita-ot-$DITA_OT/bin/dita --input dita-ot-$DITA_OT/plugins/fox.jason.passthrough.doxygen -f unit-test --output . -v
33+
34+
after_success:
35+
- cp dita-ot-$DITA_OT/plugins/fox.jason.unit-test/resource/pom.xml pom.xml
36+
- mvn clean org.eluder.coveralls:coveralls-maven-plugin:report
37+
- rm -rf dita-ot-$DITA_OT
38+
# - sonar-scanner
39+
40+
41+
42+

0 commit comments

Comments
 (0)