nusCS2113-AY1819S2 / forum

Discussion forums
MIT License
2 stars 0 forks source link

Included external library setup for Travis #25

Open warheade opened 5 years ago

warheade commented 5 years ago

Dear prof and friends,

I'm using Apache.Poi for some features of our project. I managed to make it work locally.

However, compilation fails when I pushed the changes for travis tests. The external library import is not detected and recognized by Travis.

May I ask how can I fix this issue?

Many thanks, Wang Jiannan (Victor)

chyeo commented 5 years ago

you can try updating your build.gradle under the dependencies compile group: 'org.apache.poi', name: 'poi', version: '4.0.1'

warheade commented 5 years ago

@chyeo Thank you!