File | Date | Author | Commit |
---|---|---|---|
Inmobi Installer | 2019-08-30 |
![]() |
[cd00bc] Fixed Tika vulnerability and added keygen |
src | 2019-08-30 |
![]() |
[cd00bc] Fixed Tika vulnerability and added keygen |
.gitattributes | 2017-10-16 |
![]() |
[78cde1] imeplentado cambio de estados en contratos de v... |
.gitignore | 2019-08-30 |
![]() |
[cd00bc] Fixed Tika vulnerability and added keygen |
.travis.yml | 2019-08-30 |
![]() |
[71506f] travis test fix attemp |
LICENSE | 2017-09-29 |
![]() |
[52677e] "revert"(no exactamente ) a los cambios del com... |
README.md | 2019-08-30 |
![]() |
[16bfc7] Update README.md |
pom.xml | 2019-08-30 |
![]() |
[2a75b0] set java version on travis java 8 |
See tests logs for Serial Key or go to Installer/KeyGen
Travis(Integración Continua): https://travis-ci.org/tpfinal-pp1/tp-final
SonarCloud(Calidad de Codigo): https://sonarcloud.io/dashboard?id=com.TpFinal%3ATpFinal
Coveralls(Covertura): https://coveralls.io/github/tpfinal-pp1/tp-final
jetty:run
#cleanup workspace
rm -rf jetty.old
mv jetty jetty.old
# download jetty
cp /config/workspace/Package/jetty.tar.gz jetty.tar.gz
tar xfz jetty.tar.gz
mv jetty-distribution-9.4.8.v20171121 jetty
rm jetty.tar.gz
mv jetty.old/Files jetty/Files
#Kill jetty if running
pkill -9 -f jetty.port=9012 || true
sleep 5
cd jetty
cp /config/workspace/Package/target/Inmobi.war /config/workspace/Run/jetty/webapps/root.war
#start jetty & prevent jenkins killing job after finish
BUILD_ID=dontKillMe nohup java -jar start.jar jetty.port=9012 > ../jetty.log 2>&1 &