Skip to content

Commit 0b20ab9

Browse files
committed
fix some build issues
I have no idea if this project is dead but it seems some build issues need fixing so this is my first pass at doing so.
1 parent 27a5a5e commit 0b20ab9

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
sudo: required
2+
services:
3+
- xvfb
24
language: java
35

46
jdk:
5-
- oraclejdk8
6-
- oraclejdk9
7-
- openjdk7
7+
- oraclejdk11
8+
- openjdk8
9+
- openjdk11
810

911
before_install:
1012
- sudo apt-get -qq update
1113
- sudo apt-get build-dep libjlatexmath-java
1214

1315
before_script:
1416
- "export DISPLAY=:99.0"
15-
- "sh -e /etc/init.d/xvfb start"
16-
- sleep 3 # give xvfb some time to start
1717

1818
after_success:
1919
- mvn cobertura:cobertura coveralls:report

pom.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,12 @@
5353
</properties>
5454

5555
<modules>
56+
<module>jlatexmath-font-cyrillic</module>
57+
<module>jlatexmath-font-greek</module>
5658
<module>jlatexmath</module>
5759
<module>jlatexmath-fop</module>
5860
<module>jlatexmath-example-giws</module>
59-
<!-- <module>jlatexmath-example-export</module> -->
61+
<module>jlatexmath-example-export</module>
6062
<!-- require a dummy artifact so can ignore deployment of previous two example modules -->
6163
<!-- see https://issues.sonatype.org/browse/NEXUS-9138 -->
6264
<module>jlatexmath-ignore</module>
@@ -92,9 +94,10 @@
9294
<plugin>
9395
<groupId>org.apache.maven.plugins</groupId>
9496
<artifactId>maven-javadoc-plugin</artifactId>
95-
<version>2.10.4</version>
97+
<version>3.1.0</version>
9698
<configuration>
97-
<additionalparam>-Xdoclint:none</additionalparam>
99+
<doclint>none</doclint>
100+
<source>8</source>
98101
</configuration>
99102
<executions>
100103
<execution>

0 commit comments

Comments
 (0)