Skip to content

Commit fb4c851

Browse files
committed
Fix travis ci
1 parent 675b6a0 commit fb4c851

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ before_install:
44
- echo "MAVEN_OPTS='-Xmx2048M -Xss128M -XX:+CMSClassUnloadingEnabled -XX:+UseG1GC -XX:-UseGCOverheadLimit'" > ~/.mavenrc
55

66
install: skip
7-
script: travis_wait 60 mvn -q test jacoco:report cobertura:cobertura coveralls:report httpsnippet
7+
script: travis_wait 60 mvn -q test jacoco:report coveralls:report -pl httpsnippet
88

99
sudo: required
1010

@@ -20,4 +20,4 @@ cache:
2020
- .autoconf
2121
- $HOME/.m2
2222
after_success:
23-
- bash <(curl -s https://codecov.io/bash)
23+
- mvn cobertura:cobertura -pl httpsnippet && bash <(curl -s https://codecov.io/bash)

httpsnippet/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,13 @@
137137
</formats>
138138
<check />
139139
</configuration>
140+
<dependencies>
141+
<dependency>
142+
<groupId>org.ow2.asm</groupId>
143+
<artifactId>asm</artifactId>
144+
<version>5.0.3</version>
145+
</dependency>
146+
</dependencies>
140147
</plugin>
141148
</plugins>
142149
</build>

0 commit comments

Comments
 (0)