Skip to content

TP final de la materia Proyecto Profesional I - UNGS 2017

License

Notifications You must be signed in to change notification settings

tpfinal-pp1/tp-final

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Inmobi - Sistema de gestión Inmobiliaria

(Youtube Video) Build Coverage Status

See tests logs for Serial Key or go to Installer/KeyGen image

Maven goal:

jetty:run

CI-CD:

    #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 &