diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2016-05-27 08:34:03 +0200 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2016-05-31 22:49:18 +0200 |
commit | 9e49cfad330d4e5f44fa9ff22ea86e52c2ec685b (patch) | |
tree | d2ec8a916e69b8e248f9f1a7e81270b0b3b140b1 /README.md | |
parent | 41b5090d169bfed6bba74a55081a75bbb143bfad (diff) | |
download | debian-packages-9e49cfad330d4e5f44fa9ff22ea86e52c2ec685b.tar.gz debian-packages-9e49cfad330d4e5f44fa9ff22ea86e52c2ec685b.zip |
delete environmens.inc.sh
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 24 |
1 files changed, 23 insertions, 1 deletions
@@ -16,9 +16,31 @@ export PATH=$PATH:/opt/scripts/bin/ source /opt/scripts/lib/activate.inc.sh ``` +### Example + +```bash +function __env_ideajava8() { + __activator oraclejdk8 idea-iu2016 groovy-bin-2.4.5 + __activator gwt-chromium cern-scripts + export TNS_ADMIN=/home/yfischer/.cache/tnsnames/admin_localhost + export JAVA_OPTS="-Doracle.net.tns_admin=$TNS_ADMIN" + export GRADLE_OPTS="-Doracle.net.tns_admin=$TNS_ADMIN" +} +function __env_fwk24() { + __activator oraclejdk7 + __activator gwt-chromium + __activator idea-iu2016 + __activator cern-scripts + export PATH=/opt/grails2.2.1/bin:$PATH + export TNS_ADMIN=/home/yfischer/.cache/tnsnames/admin_localhost + export JAVA_OPTS="-Doracle.net.tns_admin=$TNS_ADMIN" + export GRADLE_OPTS="-Doracle.net.tns_admin=$TNS_ADMIN" +} +``` + ## Build packages ``` # ./gradlew packages:jvmtop:buildDeb # dpkg -i packages/jvmtop/build/distributions/jvmtop*deb -```
\ No newline at end of file +``` |