-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathenvironment.properties
38 lines (31 loc) · 1.49 KB
/
environment.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
web.host=web.echothree.com
web.dir.base=/var/www/html
web.dir.javadoc=javadoc/master
jacoco.output.dir=generated/jacoco
jacoco.output.report.dir=generated/jacoco/report
jacoco.output.destfile=jacoco.exec
wildfly.output.dir=generated/wildfly
wildfly.output.reload=${wildfly.output.dir}/reload.txt
wildfly.output.shutdown=${wildfly.output.dir}/shutdown.txt
wildfly.version=26.1.3.Final
wildfly.modules=modules
wildfly.instance=standalone
wildfly.configuration=standalone-full-ha.xml
wildfly.deployments=deployments
wildfly.home=../../wildfly-${wildfly.version}
wildfly.home.bin=${wildfly.home}/bin
wildfly.home.modules=${wildfly.home}/${wildfly.modules}
wildfly.home.deploy=${wildfly.home}/${wildfly.instance}/${wildfly.deployments}
# Host/port/URL to verify WildFly has successfully started
wildfly.host=127.0.0.1
wildfly.console.port=9990
wildfly.console.url=/console/index.html
# Relative to wildfly.output.dir
wildfly.jacoco.home=../../${jacoco.home}
wildfly.jacoco.output.dir=../../${jacoco.output.dir}
wildfly.javaopts.memory=-Xms128m -Xmx6144m
wildfly.javaopts.network=-Djava.net.preferIPv4Stack=true
wildfly.javaopts.jooq=-Dorg.jooq.no-logo=true
wildfly.javaopts.required=-Djboss.modules.system.pkgs=org.jboss.byteman -Djava.awt.headless=true
wildfly.javaopts.debug=-agentlib:jdwp=transport=dt_socket,address=8787,server=y,suspend=n
wildfly.javaopts.jacoco=-javaagent:../../build/lib/org.jacoco.agent-runtime.jar=destfile=${wildfly.jacoco.output.dir}/${jacoco.output.destfile},output=file,append=true,dumponexit=true