This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
λ git clone https://github.com/shengzheng1981/green-gis-manager.gi | |
t --depth 1 | |
Cloning into 'green-gis-manager'... | |
remote: Enumerating objects: 125, done. | |
remote: Counting objects: 100% (125/125), done. | |
remote: Compressing objects: 100% (107/107), done. | |
Reremote: Total 125 (delta 18), reused 99 (delta 14), pack-reused 0 | |
Receiving objects: 100% (125/125), 1.68 MiB | 471.00 KiB/s, done. | |
Resolving deltas: 100% (18/18), done. | |
Administrator@WIN-GINQBVG6CRU /e/github/gis |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
application { | |
config { | |
baseName store, | |
applicationType gateway, | |
packageName com.jhipster.demo.store, | |
serviceDiscoveryType eureka, | |
authenticationType jwt, | |
prodDatabaseType mysql, | |
cacheProvider hazelcast, | |
buildTool maven, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env groovy | |
node { | |
stage('checkout') { | |
checkout scm | |
} | |
stage('check java') { | |
sh "java -version" | |
} |