-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.properties
55 lines (38 loc) · 2.1 KB
/
build.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
######################## soa-p pre-reqs ########################
# name of organization using this soa-p-provision project
organization.name=spp
# this project has a dependency on the soa-pProvision project located at : https://github.com/jbride/soa-pProvision
spp.home=${ENV.SPP_HOME}
#####################################################################################################
########################## JBoss EAP/SOA-P configurations ############################
# absolute path to JBoss EAP 5.1.* or SOA-P 5.1.*
jboss.home=${ENV.JBOSS_HOME}
# defines which JBoss server configuration should be used, ie: ${jboss.home}/server/${jboss.server.configuration}
jboss.server.configuration=default-${organization.name}
# location in JBoss runtime where all customer project runtime artifacts (ie: web apps, MBeans, esb artifacts, EJBs, etc)
jboss.server.deploy.dir=${jboss.home}/server/${jboss.server.configuration}/deploy
# the following is the absolute path to the HORNETQ installation on the local filesystem
HORNETQ_HOME=${ENV.HORNETQ_HOME}
# Hornetq JNDI configurations
hornetq.naming.provider.url=jnp://${ENV.HOSTNAME}:1599
connectionFactory=/ConnectionFactory
xa_connectionFactory=/XAConnectionFactory
# server-side delay
org.jboss.server.side.delay.millis=60000
#####################################################################################################
########################## soa-pLoadTest configurations ############################
# OneWay_JMS_LoadTest specific properties
org.jboss.clientCount=1
org.jboss.messagesPerClient=1
org.jboss.rampUpInterval=0
org.jboss.isPersistent=TRUE
org.jboss.messageSize=1
org.jboss.gatewayDestinationName=/queue/testQueue.gw
org.jboss.forwardDestination=/topic/testTopic.gw
org.jboss.finalMessageDestination=/queue/controlQueue
org.jboss.sleepTimeMillis=0
org.jboss.logTrnxResult=FALSE
org.jboss.blockForTrnxResponse=TRUE
# HTTP test specific properties
org.jboss.httpTest.httpdSocketAddress=${ENV.HOSTNAME}:8080
#####################################################################################################