summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 23 insertions, 1 deletions
diff --git a/README.md b/README.md
index 24bc213..82d4737 100644
--- a/README.md
+++ b/README.md
@@ -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
+```