This module adds Jetty support to jPOS-EE, by using jPOS' q2modules/
jetty. It provides a configuration file
deploy/90_jetty.xml with the following content:
<jetty class="org.jpos.q2.jetty.Jetty">
<attr name="config">cfg/jetty.xml</attr>
</jetty>
cfg/jetty.xml is Jetty's configuration file, that uses webapps/root as
its root directory. See Jetty's Home
[http://www.mortbay.com/mortbay/mbindex.html] for details.
The default configuration listens to port 8080, so you can point your
browser to localhost
[http://localhost:8080/] in order to verify that this modules is
running.
Note
Please review cfg/jetty.xml for further configuration.
I copied this module to modules folder from jposee and run the "ant
run".
David Bergert, CISSP, CISA, CPISM/A
www.paymentsystemsblog.com
> --
> You received this message because you are subscribed to the "jPOS Users" group.
> Please see http://jpos.org/wiki/JPOS_Mailing_List_Readme_first
> To post to this group, send email to jpos-...@googlegroups.com
> To unsubscribe, send email to jpos-users+...@googlegroups.com
> For more options, visit this group at http://groups.google.com/group/jpos-users
This module adds Jetty support to jPOS-EE, by using jPOS' q2modules/
jetty. It provides a configuration file
deploy/90_jetty.xml with the following content:
<jetty class="org.jpos.q2.jetty.Jetty">
<attr name="config">cfg/jetty.xml</attr>
</jetty>
cfg/jetty.xml is Jetty's configuration file, that uses webapps/root as
its root directory. See Jetty's Home
[http://www.mortbay.com/mortbay/mbindex.html] for details.
The default configuration listens to port 8080, so you can point your
browser to localhost
[http://localhost:8080/] in order to verify that this modules is
running.
Note
Please review cfg/jetty.xml for further configuration.
I copied this module to modules folder from jposee and run the "ant
run".
But when I type the http://localhost:8080 in webbrowser.. nothing
happen... it's look the the WebServer is not running.
How can I check if the WebServer is running?
is there any sample for a page to be integrated?
Thanks,
Bruno Lovato
check the q2 log to see if jetty was deployed by q2
$ netstat -an | grep 8080
will show if anything is listening on that port ?
is something else already running on that port ?
The text being written to the command window in which you typed 'ant
run' should also show what was deployed from where and what it is doing.
>
> $ netstat -an | grep 8080
If you are running windows on the machine you are attempting this on..
netstat -a
and looking through the output might also do.
--
Mark
or:
C:\netstat -an | find /i "8080".
perfect...
I learnt something today 8).
--
Mark
I learned too.
the results for this command was:
C:\Users\bruno>netstat -an | find /i "8080"
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING
TCP 127.0.0.1:8080 127.0.0.1:54538 TIME_WAIT
TCP 127.0.0.1:8080 127.0.0.1:54554 TIME_WAIT
TCP 127.0.0.1:8080 127.0.0.1:54560 TIME_WAIT
TCP 127.0.0.1:8080 127.0.0.1:54573 ESTABLISHED
TCP 127.0.0.1:54573 127.0.0.1:8080 ESTABLISHED
TCP [::1]:54585 [::1]:8080 SYN_SENT
I looks that it is listening.
The page is blank now. To put I page where should I put one? Is it
TomCat the Server behind?
Is there as page sample that monitor the Q2 Messages?
Thanks
> The page is blank now. To put I page where should I put one? Is it
> TomCat the Server behind?
Something needs to provide the pages that the server serves..
> Is there as page sample that monitor the Q2 Messages?
From memory it just 'worked' for me. Can you check you have followed
all instructions, and bear in mind that windows was not the target
system for these instructions, so there are extra (optional/conditional)
steps you may need to take.
I will take a look tomorrow and try to see if anything obvious is
missing, but I suspect you might have missed something small but
significant.
--
Mark
Sent from my Nokia phone
--
Mark
--
31/01/2010 23:03 <DIR> .
31/01/2010 23:03 <DIR> ..
31/01/2010 22:58 <DIR> clientsimulator
26/01/2010 17:09 <DIR> commons
26/01/2010 17:09 <DIR> eecore3
26/01/2010 17:09 <DIR> eeweb3
26/01/2010 17:09 <DIR> hibernate3
26/01/2010 17:09 <DIR> hibernate3_mysql
03/02/2010 17:44 0 ignore.list
03/02/2010 17:44 0 include.list
26/01/2010 17:09 <DIR> jetty6
26/01/2010 12:05 <DIR> jpos
26/01/2010 17:09 <DIR> jpublish4
31/01/2010 22:58 <DIR> serversimulator
31/01/2010 23:03 <DIR> splash
26/01/2010 17:09 <DIR> status
26/01/2010 17:09 <DIR> status_ui
26/01/2010 12:05 <DIR> system
I created as well a "hello world" page in jposee\modules\eeweb3\webapps
\jposee, I thought that page could show up for me, but nothing happen.
I've been based to build this in two documents:
http://uy.jpos.org/ee/jPOS-EE-SDK.pdf
http://jpos.org/blog/2007/10/jpos-ee-setup-howto/
I'm in windows.
But didn't work.
Thanks,
> Please seehttp://jpos.org/wiki/JPOS_Mailing_List_Readme_first
I have similar situation like Bruno I believe. My setup is similar and
I have double checked with netstat -anpt to make sure port 8080 is
opened by jpos and not by some other program. Following is the wget
output.
# wget localhost:8080
--2010-02-04 18:53:11-- http://localhost:8080/
Resolving localhost... 127.0.0.1
Connecting to localhost|127.0.0.1|:8080... connected.
HTTP request sent, awaiting response... No data received.
Retrying.
--2010-02-04 18:53:42-- (try: 2) http://localhost:8080/
Connecting to localhost|127.0.0.1|:8080... connected.
HTTP request sent, awaiting response... No data received.
I have set log4j to DEBUG level and don't see any fatal error
indication. Although I don't see any log activity after I connect with
browser/wget either. If you want I can upload the log somewhere.
Ticl
ok, but is it being deployed?
Please check the output from 'ant run' to make sure for yourself? The
messages with deploy directory and any problems will be close to the
top, as will the messages indicating any successful deployment(s).
> But didn't work.
Jetty returns just an empty page, or an error message to your browser?
Without replicating your environment - or getting access, it is hard to
help without you providing a bit more detail 8).
It seem 'Ticl' has similar problems...
... perhaps I will suffer the same when I get round to trying from 'fresh'.
--
Mark
Running
'ant clean run'
.
Running
'ant clean run - verbose'
in case something is hiding in the realm of ant.
This output will show various software versions you are using, perhaps
there is something there.
Any relevant, useful output posted here (keep it small where you can)
might help too.
--
Mark
Buildfile: C:\Users\bruno\Desktop\jposee\build.xml
clean:
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\dist
prepare:
[echo] Build jPOS-EE-1.6.7.2010.02.04.01.52.54
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\src
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\lib
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\bin
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\doc
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\cfg
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\modules
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\deploy
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\deploy
\lib
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\webapps
\root
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\classes
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\dist
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\log
modules:
[copy] Copying 319 files to C:\Users\bruno\Desktop\jposee\build
\modules
[copy] Copying 11 files to C:\Users\bruno\Desktop\jposee\build
\deploy
[copy] Copying 37 files to C:\Users\bruno\Desktop\jposee\build
\lib
[copy] Copying 3 files to C:\Users\bruno\Desktop\jposee\build\bin
[copy] Copying 1 file to C:\Users\bruno\Desktop\jposee\build
\deploy\lib
[copy] Copying 155 files to C:\Users\bruno\Desktop\jposee\build
[copy] Copying 98 files to C:\Users\bruno\Desktop\jposee\build
\webapps
prepare:
[echo] Build jPOS-EE-1.6.7.2010.02.04.01.52.54
support:
[copy] Copying 10 files to C:\Users\bruno\Desktop\jposee\build
\classes
prepare:
[copy] Copying 1 file to C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\ee
[delete] Deleting: C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\Constants.tmp
[copy] Copying 1 file to C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\ee
[delete] Deleting: C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\Constants.tmp
prepare:
prepare:
config:
[echo] hibernate3: generating build/cfg/hibernate.cfg.xml
[copy] Copying 1 file to C:\Users\bruno\Desktop\jposee\build\cfg
[copy] Copying 1 file to C:\Users\bruno\Desktop\jposee\build\cfg
[delete] Deleting: C:\Users\bruno\Desktop\jposee\build\cfg
\hibernate.cfg.tmp
support:
[copy] Copying 12 files to C:\Users\bruno\Desktop\jposee\build
\classes
copy-bin:
[copy] Copying 1 file to C:\Users\bruno\Desktop\jposee\build\bin
manifest:
main:
[javac] C:\Users\bruno\Desktop\jposee\build.xml:118: warning:
'includeantruntime' was not set, defaulting to
build.sysclasspath=last; set to false for repeatable builds
[javac] Compiling 72 source files to C:\Users\bruno\Desktop\jposee
\build\classes
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\UserManager.java:26: warning: [deprecation]
org.hibernate.criterion.Expression in org.hibernate.criterion has been
deprecated
[javac] import org.hibernate.criterion.Expression;
[javac] ^
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee\action
\Menu.java:28: warning: [deprecation] org.jpos.space.TinySpace in
org.jpos.space has been deprecated
[javac] import org.jpos.space.TinySpace;
[javac] ^
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\UserManager.java:49: warning: [deprecation]
org.hibernate.criterion.Expression in org.hibernate.criterion has been
deprecated
[javac] .add (Expression.eq ("nick", nick));
[javac] ^
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\UserManager.java:51: warning: [deprecation]
org.hibernate.criterion.Expression in org.hibernate.criterion has been
deprecated
[javac] crit = crit.add (Expression.eq ("deleted",
Boolean.FALSE));
[javac] ^
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\UserManager.java:97: warning: [deprecation]
org.hibernate.criterion.Expression in org.hibernate.criterion has been
deprecated
[javac] .add (Expression.eq ("deleted",
Boolean.FALSE))
[javac] ^
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee\action
\Menu.java:53: warning: [deprecation] org.jpos.space.TinySpace in
org.jpos.space has been deprecated
[javac]
context.getSession().setAttribute(MENU, sp = new TinySpace());
[javac]
^
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 6 warnings
jar:
[jar] Building jar: C:\Users\bruno\Desktop\jposee\build\jpos-
ee.jar
run:
[java] <log realm="Q2.system" at="Thu Feb 04 13:53:09 BRST
2010.576">
[java] <info>
[java] Q2 started, deployDir=C:\Users\bruno\Desktop\jposee
\build\deploy
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 13:53:09 BRST
2010.611">
[java] <info>
[java] new classloader [19efb05] has been created
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 13:53:09 BRST
2010.613">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\01_start.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 13:53:09 BRST
2010.625">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\02_status_heartbeat.xml
[java] </info>
[java] </log>
[java] 04/02/2010 13:53:11
net.sf.ehcache.config.ConfigurationFactory parseConfiguration
[java] WARNING: No configuration found. Configuring ehcache from
ehcache-failsafe.xml found in the classpath: jar:file:/C:/Users/bruno/
Desktop/jposee/build/lib/ehcache-1.6.0.jar!/ehcache-failsafe.xml
[java] <log realm="Q2.system" at="Thu Feb 04 13:53:11 BRST
2010.870">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\05_serversimulator.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 13:53:11 BRST
2010.877">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\10_clientsimulator_channel.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 13:53:11 BRST
2010.888">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\10_splash.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 13:53:11 BRST
2010.894">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\20_clientsimulator_mux.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 13:53:11 BRST
2010.908">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\25_clientsimulator_ui.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 13:53:11 BRST
2010.919">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\30_clientsimulator.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 13:53:11 BRST
2010.999">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\90_jetty.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 13:53:12 BRST
2010.140">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\99_sysmon.xml
[java] </info>
[java] </log>
[java] <log realm="simulator_10000.server" at="Thu Feb 04
13:53:12 BRST 2010.233">
[java] <iso-server>
[java] listening on port 10000
[java] </iso-server>
[java] </log>
[java] <log realm="channel/127.0.0.1:10000" at="Thu Feb 04
13:53:12 BRST 2010.235">
[java] <connect>
[java] 127.0.0.1:10000
[java] </connect>
[java] </log>
[java] <log realm="channel/127.0.0.1:10000" at="Thu Feb 04
13:53:12 BRST 2010.978">
[java] <send>
[java] <isomsg>
[java] <!-- org.jpos.iso.packager.XMLPackager -->
[java] <field id="0" value="1800"/>
[java] <field id="7" value="0204135312"/>
[java] <field id="11" value="792975"/>
[java] <field id="12" value="000000"/>
[java] <field id="63" value="Thu Feb 04 13:53:12 BRST 2010"/
>
[java] <isomsg id="120">
[java] <field id="0" value="29110001"/>
[java] </isomsg>
[java] </isomsg>
[java] </send>
[java] </log>
[java] <log realm="channel/127.0.0.1:10000" at="Thu Feb 04
13:53:13 BRST 2010.12">
[java] <receive>
[java] <peer-disconnect/>
[java] </receive>
[java] </log>
[java] <log realm="org.jpos.q2.iso.ChannelAdaptor" at="Thu Feb 04
13:53:13 BRST 2010.52">
[java] <warn>
[java] channel-receiver-clientsimulator-receive
[java] <exception name="null">
[java] java.io.EOFException
[java] at
org.jpos.iso.channel.XMLChannel.streamReceive(XMLChannel.java:90)
[java] at org.jpos.iso.BaseChannel.receive(BaseChannel.java:649)
[java] at org.jpos.q2.iso.ChannelAdaptor
$Receiver.run(ChannelAdaptor.java:295)
[java] at java.lang.Thread.run(Thread.java:619)
[java] </exception>
[java] </warn>
[java] </log>
[java] 04/02/2010 13:53:13 net.sf.ehcache.CacheManager
detectAndFixDiskStorePathConflict
[java] WARNING: Creating a new instance of CacheManager using the
diskStorePath "C:\Users\bruno\AppData\Local\Temp\" which is already
used by an existing CacheManager.
[java] The source of the configuration was classpath.
[java] The diskStore path for this CacheManager will be set to C:
\Users\bruno\AppData\Local\Temp\\ehcache_auto_created_1265298793175.
[java] To avoid this warning consider using the CacheManager
factory methods to create a singleton CacheManager or specifying a
separate ehcache configuration (ehcache.xml) for each CacheManager
instance.
[java] <log realm="jetty" at="Thu Feb 04 13:53:13 BRST 2010.539">
[java] <warn>
[java] start
[java] <exception name="Could not create JsseListener:
java.security.cert.CertificateParsingException: signed overrun, bytes
= 67">
[java] java.io.IOException: Could not create JsseListener:
java.security.cert.CertificateParsingException: signed overrun, bytes
= 67
[java] at
org.mortbay.jetty.security.SslSocketConnector.newServerSocket(SslSocketConnector.java:
462)
[java] at
org.mortbay.jetty.bio.SocketConnector.open(SocketConnector.java:73)
[java] at
org.mortbay.jetty.AbstractConnector.doStart(AbstractConnector.java:
283)
[java] at
org.mortbay.jetty.bio.SocketConnector.doStart(SocketConnector.java:
147)
[java] at
org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:
50)
[java] at org.mortbay.jetty.Server.doStart(Server.java:235)
[java] at
org.mortbay.component.AbstractLifeCycle.start(AbstractLifeCycle.java:
50)
[java] at org.jpos.q2.jetty.Jetty6.startService(Jetty6.java:42)
[java] at org.jpos.q2.QBeanSupport.start(QBeanSupport.java:111)
[java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
[java] at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:
39)
[java] at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:
25)
[java] at java.lang.reflect.Method.invoke(Method.java:597)
[java] at
com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:
93)
[java] at
com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:
27)
[java] at
com.sun.jmx.mbeanserver.MBeanIntrospector.invokeM(MBeanIntrospector.java:
208)
[java] at
com.sun.jmx.mbeanserver.PerInterface.invoke(PerInterface.java:120)
[java] at
com.sun.jmx.mbeanserver.MBeanSupport.invoke(MBeanSupport.java:262)
[java] at
com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:
836)
[java] at
com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:761)
[java] at org.jpos.q2.QFactory.startQBean(QFactory.java:176)
[java] at org.jpos.q2.Q2.start(Q2.java:459)
[java] at org.jpos.q2.Q2.deploy(Q2.java:269)
[java] at org.jpos.q2.Q2.run(Q2.java:162)
[java] at java.lang.Thread.run(Thread.java:619)
[java] </exception>
[java] </warn>
[java] </log>
[java] <log realm="org.jpos.q2.qbean.SystemMonitor" at="Thu Feb
04 13:53:13 BRST 2010.592">
[java] <info>
[java] Starting SystemMonitor
[java] </info>
[java] </log>
[java] <log realm="org.jpos.q2.qbean.SystemMonitor" at="Thu Feb
04 13:53:13 BRST 2010.596">
[java] <info>
[java] <release>1.6.7 $Revision: 2868 $</release>
[java] <memory>
[java] freeMemory=6369208
[java] totalMemory=16318464
[java] inUseMemory=9949256
[java] </memory>
[java] <threads>
[java] delay=0 ms
[java] threads=38
[java] Thread[Reference Handler,10,system]
[java] Thread[Finalizer,8,system]
[java] Thread[Signal Dispatcher,9,system]
[java] Thread[Attach Listener,5,system]
[java] Thread[Java2D Disposer,10,system]
[java] Thread[D3D Screen Updater,7,system]
[java] Thread[Thread-0,5,main]
[java] Thread[DestroyJavaVM,5,main]
[java] Thread[Timer-0,5,main]
[java] Thread[Timer-1,5,main]
[java]
Thread[com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-
#0,5,main]
[java]
Thread[com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-
#1,5,main]
[java]
Thread[com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-
#2,5,main]
[java] Thread[MySQL Statement Cancellation Timer,
5,main]
[java] Thread[Thread-9,5,main]
[java] Thread[Thread-10,5,main]
[java] Thread[channel-sender-clientsimulator-send,
5,main]
[java] Thread[channel-receiver-clientsimulator-
receive,5,main]
[java] Thread[Thread-13,5,main]
[java] Thread[AWT-Shutdown,5,main]
[java] Thread[AWT-Windows,6,main]
[java] Thread[Image Fetcher 0,8,main]
[java] Thread[AWT-EventQueue-0,6,main]
[java] Thread[Thread-16,5,main]
[java] Thread[ISOMeter,4,main]
[java] Thread[Timer-2,5,main]
[java] Thread[btpool0-0,5,main]
[java] Thread[btpool0-1,5,main]
[java] Thread[btpool0-2,5,main]
[java] Thread[btpool0-3,5,main]
[java] Thread[btpool0-4,5,main]
[java] Thread[btpool0-5,5,main]
[java] Thread[btpool0-6 - Acceptor1
SelectChann...@0.0.0.0:8180,5,main]
[java] Thread[btpool0-7,5,main]
[java] Thread[btpool0-8 - Acceptor0
SelectChann...@0.0.0.0:8180,5,main]
[java] Thread[btpool0-9,5,main]
[java] Thread[Timer-3,5,main]
[java] Thread[Store default Spool Thread,5,main]
[java] Thread[Thread-29,5,main]
[java] Thread[Timer-4,5,main]
[java] Thread[Timer-5,5,main]
[java] Thread[Timer-6,5,main]
[java] Thread[SystemMonitor,5,main]
[java] Thread[PooledThread-0,5,ThreadPool-0]
[java] </threads>
[java] --- name-registrar ---
[java] tspace:default: org.jpos.space.TSpace
[java] <key>clientsimulator-adaptor.reconnect</key>
[java] <keycount>1</keycount>
[java] mux.clientsimulator-mux: org.jpos.q2.iso.QMUX
[java] tx=1, rx=0, tx_expired=0, tx_pending=0,
rx_expired=0, rx_pending=1, rx_unhandled=0, rx_forwarded=0,
connected=true, last=0
[java] logger.Q2: org.jpos.util.Logger
[java] server.simulator_10000: org.jpos.iso.ISOServer
[java] connected=0, rx=0, tx=0, last=0
[java] channel.clientsimulator-adaptor:
org.jpos.iso.channel.XMLChannel
[java] UI: org.jpos.ui.UI
[java] clientsimulator-adaptor:
org.jpos.q2.iso.ChannelAdaptor
[java] tx=1, rx=0, connects=1, last=0
[java] </info>
[java] </log>
[java] <log realm="channel/127.0.0.1:10000" at="Thu Feb 04
13:53:23 BRST 2010.90">
[java] <connect>
[java] 127.0.0.1:10000
[java] </connect>
[java] </log>
[java] <log realm="client-simulator" at="Thu Feb 04 13:53:42 BRST
2010.976">
[java] <error>
[java] <test-case name='Simple Echo Test'>
[java] <request>
[java] <isomsg>
[java] <!-- org.jpos.iso.packager.XMLPackager -->
[java] <field id="0" value="1800"/>
[java] <field id="7" value="! get_date()"/>
[java] <field id="11" value="!
System.currentTimeMillis() % 1000000"/>
[java] <field id="12" value="! previousTrace"/>
[java] <field id="63" value="! new Date()"/>
[java] <isomsg id="120">
[java] <field id="0" value="! terminal"/>
[java] </isomsg>
[java] </isomsg>
[java] </request>
[java] <expanded-request>
[java] <isomsg>
[java] <!-- org.jpos.iso.packager.XMLPackager -->
[java] <field id="0" value="1800"/>
[java] <field id="7" value="0204135312"/>
[java] <field id="11" value="792975"/>
[java] <field id="12" value="000000"/>
[java] <field id="63" value="Thu Feb 04 13:53:12 BRST
2010"/>
[java] <isomsg id="120">
[java] <field id="0" value="29110001"/>
[java] </isomsg>
[java] </isomsg>
[java] </expanded-request>
[java] <expected-response>
[java] <isomsg>
[java] <!-- org.jpos.iso.packager.XMLPackager -->
[java] <field id="0" value="1810"/>
[java] <field id="11" value="! previousTrace=value"/>
[java] <field id="39" value="00"/>
[java] </isomsg>
[java] </expected-response>
[java] <elapsed>30000</elapsed>
[java] </test-case>
[java] </error>
[java] </log>
[java] <log realm="channel/127.0.0.1:10000" at="Thu Feb 04
13:53:43 BRST 2010.65">
[java] <send>
[java] <isomsg>
[java] <!-- org.jpos.iso.packager.XMLPackager -->
[java] <field id="0" value="1800"/>
[java] <field id="7" value="0204135343"/>
[java] <field id="11" value="823064"/>
[java] <field id="12" value="000000"/>
[java] <field id="63" value="Thu Feb 04 13:53:43 BRST 2010"/
>
[java] <isomsg id="120">
[java] <field id="0" value="29110001"/>
[java] </isomsg>
[java] </isomsg>
[java] </send>
[java] </log>
[java] <log realm="channel/127.0.0.1:10000" at="Thu Feb 04
13:53:43 BRST 2010.81">
[java] <receive>
[java] <peer-disconnect/>
[java] </receive>
[java] </log>
[java] <log realm="org.jpos.q2.iso.ChannelAdaptor" at="Thu Feb 04
13:53:43 BRST 2010.162">
[java] <warn>
[java] channel-receiver-clientsimulator-receive
[java] <exception name="null">
[java] java.io.EOFException
[java] at
org.jpos.iso.channel.XMLChannel.streamReceive(XMLChannel.java:90)
[java] at org.jpos.iso.BaseChannel.receive(BaseChannel.java:649)
[java] at org.jpos.q2.iso.ChannelAdaptor
$Receiver.run(ChannelAdaptor.java:295)
[java] at java.lang.Thread.run(Thread.java:619)
[java] </exception>
[java] </warn>
[java] </log>
Terminate batch job (Y/N)?
> wrote: > bruno lovato wrote: > > But didn't work. > > Other things to try :- > > Running > 'ant clean run' > . > > Running > 'ant clean run - verbose' > > in case something is hiding in the realm of ant. > > This output will show various software versions you are using, perhaps > there is something there. > > Any relevant, useful output posted here (keep it small where you can) > might help too. > > -- > Mark -- You received this message because you are subscribed to the "jPOS Users" group. Please see http://jpos.org/wiki/JPOS_Mailing_List_Readme_first
One think weird or not... I didn´t see the output that the system is
listem the port 8180 (I changed from 8080 to 8180 for test, but 8080
and 8180 doesn´t work).
Apache Ant version 1.8.0RC1 compiled on January 5 2010
Trying the default build file: build.xml
Buildfile: C:\Users\bruno\Desktop\jposee\build.xml
Detected Java version: 1.6 in: C:\Program Files\Java\jdk1.6.0_18\jre
Detected OS: Windows 7
parsing buildfile C:\Users\bruno\Desktop\jposee\build.xml with URI =
file:/C:/Users/bruno/Desktop/jposee/build.xml
Project base dir set to: C:\Users\bruno\Desktop\jposee
parsing buildfile jar:file:/C:/ant/lib/ant.jar!/org/apache/tools/ant/
antlib.xml with URI = jar:file:/C:/ant/lib/ant.jar!/org/apache/tools/
ant/antlib.xml from a zip file
[property] Loading C:\Users\bruno\.ant.properties
[property] Unable to find property file: C:\Users\bruno
\.ant.properties
[property] Loading C:\Users\bruno\Desktop\jposee\custom.properties
[property] Unable to find property file: C:\Users\bruno\Desktop\jposee
\custom.properties
[property] Loading C:\Users\bruno\Desktop\jposee\build.properties
Override ignored for property "modules.ignore.list"
Build sequence for target(s) `clean' is [clean]
Complete build sequence is [clean, prepare, modules, support, copy-
bin, manifest, main, unjar, jar, singlejar, modules-dist, compile,
javadoc, stress, srcjar, run, setup, tgz, test, info, zip, , doc]
clean:
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\bin\bsh
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\bin\q2
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\bin\start
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\bin\stop
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\bin
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\build.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg\contexts
\jpos.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg\contexts
\jposee.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg\contexts
\root.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\cfg
\contexts
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg\echo_r
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg\echo_s
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg
\genericpackager.dtd
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg
\hibernate.cfg.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg\jetty.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg\jetty.xml
- Copy.sample
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg
\keystore.ks
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg
\log4j.properties
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg\menus
\main-menu.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg\menus
\nologged-menu.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg\menus
\README
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg\menus
\status.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\cfg
\menus
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg
\serversimulator.bsh
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\cfg
\webdefault.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\cfg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes
\hibernate.cfg.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes
\log4j.properties
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes
\MANIFEST.MF
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\ActionSupport.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\CheckAccess.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\Close.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\ContextConstants.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\Error.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\Login.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\Logout.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\Menu.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\Open.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\sys\Status.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\sys\StatusNode.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\sys\StatusShow.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\sys\StatusTree.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\sys\SysConfig.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\sys\SysLog.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\sys\SysLogShow.class
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\ee\action\sys
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\user\Add.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\user\Delete.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\user\List.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\user\Show.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\user\Update.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\action\user\UpdateProfile.class
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\ee\action\user
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\ee\action
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\BLException.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\Cloneable.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\Constants.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\Constants.properties
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\DB.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\EEUtil.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\info\StartStop.class
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\ee\info
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\K.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\LoggeableSysLogEvent.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\menu\MenuMap.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\menu\MenuNode$1.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\menu\MenuNode.class
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\ee\menu
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\Permission.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\ResultCode.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\ResultCode.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\ResultCodeFinder.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\ResultCodeInfo.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\ResultCodeInfoFinder.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\ResultCodeManager.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\RevisionEntry.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\RevisionEntry.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\RevisionManager.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\status\ChannelMonitor.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\status\Heartbeat.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\status\Monitor$MonitorTimerTask.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\status\Monitor.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\status\MonitorTask.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\status\Ping.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\status\Status.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\status\Status.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\status\StatusBase.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\status\StatusManager.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\status\StatusTag.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\status\StatusTag.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\status\TwoWayMonitorTask.class
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\ee\status
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\StatusRevisionEntry.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\SysConfig.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\SysConfig.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\SysConfigManager.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\SysLog.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\SysLogEvent.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\SysLogEvent.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\SysLogEventBase.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\SystemDate.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\User.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\User.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\UserManager.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\UserRevisionEntry.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\Visitor.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\Visitor.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\VisitorBase.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\VisitorManager.class
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\ee
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\q2\jetty\Jetty6.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\q2\jetty\Jetty6MBean.class
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\q2\jetty
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\q2
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\simulator\TestCase.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\simulator\TestRunner.class
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\simulator
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\util\BeanDiff$ClassInfo.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\util\BeanDiff.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\util\DateUtil.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\util\DiffEntry.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\util\V.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\util\Validator.class
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\util\Validator.properties
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\util
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\classes\org
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\classes
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\deploy
\00_logger.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\deploy
\01_start.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\deploy
\02_status_heartbeat.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\deploy
\05_serversimulator.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\deploy
\10_clientsimulator_channel.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\deploy
\10_splash.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\deploy
\20_clientsimulator_mux.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\deploy
\25_clientsimulator_ui.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\deploy
\30_clientsimulator.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\deploy
\90_jetty.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\deploy
\99_sysmon.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\deploy\lib
\q2mod_example.jar
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\deploy\lib
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\deploy
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\doc
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\jpos-ee.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\antlr-2.7.6.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\atlassian-
profiling-1.1.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\bsf.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\bsh-2.0b4.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\c3p0-0.9.1.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\commons-
beanutils-1.8.0-BETA.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\commons-
cli.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\commons-
collections-3.1.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\commons-
lang-2.4.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\commons-
logging-1.1.1.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\commons-
vfs-1.0-dev.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\cweb-
extser-0.1-b2-dev.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\dom4j-1.6.1.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\ehcache-1.6.0.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\hibernate-3.3.2.GA.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\jasper-
compiler-5.5.15.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\jasper-
runtime-5.5.15.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\javassist-3.9.0.GA.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\jdbm-1.0.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\jdom-1.0.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\je-3.3.87.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\jetty-6.1.18.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\jetty-
util-6.1.18.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\jline-0.9.91.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\jpos.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\JPublish-4.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\jsp-
api-5.0.16.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\jta-1.1.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\log4j-1.2.15.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\mysql-
connector-java-5.1.7-bin.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\PostEden-1.5.3.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\servlet-
api-2.5-20081211.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\slf4j-
api-1.5.8.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\slf4j-
log4j12-1.5.8.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\velocity-1.6.2.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib
\xercesImpl.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\lib\xml-
apis.jar
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\lib
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\log
\2010_02_04.jetty-request.log
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\log\q2.log
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\log
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\cfg\echo_r
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\cfg\echo_s
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\clientsimulator\cfg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\deploy\10_clientsimulator_channel.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\deploy\20_clientsimulator_mux.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\deploy\25_clientsimulator_ui.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\deploy\30_clientsimulator.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\clientsimulator\deploy
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\src\org\jpos\simulator\TestCase.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\src\org\jpos\simulator\TestRunner.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\clientsimulator\src\org\jpos\simulator
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\clientsimulator\src\org\jpos
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\clientsimulator\src\org
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\clientsimulator\src
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\clientsimulator
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\commons\cfg\log4j.properties
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\commons\cfg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\commons-beanutils-1.8.0-BETA.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\commons-collections-3.1.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\commons-lang-2.4.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\commons-logging-1.1.1.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\ehcache-1.6.0.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\log4j-1.2.15.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\slf4j-api-1.5.8.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\slf4j-log4j12-1.5.8.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\velocity-1.6.2.jar
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\commons\lib
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\commons
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\build.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\cfg\_hibernate.cfg.mappings
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\cfg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\deploy\01_start.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\deploy
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\BLException.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\Cloneable.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\Constants.k
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\Constants.p
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\DB.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\EEUtil.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\info\StartStop.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\info
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\K.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\LoggeableSysLogEvent.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\Permission.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\ResultCode.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\ResultCode.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\ResultCodeFinder.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\ResultCodeInfo.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\ResultCodeInfoFinder.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\ResultCodeManager.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\RevisionEntry.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\RevisionEntry.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\RevisionManager.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\StatusRevisionEntry.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysConfig.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysConfig.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysConfigManager.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysLog.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysLogEvent.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysLogEvent.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysLogEventBase.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SystemDate.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\User.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\User.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\UserManager.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\UserRevisionEntry.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\Visitor.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\Visitor.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\VisitorBase.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\VisitorManager.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\util\BeanDiff.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\util\DateUtil.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\util\DiffEntry.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\util
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eecore3
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\cfg\contexts\jposee.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\cfg\contexts
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\cfg\menus\main-menu.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\cfg\menus\nologged-menu.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\cfg\menus\README
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\cfg\menus
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\cfg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\ActionSupport.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\CheckAccess.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\Close.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\ContextConstants.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\Error.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\Login.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\Logout.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\Menu.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\Open.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\sys\SysConfig.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\sys\SysLog.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\sys\SysLogShow.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\action\sys
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\user\Add.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\user\Delete.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\user\List.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\user\Show.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\user\Update.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\user\UpdateProfile.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\action\user
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\UserPerms.k
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\action
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\menu\MenuMap.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\menu\MenuNode.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\menu
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\Visitor.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\Visitor.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\VisitorBase.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\VisitorManager.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\util\V.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\util\Validator.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\util\Validator.properties
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\util
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\test\org\jpos\util\ValidatorTestCase.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\test\org\jpos\util
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\test\org\jpos
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\test\org
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\test
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\404.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\500.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\error.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\extract\index.head
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\extract\index.html
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\content\extract
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\inc\macros.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\inc\pagination.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\inc\topbar.html
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\content\inc
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\index.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\login.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\logout.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\navigation\menu-head.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\navigation\menu-macro.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\navigation\menu.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\navigation\tabs.html
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\content\navigation
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\stop.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\cardtypeadd.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\cardtypeedit.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\cardtypeshow.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\hnav.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\index.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\routing.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\searchbar.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\sysconfig.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\syslog.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\syslogshow.html
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\content\sys
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\user\add.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\user\delete.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\user\edit.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\user\hnav.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\user\list.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\user\profile.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\user\show.html
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\content\user
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\content
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\index.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\404.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\500.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\ch\index.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\ch\list.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\ch\show.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\pages\ch
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\default.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\error.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\extract\index.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\pages\extract
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\index.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\login.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\logout.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\stop.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\add.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\delete.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\edit.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\index.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\list.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\show.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\termadd.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\termdelete.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\termedit.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\termshow.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\pages\store
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\cardtypeadd.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\cardtypeedit.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\cardtypeshow.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\index.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\routing.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\sysconfig.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\syslog.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\syslogshow.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\pages\sys
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\txn\index.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\txn\list.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\txn\show.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\pages\txn
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\user\add.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\user\delete.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\user\edit.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\user\list.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\user\profile.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\user\show.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\pages\user
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\pages
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\css\context-menu.css
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\css\cssmenu.css
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\css\folder-tree-static.css
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\static\css
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\add_item.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\alert.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\asc.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\comment.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\critical.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\desc.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\dhtmlgoodies_folder.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\dhtmlgoodies_minus.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\dhtmlgoodies_plus.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\dhtmlgoodies_sheet.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\go.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\gradient.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\green.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\jpos_bg.jpg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\jpos_l.jpg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\jpos_s.jpg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\jpos_t.jpg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\menu_bg.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\no_photo.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\off.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\oops.jpg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\police_stop.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\red.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\remove_item.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\search_button.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\tbg.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\tl.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\tr.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\tree_green.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\tree_red.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\tree_yellow.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\update_item.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\xml.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\yellow.gif
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\static\images
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\ajax.js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\calendar.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\calendar.js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\context-menu.js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\cookies.js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\folder-tree-static.js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\cal.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\logo.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\next.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\next_year.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\pixel.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\prev.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\prev_year.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\tc.gif
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\static\js\img
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\md5.js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\prototype.js
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\static\js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\style.css
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\static
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\templates\basic.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\templates\basic.x
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\templates
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\WEB-INF\classes\edenlib-config.properties
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\WEB-INF\classes\ehcache.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\WEB-INF\classes\VM_global_library.vm
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\WEB-INF\classes\whirlycache.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\WEB-INF\classes
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\WEB-INF\jpublish.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\WEB-INF\velocity.properties
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\WEB-INF\web.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee\WEB-INF
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\jposee
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\root\index.html
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\root
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\build.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\cfg\log4j.properties
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\cfg\_hibernate.cfg.head
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\cfg\_hibernate.cfg.tail
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\hibernate3\cfg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\lib\antlr-2.7.6.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\lib\c3p0-0.9.1.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\lib\dom4j-1.6.1.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\lib\hibernate-3.3.2.GA.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\lib\javassist-3.9.0.GA.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\lib\jta-1.1.jar
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\hibernate3\lib
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\hibernate3
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3_mysql\cfg\_hibernate.cfg.properties
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\hibernate3_mysql\cfg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3_mysql\lib\mysql-connector-java-5.1.7-bin.jar
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\hibernate3_mysql\lib
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\hibernate3_mysql
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\ignore.list
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\include.list
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\contexts\jpos.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\contexts\jposee.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\contexts\root.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jetty6\cfg\contexts
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\jetty.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\jetty.xml - Copy.sample
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\keystore.ks
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\webdefault.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jetty6\cfg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\deploy\90_jetty.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jetty6\deploy
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\jasper-compiler-5.5.15.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\jasper-runtime-5.5.15.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\jetty-6.1.18.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\jetty-util-6.1.18.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\jsp-api-5.0.16.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\servlet-api-2.5-20081211.jar
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jetty6\lib
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\src\org\jpos\q2\jetty\Jetty6.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\src\org\jpos\q2\jetty\Jetty6MBean.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jetty6\src\org\jpos\q2\jetty
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jetty6\src\org\jpos\q2
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jetty6\src\org\jpos
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jetty6\src\org
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jetty6\src
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jetty6
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\jpos
\cfg\genericpackager.dtd
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jpos\cfg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\bsh-2.0b4.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\commons-cli.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\cweb-extser-0.1-b2-dev.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\jdbm-1.0.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\jdom-1.0.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\je-3.3.87.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\je-3.3.87.license
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\jline-0.9.91.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\jpos.jar
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jpos\lib
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jpos
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\atlassian-profiling-1.1.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\atlassian-profiling-license.txt
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\bsf.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\commons-vfs-1.0-dev.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\JPublish-4.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\JPublish-4.license.txt
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\PostEden-1.5.3.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\xercesImpl.jar
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\xml-apis.jar
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jpublish4\lib
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\license\license.txt
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jpublish4\license
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\jpublish4
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\serversimulator\cfg\serversimulator.bsh
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\serversimulator\cfg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\serversimulator\deploy\05_serversimulator.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\serversimulator\deploy
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\serversimulator
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\splash
\build.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\splash
\deploy\10_splash.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\splash
\deploy\lib\q2mod_example.jar
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\splash\deploy\lib
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\splash\deploy
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\splash
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\status
\cfg\_hibernate.cfg.mappings
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status\cfg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\status
\deploy\02_status_heartbeat.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status\deploy
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\ChannelMonitor.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\Heartbeat.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\Monitor.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\MonitorTask.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\Ping.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\Status.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\Status.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\StatusBase.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\StatusManager.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\StatusTag.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\StatusTag.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\TwoWayMonitorTask.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status\src\org\jpos\ee\status
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status\src\org\jpos\ee
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status\src\org\jpos
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status\src\org
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status\src
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\cfg\menus\status.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\cfg\menus
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\cfg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\src\org\jpos\ee\action\sys\Status.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\src\org\jpos\ee\action\sys\StatusNode.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\src\org\jpos\ee\action\sys\StatusShow.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\src\org\jpos\ee\action\sys\StatusTree.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\src\org\jpos\ee\action\sys
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\src\org\jpos\ee\action
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\src\org\jpos\ee
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\src\org\jpos
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\src\org
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\src
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\content\sys\status.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\content\sys\statusNode.x
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\content\sys\statusshow.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\content\sys\statustree.head
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\content\sys\statustree.html
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\webapps\jposee\content\sys
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\webapps\jposee\content
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\pages\sys\status.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\pages\sys\statusNode.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\pages\sys\statusshow.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\pages\sys\statustree.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\webapps\jposee\pages\sys
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\webapps\jposee\pages
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\static\js\status-tree.js
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\webapps\jposee\static\js
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\webapps\jposee\static
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\webapps\jposee
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui\webapps
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\status_ui
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\system
\bin\q2
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\system
\bin\start
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\system
\bin\stop
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\system\bin
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\system
\deploy\00_logger.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\modules\system
\deploy\99_sysmon.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\system\deploy
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules\system
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\modules
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\ActionSupport.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\CheckAccess.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\Close.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\ContextConstants.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\Error.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\Login.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\Logout.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\Menu.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\Open.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\sys\Status.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\sys\StatusNode.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\sys\StatusShow.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\sys\StatusTree.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\sys\SysConfig.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\sys\SysLog.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\sys\SysLogShow.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\ee\action\sys
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\user\Add.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\user\Delete.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\user\List.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\user\Show.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\user\Update.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\action\user\UpdateProfile.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\ee\action\user
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\ee\action
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\BLException.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\Cloneable.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\Constants.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\Constants.properties
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\DB.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\EEUtil.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\info\StartStop.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\ee\info
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\K.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\LoggeableSysLogEvent.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\menu\MenuMap.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\menu\MenuNode.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\ee\menu
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\Permission.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\ResultCode.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\ResultCode.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\ResultCodeFinder.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\ResultCodeInfo.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\ResultCodeInfoFinder.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\ResultCodeManager.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\RevisionEntry.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\RevisionEntry.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\RevisionManager.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\status\ChannelMonitor.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\status\Heartbeat.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\status\Monitor.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\status\MonitorTask.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\status\Ping.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\status\Status.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\status\Status.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\status\StatusBase.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\status\StatusManager.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\status\StatusTag.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\status\StatusTag.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\status\TwoWayMonitorTask.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\ee\status
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\StatusRevisionEntry.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\SysConfig.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\SysConfig.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\SysConfigManager.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\SysLog.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\SysLogEvent.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\SysLogEvent.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\SysLogEventBase.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\SystemDate.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\User.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\User.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\UserManager.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\UserRevisionEntry.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\Visitor.hbm.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\Visitor.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\VisitorBase.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\VisitorManager.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\ee
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\q2\jetty\Jetty6.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\q2\jetty\Jetty6MBean.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\q2\jetty
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\q2
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\simulator\TestCase.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\simulator\TestRunner.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\simulator
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\util\BeanDiff.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\util\DateUtil.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\util\DiffEntry.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\util\V.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\util\Validator.java
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\util\Validator.properties
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\util
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\src
\org\jpos
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\src
\org
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\src
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\test\org\jpos
\util\ValidatorTestCase.java
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\test
\org\jpos\util
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\test
\org\jpos
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build\test
\org
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\test
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\velocity.log
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\404.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\500.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\error.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\extract\index.head
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\extract\index.html
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\content\extract
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\inc\macros.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\inc\pagination.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\inc\topbar.html
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\content\inc
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\index.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\login.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\logout.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\navigation\menu-head.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\navigation\menu-macro.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\navigation\menu.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\navigation\tabs.html
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\content\navigation
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\stop.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\cardtypeadd.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\cardtypeedit.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\cardtypeshow.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\hnav.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\index.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\routing.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\searchbar.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\status.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\statusNode.x
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\statusshow.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\statustree.head
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\statustree.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\sysconfig.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\syslog.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\sys\syslogshow.html
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\content\sys
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\user\add.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\user\delete.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\user\edit.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\user\hnav.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\user\list.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\user\profile.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\content\user\show.html
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\content\user
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\content
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\index.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\404.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\500.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\ch\index.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\ch\list.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\ch\show.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\pages\ch
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\default.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\error.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\extract\index.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\pages\extract
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\index.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\login.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\logout.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\stop.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\store\add.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\store\delete.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\store\edit.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\store\index.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\store\list.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\store\show.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\store\termadd.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\store\termdelete.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\store\termedit.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\store\termshow.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\pages\store
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\sys\cardtypeadd.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\sys\cardtypeedit.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\sys\cardtypeshow.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\sys\index.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\sys\routing.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\sys\status.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\sys\statusNode.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\sys\statusshow.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\sys\statustree.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\sys\sysconfig.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\sys\syslog.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\sys\syslogshow.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\pages\sys
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\txn\index.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\txn\list.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\txn\show.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\pages\txn
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\user\add.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\user\delete.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\user\edit.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\user\list.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\user\profile.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\pages\user\show.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\pages\user
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\pages
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\css\context-menu.css
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\css\cssmenu.css
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\css\folder-tree-static.css
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\static\css
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\add_item.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\alert.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\asc.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\comment.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\critical.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\desc.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\dhtmlgoodies_folder.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\dhtmlgoodies_minus.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\dhtmlgoodies_plus.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\dhtmlgoodies_sheet.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\go.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\gradient.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\green.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\jpos_bg.jpg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\jpos_l.jpg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\jpos_s.jpg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\jpos_t.jpg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\menu_bg.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\no_photo.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\off.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\oops.jpg
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\police_stop.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\red.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\remove_item.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\search_button.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\tbg.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\tl.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\tr.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\tree_green.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\tree_red.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\tree_yellow.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\update_item.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\xml.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\images\yellow.gif
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\static\images
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\ajax.js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\calendar.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\calendar.js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\context-menu.js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\cookies.js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\folder-tree-static.js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\img\cal.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\img\logo.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\img\next.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\img\next_year.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\img\pixel.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\img\prev.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\img\prev_year.gif
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\img\tc.gif
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\static\js\img
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\md5.js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\prototype.js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\js\status-tree.js
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\static\js
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\static\style.css
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\static
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\templates\basic.html
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\templates\basic.x
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\templates
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\WEB-INF\classes\edenlib-config.properties
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\WEB-INF\classes\ehcache.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\WEB-INF\classes\VM_global_library.vm
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\WEB-INF\classes\whirlycache.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\WEB-INF\classes
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\WEB-INF\jpublish.xml
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\WEB-INF\velocity.properties
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\jposee
\WEB-INF\web.xml
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\WEB-INF
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\jposee
[delete] Deleting C:\Users\bruno\Desktop\jposee\build\webapps\root
\index.html
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps\root
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
\webapps
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\build
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\dist
[delete] Deleting directory C:\Users\bruno\Desktop\jposee\dist
Build sequence for target(s) `run' is [prepare, modules, support, copy-
bin, manifest, main, jar, run]
Complete build sequence is [prepare, modules, support, copy-bin,
manifest, main, jar, run, unjar, singlejar, modules-dist, compile,
javadoc, stress, srcjar, setup, tgz, clean, test, info, zip, , doc]
prepare:
[echo] Build jPOS-EE-1.6.7.2010.02.04.02.14.58
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\bin because it
already exists.
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\src
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\lib
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\bin
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\doc
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\cfg
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\modules
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\deploy
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\deploy
\lib
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\webapps
\root
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\classes
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\dist
[mkdir] Created dir: C:\Users\bruno\Desktop\jposee\build\log
modules:
[filter] Reading filters from C:\Users\bruno\Desktop\jposee
\devel.properties
Reading filters from C:\Users\bruno\Desktop\jposee\devel.properties
[copy] clientsimulator\cfg\echo_r added as clientsimulator\cfg
\echo_r doesn't exist.
[copy] clientsimulator\cfg\echo_s added as clientsimulator\cfg
\echo_s doesn't exist.
[copy] clientsimulator\deploy\10_clientsimulator_channel.xml
added as clientsimulator\deploy\10_clientsimulator_channel.xml doesn't
exist.
[copy] clientsimulator\deploy\20_clientsimulator_mux.xml added as
clientsimulator\deploy\20_clientsimulator_mux.xml doesn't exist.
[copy] clientsimulator\deploy\25_clientsimulator_ui.xml added as
clientsimulator\deploy\25_clientsimulator_ui.xml doesn't exist.
[copy] clientsimulator\deploy\30_clientsimulator.xml added as
clientsimulator\deploy\30_clientsimulator.xml doesn't exist.
[copy] clientsimulator\src\org\jpos\simulator\TestCase.java added
as clientsimulator\src\org\jpos\simulator\TestCase.java doesn't exist.
[copy] clientsimulator\src\org\jpos\simulator\TestRunner.java
added as clientsimulator\src\org\jpos\simulator\TestRunner.java
doesn't exist.
[copy] commons\cfg\log4j.properties added as commons\cfg
\log4j.properties doesn't exist.
[copy] commons\lib\commons-beanutils-1.8.0-BETA.jar added as
commons\lib\commons-beanutils-1.8.0-BETA.jar doesn't exist.
[copy] commons\lib\commons-collections-3.1.jar added as commons
\lib\commons-collections-3.1.jar doesn't exist.
[copy] commons\lib\commons-lang-2.4.jar added as commons\lib
\commons-lang-2.4.jar doesn't exist.
[copy] commons\lib\commons-logging-1.1.1.jar added as commons\lib
\commons-logging-1.1.1.jar doesn't exist.
[copy] commons\lib\ehcache-1.6.0.jar added as commons\lib
\ehcache-1.6.0.jar doesn't exist.
[copy] commons\lib\log4j-1.2.15.jar added as commons\lib
\log4j-1.2.15.jar doesn't exist.
[copy] commons\lib\slf4j-api-1.5.8.jar added as commons\lib\slf4j-
api-1.5.8.jar doesn't exist.
[copy] commons\lib\slf4j-log4j12-1.5.8.jar added as commons\lib
\slf4j-log4j12-1.5.8.jar doesn't exist.
[copy] commons\lib\velocity-1.6.2.jar added as commons\lib
\velocity-1.6.2.jar doesn't exist.
[copy] eecore3\build.xml added as eecore3\build.xml doesn't
exist.
[copy] eecore3\cfg\_hibernate.cfg.mappings added as eecore3\cfg
\_hibernate.cfg.mappings doesn't exist.
[copy] eecore3\deploy\01_start.xml added as eecore3\deploy
\01_start.xml doesn't exist.
[copy] eecore3\src\org\jpos\ee\BLException.java added as
eecore3\src\org\jpos\ee\BLException.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\Cloneable.java added as eecore3\src
\org\jpos\ee\Cloneable.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\Constants.k added as eecore3\src
\org\jpos\ee\Constants.k doesn't exist.
[copy] eecore3\src\org\jpos\ee\Constants.p added as eecore3\src
\org\jpos\ee\Constants.p doesn't exist.
[copy] eecore3\src\org\jpos\ee\DB.java added as eecore3\src\org
\jpos\ee\DB.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\EEUtil.java added as eecore3\src
\org\jpos\ee\EEUtil.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\K.java added as eecore3\src\org
\jpos\ee\K.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\LoggeableSysLogEvent.java added as
eecore3\src\org\jpos\ee\LoggeableSysLogEvent.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\Permission.java added as
eecore3\src\org\jpos\ee\Permission.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\ResultCode.hbm.xml added as
eecore3\src\org\jpos\ee\ResultCode.hbm.xml doesn't exist.
[copy] eecore3\src\org\jpos\ee\ResultCode.java added as
eecore3\src\org\jpos\ee\ResultCode.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\ResultCodeFinder.java added as
eecore3\src\org\jpos\ee\ResultCodeFinder.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\ResultCodeInfo.java added as
eecore3\src\org\jpos\ee\ResultCodeInfo.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\ResultCodeInfoFinder.java added as
eecore3\src\org\jpos\ee\ResultCodeInfoFinder.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\ResultCodeManager.java added as
eecore3\src\org\jpos\ee\ResultCodeManager.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\RevisionEntry.hbm.xml added as
eecore3\src\org\jpos\ee\RevisionEntry.hbm.xml doesn't exist.
[copy] eecore3\src\org\jpos\ee\RevisionEntry.java added as
eecore3\src\org\jpos\ee\RevisionEntry.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\RevisionManager.java added as
eecore3\src\org\jpos\ee\RevisionManager.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\StatusRevisionEntry.java added as
eecore3\src\org\jpos\ee\StatusRevisionEntry.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\SysConfig.hbm.xml added as
eecore3\src\org\jpos\ee\SysConfig.hbm.xml doesn't exist.
[copy] eecore3\src\org\jpos\ee\SysConfig.java added as eecore3\src
\org\jpos\ee\SysConfig.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\SysConfigManager.java added as
eecore3\src\org\jpos\ee\SysConfigManager.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\SysLog.java added as eecore3\src
\org\jpos\ee\SysLog.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\SysLogEvent.hbm.xml added as
eecore3\src\org\jpos\ee\SysLogEvent.hbm.xml doesn't exist.
[copy] eecore3\src\org\jpos\ee\SysLogEvent.java added as
eecore3\src\org\jpos\ee\SysLogEvent.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\SysLogEventBase.java added as
eecore3\src\org\jpos\ee\SysLogEventBase.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\SystemDate.java added as
eecore3\src\org\jpos\ee\SystemDate.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\User.hbm.xml added as eecore3\src
\org\jpos\ee\User.hbm.xml doesn't exist.
[copy] eecore3\src\org\jpos\ee\User.java added as eecore3\src\org
\jpos\ee\User.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\UserManager.java added as
eecore3\src\org\jpos\ee\UserManager.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\UserRevisionEntry.java added as
eecore3\src\org\jpos\ee\UserRevisionEntry.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\Visitor.hbm.xml added as
eecore3\src\org\jpos\ee\Visitor.hbm.xml doesn't exist.
[copy] eecore3\src\org\jpos\ee\Visitor.java added as eecore3\src
\org\jpos\ee\Visitor.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\VisitorBase.java added as
eecore3\src\org\jpos\ee\VisitorBase.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\VisitorManager.java added as
eecore3\src\org\jpos\ee\VisitorManager.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\info\StartStop.java added as
eecore3\src\org\jpos\ee\info\StartStop.java doesn't exist.
[copy] eecore3\src\org\jpos\util\BeanDiff.java added as
eecore3\src\org\jpos\util\BeanDiff.java doesn't exist.
[copy] eecore3\src\org\jpos\util\DateUtil.java added as
eecore3\src\org\jpos\util\DateUtil.java doesn't exist.
[copy] eecore3\src\org\jpos\util\DiffEntry.java added as
eecore3\src\org\jpos\util\DiffEntry.java doesn't exist.
[copy] eeweb3\cfg\contexts\jposee.xml added as eeweb3\cfg\contexts
\jposee.xml doesn't exist.
[copy] eeweb3\cfg\menus\README added as eeweb3\cfg\menus\README
doesn't exist.
[copy] eeweb3\cfg\menus\main-menu.xml added as eeweb3\cfg\menus
\main-menu.xml doesn't exist.
[copy] eeweb3\cfg\menus\nologged-menu.xml added as eeweb3\cfg
\menus\nologged-menu.xml doesn't exist.
[copy] eeweb3\src\org\jpos\ee\Visitor.hbm.xml added as eeweb3\src
\org\jpos\ee\Visitor.hbm.xml doesn't exist.
[copy] eeweb3\src\org\jpos\ee\Visitor.java added as eeweb3\src\org
\jpos\ee\Visitor.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\VisitorBase.java added as eeweb3\src
\org\jpos\ee\VisitorBase.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\VisitorManager.java added as
eeweb3\src\org\jpos\ee\VisitorManager.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\ActionSupport.java added as
eeweb3\src\org\jpos\ee\action\ActionSupport.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\CheckAccess.java added as
eeweb3\src\org\jpos\ee\action\CheckAccess.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\Close.java added as
eeweb3\src\org\jpos\ee\action\Close.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\ContextConstants.java added
as eeweb3\src\org\jpos\ee\action\ContextConstants.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\Error.java added as
eeweb3\src\org\jpos\ee\action\Error.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\Login.java added as
eeweb3\src\org\jpos\ee\action\Login.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\Logout.java added as
eeweb3\src\org\jpos\ee\action\Logout.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\Menu.java added as eeweb3\src
\org\jpos\ee\action\Menu.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\Open.java added as eeweb3\src
\org\jpos\ee\action\Open.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\UserPerms.k added as
eeweb3\src\org\jpos\ee\action\UserPerms.k doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\sys\SysConfig.java added as
eeweb3\src\org\jpos\ee\action\sys\SysConfig.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\sys\SysLog.java added as
eeweb3\src\org\jpos\ee\action\sys\SysLog.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\sys\SysLogShow.java added as
eeweb3\src\org\jpos\ee\action\sys\SysLogShow.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\user\Add.java added as
eeweb3\src\org\jpos\ee\action\user\Add.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\user\Delete.java added as
eeweb3\src\org\jpos\ee\action\user\Delete.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\user\List.java added as
eeweb3\src\org\jpos\ee\action\user\List.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\user\Show.java added as
eeweb3\src\org\jpos\ee\action\user\Show.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\user\Update.java added as
eeweb3\src\org\jpos\ee\action\user\Update.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\user\UpdateProfile.java
added as eeweb3\src\org\jpos\ee\action\user\UpdateProfile.java doesn't
exist.
[copy] eeweb3\src\org\jpos\ee\menu\MenuMap.java added as
eeweb3\src\org\jpos\ee\menu\MenuMap.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\menu\MenuNode.java added as
eeweb3\src\org\jpos\ee\menu\MenuNode.java doesn't exist.
[copy] eeweb3\src\org\jpos\util\V.java added as eeweb3\src\org
\jpos\util\V.java doesn't exist.
[copy] eeweb3\src\org\jpos\util\Validator.java added as eeweb3\src
\org\jpos\util\Validator.java doesn't exist.
[copy] eeweb3\src\org\jpos\util\Validator.properties added as
eeweb3\src\org\jpos\util\Validator.properties doesn't exist.
[copy] eeweb3\test\org\jpos\util\ValidatorTestCase.java added as
eeweb3\test\org\jpos\util\ValidatorTestCase.java doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF\classes\VM_global_library.vm
added as eeweb3\webapps\jposee\WEB-INF\classes\VM_global_library.vm
doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF\classes\edenlib-
config.properties added as eeweb3\webapps\jposee\WEB-INF\classes
\edenlib-config.properties doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF\classes\ehcache.xml added as
eeweb3\webapps\jposee\WEB-INF\classes\ehcache.xml doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF\classes\whirlycache.xml
added as eeweb3\webapps\jposee\WEB-INF\classes\whirlycache.xml doesn't
exist.
[copy] eeweb3\webapps\jposee\WEB-INF\jpublish.xml added as
eeweb3\webapps\jposee\WEB-INF\jpublish.xml doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF\velocity.properties added as
eeweb3\webapps\jposee\WEB-INF\velocity.properties doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF\web.xml added as
eeweb3\webapps\jposee\WEB-INF\web.xml doesn't exist.
[copy] eeweb3\webapps\jposee\content\404.html added as
eeweb3\webapps\jposee\content\404.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\500.html added as
eeweb3\webapps\jposee\content\500.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\error.html added as
eeweb3\webapps\jposee\content\error.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\extract\index.head added as
eeweb3\webapps\jposee\content\extract\index.head doesn't exist.
[copy] eeweb3\webapps\jposee\content\extract\index.html added as
eeweb3\webapps\jposee\content\extract\index.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\inc\macros.html added as
eeweb3\webapps\jposee\content\inc\macros.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\inc\pagination.html added as
eeweb3\webapps\jposee\content\inc\pagination.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\inc\topbar.html added as
eeweb3\webapps\jposee\content\inc\topbar.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\index.html added as
eeweb3\webapps\jposee\content\index.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\login.html added as
eeweb3\webapps\jposee\content\login.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\logout.html added as
eeweb3\webapps\jposee\content\logout.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\navigation\menu-head.html
added as eeweb3\webapps\jposee\content\navigation\menu-head.html
doesn't exist.
[copy] eeweb3\webapps\jposee\content\navigation\menu-macro.html
added as eeweb3\webapps\jposee\content\navigation\menu-macro.html
doesn't exist.
[copy] eeweb3\webapps\jposee\content\navigation\menu.html added
as eeweb3\webapps\jposee\content\navigation\menu.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\navigation\tabs.html added
as eeweb3\webapps\jposee\content\navigation\tabs.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\stop.html added as
eeweb3\webapps\jposee\content\stop.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\cardtypeadd.html added
as eeweb3\webapps\jposee\content\sys\cardtypeadd.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\cardtypeedit.html added
as eeweb3\webapps\jposee\content\sys\cardtypeedit.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\cardtypeshow.html added
as eeweb3\webapps\jposee\content\sys\cardtypeshow.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\hnav.html added as
eeweb3\webapps\jposee\content\sys\hnav.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\index.html added as
eeweb3\webapps\jposee\content\sys\index.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\routing.html added as
eeweb3\webapps\jposee\content\sys\routing.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\searchbar.html added as
eeweb3\webapps\jposee\content\sys\searchbar.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\sysconfig.html added as
eeweb3\webapps\jposee\content\sys\sysconfig.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\syslog.html added as
eeweb3\webapps\jposee\content\sys\syslog.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\syslogshow.html added as
eeweb3\webapps\jposee\content\sys\syslogshow.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\user\add.html added as
eeweb3\webapps\jposee\content\user\add.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\user\delete.html added as
eeweb3\webapps\jposee\content\user\delete.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\user\edit.html added as
eeweb3\webapps\jposee\content\user\edit.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\user\hnav.html added as
eeweb3\webapps\jposee\content\user\hnav.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\user\list.html added as
eeweb3\webapps\jposee\content\user\list.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\user\profile.html added as
eeweb3\webapps\jposee\content\user\profile.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\user\show.html added as
eeweb3\webapps\jposee\content\user\show.html doesn't exist.
[copy] eeweb3\webapps\jposee\index.html added as eeweb3\webapps
\jposee\index.html doesn't exist.
[copy] eeweb3\webapps\jposee\pages\404.xml added as eeweb3\webapps
\jposee\pages\404.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\500.xml added as eeweb3\webapps
\jposee\pages\500.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\ch\index.xml added as
eeweb3\webapps\jposee\pages\ch\index.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\ch\list.xml added as
eeweb3\webapps\jposee\pages\ch\list.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\ch\show.xml added as
eeweb3\webapps\jposee\pages\ch\show.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\default.xml added as
eeweb3\webapps\jposee\pages\default.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\error.xml added as
eeweb3\webapps\jposee\pages\error.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\extract\index.xml added as
eeweb3\webapps\jposee\pages\extract\index.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\index.xml added as
eeweb3\webapps\jposee\pages\index.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\login.xml added as
eeweb3\webapps\jposee\pages\login.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\logout.xml added as
eeweb3\webapps\jposee\pages\logout.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\stop.xml added as
eeweb3\webapps\jposee\pages\stop.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\add.xml added as
eeweb3\webapps\jposee\pages\store\add.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\delete.xml added as
eeweb3\webapps\jposee\pages\store\delete.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\edit.xml added as
eeweb3\webapps\jposee\pages\store\edit.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\index.xml added as
eeweb3\webapps\jposee\pages\store\index.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\list.xml added as
eeweb3\webapps\jposee\pages\store\list.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\show.xml added as
eeweb3\webapps\jposee\pages\store\show.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\termadd.xml added as
eeweb3\webapps\jposee\pages\store\termadd.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\termdelete.xml added as
eeweb3\webapps\jposee\pages\store\termdelete.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\termedit.xml added as
eeweb3\webapps\jposee\pages\store\termedit.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\termshow.xml added as
eeweb3\webapps\jposee\pages\store\termshow.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\cardtypeadd.xml added as
eeweb3\webapps\jposee\pages\sys\cardtypeadd.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\cardtypeedit.xml added as
eeweb3\webapps\jposee\pages\sys\cardtypeedit.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\cardtypeshow.xml added as
eeweb3\webapps\jposee\pages\sys\cardtypeshow.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\index.xml added as
eeweb3\webapps\jposee\pages\sys\index.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\routing.xml added as
eeweb3\webapps\jposee\pages\sys\routing.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\sysconfig.xml added as
eeweb3\webapps\jposee\pages\sys\sysconfig.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\syslog.xml added as
eeweb3\webapps\jposee\pages\sys\syslog.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\syslogshow.xml added as
eeweb3\webapps\jposee\pages\sys\syslogshow.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\txn\index.xml added as
eeweb3\webapps\jposee\pages\txn\index.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\txn\list.xml added as
eeweb3\webapps\jposee\pages\txn\list.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\txn\show.xml added as
eeweb3\webapps\jposee\pages\txn\show.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\user\add.xml added as
eeweb3\webapps\jposee\pages\user\add.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\user\delete.xml added as
eeweb3\webapps\jposee\pages\user\delete.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\user\edit.xml added as
eeweb3\webapps\jposee\pages\user\edit.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\user\list.xml added as
eeweb3\webapps\jposee\pages\user\list.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\user\profile.xml added as
eeweb3\webapps\jposee\pages\user\profile.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\user\show.xml added as
eeweb3\webapps\jposee\pages\user\show.xml doesn't exist.
[copy] eeweb3\webapps\jposee\static\css\context-menu.css added as
eeweb3\webapps\jposee\static\css\context-menu.css doesn't exist.
[copy] eeweb3\webapps\jposee\static\css\cssmenu.css added as
eeweb3\webapps\jposee\static\css\cssmenu.css doesn't exist.
[copy] eeweb3\webapps\jposee\static\css\folder-tree-static.css
added as eeweb3\webapps\jposee\static\css\folder-tree-static.css
doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\add_item.gif added as
eeweb3\webapps\jposee\static\images\add_item.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\alert.gif added as
eeweb3\webapps\jposee\static\images\alert.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\asc.gif added as
eeweb3\webapps\jposee\static\images\asc.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\comment.gif added as
eeweb3\webapps\jposee\static\images\comment.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\critical.gif added as
eeweb3\webapps\jposee\static\images\critical.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\desc.gif added as
eeweb3\webapps\jposee\static\images\desc.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images
\dhtmlgoodies_folder.gif added as eeweb3\webapps\jposee\static\images
\dhtmlgoodies_folder.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\dhtmlgoodies_minus.gif
added as eeweb3\webapps\jposee\static\images\dhtmlgoodies_minus.gif
doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\dhtmlgoodies_plus.gif
added as eeweb3\webapps\jposee\static\images\dhtmlgoodies_plus.gif
doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\dhtmlgoodies_sheet.gif
added as eeweb3\webapps\jposee\static\images\dhtmlgoodies_sheet.gif
doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\go.gif added as
eeweb3\webapps\jposee\static\images\go.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\gradient.gif added as
eeweb3\webapps\jposee\static\images\gradient.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\green.gif added as
eeweb3\webapps\jposee\static\images\green.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\jpos_bg.jpg added as
eeweb3\webapps\jposee\static\images\jpos_bg.jpg doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\jpos_l.jpg added as
eeweb3\webapps\jposee\static\images\jpos_l.jpg doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\jpos_s.jpg added as
eeweb3\webapps\jposee\static\images\jpos_s.jpg doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\jpos_t.jpg added as
eeweb3\webapps\jposee\static\images\jpos_t.jpg doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\menu_bg.gif added as
eeweb3\webapps\jposee\static\images\menu_bg.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\no_photo.gif added as
eeweb3\webapps\jposee\static\images\no_photo.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\off.gif added as
eeweb3\webapps\jposee\static\images\off.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\oops.jpg added as
eeweb3\webapps\jposee\static\images\oops.jpg doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\police_stop.gif added
as eeweb3\webapps\jposee\static\images\police_stop.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\red.gif added as
eeweb3\webapps\jposee\static\images\red.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\remove_item.gif added
as eeweb3\webapps\jposee\static\images\remove_item.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\search_button.gif
added as eeweb3\webapps\jposee\static\images\search_button.gif doesn't
exist.
[copy] eeweb3\webapps\jposee\static\images\tbg.gif added as
eeweb3\webapps\jposee\static\images\tbg.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\tl.gif added as
eeweb3\webapps\jposee\static\images\tl.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\tr.gif added as
eeweb3\webapps\jposee\static\images\tr.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\tree_green.gif added
as eeweb3\webapps\jposee\static\images\tree_green.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\tree_red.gif added as
eeweb3\webapps\jposee\static\images\tree_red.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\tree_yellow.gif added
as eeweb3\webapps\jposee\static\images\tree_yellow.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\update_item.gif added
as eeweb3\webapps\jposee\static\images\update_item.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\xml.gif added as
eeweb3\webapps\jposee\static\images\xml.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\yellow.gif added as
eeweb3\webapps\jposee\static\images\yellow.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\ajax.js added as
eeweb3\webapps\jposee\static\js\ajax.js doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\calendar.html added as
eeweb3\webapps\jposee\static\js\calendar.html doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\calendar.js added as
eeweb3\webapps\jposee\static\js\calendar.js doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\context-menu.js added as
eeweb3\webapps\jposee\static\js\context-menu.js doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\cookies.js added as
eeweb3\webapps\jposee\static\js\cookies.js doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\folder-tree-static.js
added as eeweb3\webapps\jposee\static\js\folder-tree-static.js doesn't
exist.
[copy] eeweb3\webapps\jposee\static\js\img\cal.gif added as
eeweb3\webapps\jposee\static\js\img\cal.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\logo.gif added as
eeweb3\webapps\jposee\static\js\img\logo.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\next.gif added as
eeweb3\webapps\jposee\static\js\img\next.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\next_year.gif added as
eeweb3\webapps\jposee\static\js\img\next_year.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\pixel.gif added as
eeweb3\webapps\jposee\static\js\img\pixel.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\prev.gif added as
eeweb3\webapps\jposee\static\js\img\prev.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\prev_year.gif added as
eeweb3\webapps\jposee\static\js\img\prev_year.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\tc.gif added as
eeweb3\webapps\jposee\static\js\img\tc.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\md5.js added as
eeweb3\webapps\jposee\static\js\md5.js doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\prototype.js added as
eeweb3\webapps\jposee\static\js\prototype.js doesn't exist.
[copy] eeweb3\webapps\jposee\static\style.css added as
eeweb3\webapps\jposee\static\style.css doesn't exist.
[copy] eeweb3\webapps\jposee\templates\basic.html added as
eeweb3\webapps\jposee\templates\basic.html doesn't exist.
[copy] eeweb3\webapps\jposee\templates\basic.x added as
eeweb3\webapps\jposee\templates\basic.x doesn't exist.
[copy] eeweb3\webapps\root\index.html added as eeweb3\webapps\root
\index.html doesn't exist.
[copy] hibernate3\build.xml added as hibernate3\build.xml doesn't
exist.
[copy] hibernate3\cfg\_hibernate.cfg.head added as hibernate3\cfg
\_hibernate.cfg.head doesn't exist.
[copy] hibernate3\cfg\_hibernate.cfg.tail added as hibernate3\cfg
\_hibernate.cfg.tail doesn't exist.
[copy] hibernate3\cfg\log4j.properties added as hibernate3\cfg
\log4j.properties doesn't exist.
[copy] hibernate3\lib\antlr-2.7.6.jar added as hibernate3\lib
\antlr-2.7.6.jar doesn't exist.
[copy] hibernate3\lib\c3p0-0.9.1.jar added as hibernate3\lib
\c3p0-0.9.1.jar doesn't exist.
[copy] hibernate3\lib\dom4j-1.6.1.jar added as hibernate3\lib
\dom4j-1.6.1.jar doesn't exist.
[copy] hibernate3\lib\hibernate-3.3.2.GA.jar added as
hibernate3\lib\hibernate-3.3.2.GA.jar doesn't exist.
[copy] hibernate3\lib\javassist-3.9.0.GA.jar added as
hibernate3\lib\javassist-3.9.0.GA.jar doesn't exist.
[copy] hibernate3\lib\jta-1.1.jar added as hibernate3\lib
\jta-1.1.jar doesn't exist.
[copy] hibernate3_mysql\cfg\_hibernate.cfg.properties added as
hibernate3_mysql\cfg\_hibernate.cfg.properties doesn't exist.
[copy] hibernate3_mysql\lib\mysql-connector-java-5.1.7-bin.jar
added as hibernate3_mysql\lib\mysql-connector-java-5.1.7-bin.jar
doesn't exist.
[copy] ignore.list added as ignore.list doesn't exist.
[copy] include.list added as include.list doesn't exist.
[copy] jetty6\cfg\contexts\jpos.xml added as jetty6\cfg\contexts
\jpos.xml doesn't exist.
[copy] jetty6\cfg\contexts\jposee.xml added as jetty6\cfg\contexts
\jposee.xml doesn't exist.
[copy] jetty6\cfg\contexts\root.xml added as jetty6\cfg\contexts
\root.xml doesn't exist.
[copy] jetty6\cfg\jetty.xml added as jetty6\cfg\jetty.xml doesn't
exist.
[copy] jetty6\cfg\jetty.xml - Copy.sample added as jetty6\cfg
\jetty.xml - Copy.sample doesn't exist.
[copy] jetty6\cfg\keystore.ks added as jetty6\cfg\keystore.ks
doesn't exist.
[copy] jetty6\cfg\webdefault.xml added as jetty6\cfg
\webdefault.xml doesn't exist.
[copy] jetty6\deploy\90_jetty.xml added as jetty6\deploy
\90_jetty.xml doesn't exist.
[copy] jetty6\lib\jasper-compiler-5.5.15.jar added as jetty6\lib
\jasper-compiler-5.5.15.jar doesn't exist.
[copy] jetty6\lib\jasper-runtime-5.5.15.jar added as jetty6\lib
\jasper-runtime-5.5.15.jar doesn't exist.
[copy] jetty6\lib\jetty-6.1.18.jar added as jetty6\lib
\jetty-6.1.18.jar doesn't exist.
[copy] jetty6\lib\jetty-util-6.1.18.jar added as jetty6\lib\jetty-
util-6.1.18.jar doesn't exist.
[copy] jetty6\lib\jsp-api-5.0.16.jar added as jetty6\lib\jsp-
api-5.0.16.jar doesn't exist.
[copy] jetty6\lib\servlet-api-2.5-20081211.jar added as jetty6\lib
\servlet-api-2.5-20081211.jar doesn't exist.
[copy] jetty6\src\org\jpos\q2\jetty\Jetty6.java added as
jetty6\src\org\jpos\q2\jetty\Jetty6.java doesn't exist.
[copy] jetty6\src\org\jpos\q2\jetty\Jetty6MBean.java added as
jetty6\src\org\jpos\q2\jetty\Jetty6MBean.java doesn't exist.
[copy] jpos\cfg\genericpackager.dtd added as jpos\cfg
\genericpackager.dtd doesn't exist.
[copy] jpos\lib\bsh-2.0b4.jar added as jpos\lib\bsh-2.0b4.jar
doesn't exist.
[copy] jpos\lib\commons-cli.jar added as jpos\lib\commons-cli.jar
doesn't exist.
[copy] jpos\lib\cweb-extser-0.1-b2-dev.jar added as jpos\lib\cweb-
extser-0.1-b2-dev.jar doesn't exist.
[copy] jpos\lib\jdbm-1.0.jar added as jpos\lib\jdbm-1.0.jar
doesn't exist.
[copy] jpos\lib\jdom-1.0.jar added as jpos\lib\jdom-1.0.jar
doesn't exist.
[copy] jpos\lib\je-3.3.87.jar added as jpos\lib\je-3.3.87.jar
doesn't exist.
[copy] jpos\lib\je-3.3.87.license added as jpos\lib
\je-3.3.87.license doesn't exist.
[copy] jpos\lib\jline-0.9.91.jar added as jpos\lib
\jline-0.9.91.jar doesn't exist.
[copy] jpos\lib\jpos.jar added as jpos\lib\jpos.jar doesn't
exist.
[copy] jpublish4\lib\JPublish-4.jar added as jpublish4\lib
\JPublish-4.jar doesn't exist.
[copy] jpublish4\lib\JPublish-4.license.txt added as jpublish4\lib
\JPublish-4.license.txt doesn't exist.
[copy] jpublish4\lib\PostEden-1.5.3.jar added as jpublish4\lib
\PostEden-1.5.3.jar doesn't exist.
[copy] jpublish4\lib\atlassian-profiling-1.1.jar added as
jpublish4\lib\atlassian-profiling-1.1.jar doesn't exist.
[copy] jpublish4\lib\atlassian-profiling-license.txt added as
jpublish4\lib\atlassian-profiling-license.txt doesn't exist.
[copy] jpublish4\lib\bsf.jar added as jpublish4\lib\bsf.jar
doesn't exist.
[copy] jpublish4\lib\commons-vfs-1.0-dev.jar added as
jpublish4\lib\commons-vfs-1.0-dev.jar doesn't exist.
[copy] jpublish4\lib\xercesImpl.jar added as jpublish4\lib
\xercesImpl.jar doesn't exist.
[copy] jpublish4\lib\xml-apis.jar added as jpublish4\lib\xml-
apis.jar doesn't exist.
[copy] jpublish4\license\license.txt added as jpublish4\license
\license.txt doesn't exist.
[copy] serversimulator\cfg\serversimulator.bsh added as
serversimulator\cfg\serversimulator.bsh doesn't exist.
[copy] serversimulator\deploy\05_serversimulator.xml added as
serversimulator\deploy\05_serversimulator.xml doesn't exist.
[copy] splash\build.xml added as splash\build.xml doesn't exist.
[copy] splash\deploy\10_splash.xml added as splash\deploy
\10_splash.xml doesn't exist.
[copy] splash\deploy\lib\q2mod_example.jar added as splash\deploy
\lib\q2mod_example.jar doesn't exist.
[copy] status\cfg\_hibernate.cfg.mappings added as status\cfg
\_hibernate.cfg.mappings doesn't exist.
[copy] status\deploy\02_status_heartbeat.xml added as status
\deploy\02_status_heartbeat.xml doesn't exist.
[copy] status\src\org\jpos\ee\status\ChannelMonitor.java added as
status\src\org\jpos\ee\status\ChannelMonitor.java doesn't exist.
[copy] status\src\org\jpos\ee\status\Heartbeat.java added as
status\src\org\jpos\ee\status\Heartbeat.java doesn't exist.
[copy] status\src\org\jpos\ee\status\Monitor.java added as status
\src\org\jpos\ee\status\Monitor.java doesn't exist.
[copy] status\src\org\jpos\ee\status\MonitorTask.java added as
status\src\org\jpos\ee\status\MonitorTask.java doesn't exist.
[copy] status\src\org\jpos\ee\status\Ping.java added as status\src
\org\jpos\ee\status\Ping.java doesn't exist.
[copy] status\src\org\jpos\ee\status\Status.hbm.xml added as
status\src\org\jpos\ee\status\Status.hbm.xml doesn't exist.
[copy] status\src\org\jpos\ee\status\Status.java added as status
\src\org\jpos\ee\status\Status.java doesn't exist.
[copy] status\src\org\jpos\ee\status\StatusBase.java added as
status\src\org\jpos\ee\status\StatusBase.java doesn't exist.
[copy] status\src\org\jpos\ee\status\StatusManager.java added as
status\src\org\jpos\ee\status\StatusManager.java doesn't exist.
[copy] status\src\org\jpos\ee\status\StatusTag.hbm.xml added as
status\src\org\jpos\ee\status\StatusTag.hbm.xml doesn't exist.
[copy] status\src\org\jpos\ee\status\StatusTag.java added as
status\src\org\jpos\ee\status\StatusTag.java doesn't exist.
[copy] status\src\org\jpos\ee\status\TwoWayMonitorTask.java added
as status\src\org\jpos\ee\status\TwoWayMonitorTask.java doesn't exist.
[copy] status_ui\cfg\menus\status.xml added as status_ui\cfg\menus
\status.xml doesn't exist.
[copy] status_ui\src\org\jpos\ee\action\sys\Status.java added as
status_ui\src\org\jpos\ee\action\sys\Status.java doesn't exist.
[copy] status_ui\src\org\jpos\ee\action\sys\StatusNode.java added
as status_ui\src\org\jpos\ee\action\sys\StatusNode.java doesn't exist.
[copy] status_ui\src\org\jpos\ee\action\sys\StatusShow.java added
as status_ui\src\org\jpos\ee\action\sys\StatusShow.java doesn't exist.
[copy] status_ui\src\org\jpos\ee\action\sys\StatusTree.java added
as status_ui\src\org\jpos\ee\action\sys\StatusTree.java doesn't exist.
[copy] status_ui\webapps\jposee\content\sys\status.html added as
status_ui\webapps\jposee\content\sys\status.html doesn't exist.
[copy] status_ui\webapps\jposee\content\sys\statusNode.x added as
status_ui\webapps\jposee\content\sys\statusNode.x doesn't exist.
[copy] status_ui\webapps\jposee\content\sys\statusshow.html added
as status_ui\webapps\jposee\content\sys\statusshow.html doesn't exist.
[copy] status_ui\webapps\jposee\content\sys\statustree.head added
as status_ui\webapps\jposee\content\sys\statustree.head doesn't exist.
[copy] status_ui\webapps\jposee\content\sys\statustree.html added
as status_ui\webapps\jposee\content\sys\statustree.html doesn't exist.
[copy] status_ui\webapps\jposee\pages\sys\status.xml added as
status_ui\webapps\jposee\pages\sys\status.xml doesn't exist.
[copy] status_ui\webapps\jposee\pages\sys\statusNode.xml added as
status_ui\webapps\jposee\pages\sys\statusNode.xml doesn't exist.
[copy] status_ui\webapps\jposee\pages\sys\statusshow.xml added as
status_ui\webapps\jposee\pages\sys\statusshow.xml doesn't exist.
[copy] status_ui\webapps\jposee\pages\sys\statustree.xml added as
status_ui\webapps\jposee\pages\sys\statustree.xml doesn't exist.
[copy] status_ui\webapps\jposee\static\js\status-tree.js added as
status_ui\webapps\jposee\static\js\status-tree.js doesn't exist.
[copy] system\bin\q2 added as system\bin\q2 doesn't exist.
[copy] system\bin\start added as system\bin\start doesn't exist.
[copy] system\bin\stop added as system\bin\stop doesn't exist.
[copy] system\deploy\00_logger.xml added as system\deploy
\00_logger.xml doesn't exist.
[copy] system\deploy\99_sysmon.xml added as system\deploy
\99_sysmon.xml doesn't exist.
[copy] omitted as C:\Users\bruno\Desktop\jposee\build\modules is
up to date.
[copy] clientsimulator added as clientsimulator doesn't exist.
[copy] clientsimulator\cfg added as clientsimulator\cfg doesn't
exist.
[copy] clientsimulator\deploy added as clientsimulator\deploy
doesn't exist.
[copy] clientsimulator\src added as clientsimulator\src doesn't
exist.
[copy] clientsimulator\src\org added as clientsimulator\src\org
doesn't exist.
[copy] clientsimulator\src\org\jpos added as clientsimulator\src
\org\jpos doesn't exist.
[copy] clientsimulator\src\org\jpos\simulator added as
clientsimulator\src\org\jpos\simulator doesn't exist.
[copy] commons added as commons doesn't exist.
[copy] commons\cfg added as commons\cfg doesn't exist.
[copy] commons\lib added as commons\lib doesn't exist.
[copy] eecore3 added as eecore3 doesn't exist.
[copy] eecore3\cfg added as eecore3\cfg doesn't exist.
[copy] eecore3\deploy added as eecore3\deploy doesn't exist.
[copy] eecore3\src added as eecore3\src doesn't exist.
[copy] eecore3\src\org added as eecore3\src\org doesn't exist.
[copy] eecore3\src\org\jpos added as eecore3\src\org\jpos doesn't
exist.
[copy] eecore3\src\org\jpos\ee added as eecore3\src\org\jpos\ee
doesn't exist.
[copy] eecore3\src\org\jpos\ee\info added as eecore3\src\org\jpos
\ee\info doesn't exist.
[copy] eecore3\src\org\jpos\util added as eecore3\src\org\jpos
\util doesn't exist.
[copy] eeweb3 added as eeweb3 doesn't exist.
[copy] eeweb3\cfg added as eeweb3\cfg doesn't exist.
[copy] eeweb3\cfg\contexts added as eeweb3\cfg\contexts doesn't
exist.
[copy] eeweb3\cfg\menus added as eeweb3\cfg\menus doesn't exist.
[copy] eeweb3\src added as eeweb3\src doesn't exist.
[copy] eeweb3\src\org added as eeweb3\src\org doesn't exist.
[copy] eeweb3\src\org\jpos added as eeweb3\src\org\jpos doesn't
exist.
[copy] eeweb3\src\org\jpos\ee added as eeweb3\src\org\jpos\ee
doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action added as eeweb3\src\org\jpos
\ee\action doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\sys added as eeweb3\src\org
\jpos\ee\action\sys doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\user added as eeweb3\src\org
\jpos\ee\action\user doesn't exist.
[copy] eeweb3\src\org\jpos\ee\menu added as eeweb3\src\org\jpos\ee
\menu doesn't exist.
[copy] eeweb3\src\org\jpos\util added as eeweb3\src\org\jpos\util
doesn't exist.
[copy] eeweb3\test added as eeweb3\test doesn't exist.
[copy] eeweb3\test\org added as eeweb3\test\org doesn't exist.
[copy] eeweb3\test\org\jpos added as eeweb3\test\org\jpos doesn't
exist.
[copy] eeweb3\test\org\jpos\util added as eeweb3\test\org\jpos
\util doesn't exist.
[copy] eeweb3\webapps added as eeweb3\webapps doesn't exist.
[copy] eeweb3\webapps\jposee added as eeweb3\webapps\jposee
doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF added as eeweb3\webapps
\jposee\WEB-INF doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF\classes added as
eeweb3\webapps\jposee\WEB-INF\classes doesn't exist.
[copy] eeweb3\webapps\jposee\content added as eeweb3\webapps
\jposee\content doesn't exist.
[copy] eeweb3\webapps\jposee\content\extract added as
eeweb3\webapps\jposee\content\extract doesn't exist.
[copy] eeweb3\webapps\jposee\content\inc added as eeweb3\webapps
\jposee\content\inc doesn't exist.
[copy] eeweb3\webapps\jposee\content\navigation added as
eeweb3\webapps\jposee\content\navigation doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys added as eeweb3\webapps
\jposee\content\sys doesn't exist.
[copy] eeweb3\webapps\jposee\content\user added as eeweb3\webapps
\jposee\content\user doesn't exist.
[copy] eeweb3\webapps\jposee\pages added as eeweb3\webapps\jposee
\pages doesn't exist.
[copy] eeweb3\webapps\jposee\pages\ch added as eeweb3\webapps
\jposee\pages\ch doesn't exist.
[copy] eeweb3\webapps\jposee\pages\extract added as eeweb3\webapps
\jposee\pages\extract doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store added as eeweb3\webapps
\jposee\pages\store doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys added as eeweb3\webapps
\jposee\pages\sys doesn't exist.
[copy] eeweb3\webapps\jposee\pages\txn added as eeweb3\webapps
\jposee\pages\txn doesn't exist.
[copy] eeweb3\webapps\jposee\pages\user added as eeweb3\webapps
\jposee\pages\user doesn't exist.
[copy] eeweb3\webapps\jposee\static added as eeweb3\webapps\jposee
\static doesn't exist.
[copy] eeweb3\webapps\jposee\static\css added as eeweb3\webapps
\jposee\static\css doesn't exist.
[copy] eeweb3\webapps\jposee\static\images added as eeweb3\webapps
\jposee\static\images doesn't exist.
[copy] eeweb3\webapps\jposee\static\js added as eeweb3\webapps
\jposee\static\js doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img added as eeweb3\webapps
\jposee\static\js\img doesn't exist.
[copy] eeweb3\webapps\jposee\templates added as eeweb3\webapps
\jposee\templates doesn't exist.
[copy] eeweb3\webapps\root added as eeweb3\webapps\root doesn't
exist.
[copy] hibernate3 added as hibernate3 doesn't exist.
[copy] hibernate3\cfg added as hibernate3\cfg doesn't exist.
[copy] hibernate3\lib added as hibernate3\lib doesn't exist.
[copy] hibernate3_mysql added as hibernate3_mysql doesn't exist.
[copy] hibernate3_mysql\cfg added as hibernate3_mysql\cfg doesn't
exist.
[copy] hibernate3_mysql\lib added as hibernate3_mysql\lib doesn't
exist.
[copy] jetty6 added as jetty6 doesn't exist.
[copy] jetty6\cfg added as jetty6\cfg doesn't exist.
[copy] jetty6\cfg\contexts added as jetty6\cfg\contexts doesn't
exist.
[copy] jetty6\deploy added as jetty6\deploy doesn't exist.
[copy] jetty6\lib added as jetty6\lib doesn't exist.
[copy] jetty6\src added as jetty6\src doesn't exist.
[copy] jetty6\src\org added as jetty6\src\org doesn't exist.
[copy] jetty6\src\org\jpos added as jetty6\src\org\jpos doesn't
exist.
[copy] jetty6\src\org\jpos\q2 added as jetty6\src\org\jpos\q2
doesn't exist.
[copy] jetty6\src\org\jpos\q2\jetty added as jetty6\src\org\jpos
\q2\jetty doesn't exist.
[copy] jpos added as jpos doesn't exist.
[copy] jpos\cfg added as jpos\cfg doesn't exist.
[copy] jpos\lib added as jpos\lib doesn't exist.
[copy] jpublish4 added as jpublish4 doesn't exist.
[copy] jpublish4\lib added as jpublish4\lib doesn't exist.
[copy] jpublish4\license added as jpublish4\license doesn't
exist.
[copy] serversimulator added as serversimulator doesn't exist.
[copy] serversimulator\cfg added as serversimulator\cfg doesn't
exist.
[copy] serversimulator\deploy added as serversimulator\deploy
doesn't exist.
[copy] splash added as splash doesn't exist.
[copy] splash\deploy added as splash\deploy doesn't exist.
[copy] splash\deploy\lib added as splash\deploy\lib doesn't
exist.
[copy] status added as status doesn't exist.
[copy] status\cfg added as status\cfg doesn't exist.
[copy] status\deploy added as status\deploy doesn't exist.
[copy] status\src added as status\src doesn't exist.
[copy] status\src\org added as status\src\org doesn't exist.
[copy] status\src\org\jpos added as status\src\org\jpos doesn't
exist.
[copy] status\src\org\jpos\ee added as status\src\org\jpos\ee
doesn't exist.
[copy] status\src\org\jpos\ee\status added as status\src\org\jpos
\ee\status doesn't exist.
[copy] status_ui added as status_ui doesn't exist.
[copy] status_ui\cfg added as status_ui\cfg doesn't exist.
[copy] status_ui\cfg\menus added as status_ui\cfg\menus doesn't
exist.
[copy] status_ui\src added as status_ui\src doesn't exist.
[copy] status_ui\src\org added as status_ui\src\org doesn't
exist.
[copy] status_ui\src\org\jpos added as status_ui\src\org\jpos
doesn't exist.
[copy] status_ui\src\org\jpos\ee added as status_ui\src\org\jpos
\ee doesn't exist.
[copy] status_ui\src\org\jpos\ee\action added as status_ui\src\org
\jpos\ee\action doesn't exist.
[copy] status_ui\src\org\jpos\ee\action\sys added as status_ui\src
\org\jpos\ee\action\sys doesn't exist.
[copy] status_ui\webapps added as status_ui\webapps doesn't
exist.
[copy] status_ui\webapps\jposee added as status_ui\webapps\jposee
doesn't exist.
[copy] status_ui\webapps\jposee\content added as status_ui\webapps
\jposee\content doesn't exist.
[copy] status_ui\webapps\jposee\content\sys added as status_ui
\webapps\jposee\content\sys doesn't exist.
[copy] status_ui\webapps\jposee\pages added as status_ui\webapps
\jposee\pages doesn't exist.
[copy] status_ui\webapps\jposee\pages\sys added as status_ui
\webapps\jposee\pages\sys doesn't exist.
[copy] status_ui\webapps\jposee\static added as status_ui\webapps
\jposee\static doesn't exist.
[copy] status_ui\webapps\jposee\static\js added as status_ui
\webapps\jposee\static\js doesn't exist.
[copy] system added as system doesn't exist.
[copy] system\bin added as system\bin doesn't exist.
[copy] system\deploy added as system\deploy doesn't exist.
[copy] Copying 319 files to C:\Users\bruno\Desktop\jposee\build
\modules
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\cfg
\menus\main-menu.xml to C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\cfg\menus\main-menu.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\dhtmlgoodies_sheet.gif to C:\Users
\bruno\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\dhtmlgoodies_sheet.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\SysLogEventBase.java to C:\Users\bruno\Desktop\jposee
\build\modules\eecore3\src\org\jpos\ee\SysLogEventBase.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\ActionSupport.java to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\src\org\jpos\ee\action\ActionSupport.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\VisitorManager.java to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\VisitorManager.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\search_button.gif to C:\Users
\bruno\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\search_button.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\Menu.java to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\action\Menu.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\hibernate3\lib\c3p0-0.9.1.jar to C:\Users\bruno\Desktop\jposee\build
\modules\hibernate3\lib\c3p0-0.9.1.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpublish4\lib
\xml-apis.jar to C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\xml-apis.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\Visitor.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\Visitor.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpos\lib
\cweb-extser-0.1-b2-dev.jar to C:\Users\bruno\Desktop\jposee\build
\modules\jpos\lib\cweb-extser-0.1-b2-dev.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\off.gif to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\images\off.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\add_item.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\add_item.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\clientsimulator\cfg\echo_s to C:\Users\bruno\Desktop\jposee\build
\modules\clientsimulator\cfg\echo_s
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\gradient.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\gradient.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\cfg
\contexts\jpos.xml to C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\contexts\jpos.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\clientsimulator\cfg\echo_r to C:\Users\bruno\Desktop\jposee\build
\modules\clientsimulator\cfg\echo_r
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpublish4\lib
\xercesImpl.jar to C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\xercesImpl.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\sys\searchbar.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\sys
\searchbar.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\cfg
\jetty.xml - Copy.sample to C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\jetty.xml - Copy.sample
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\user\show.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\content\user\show.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\clientsimulator\deploy\10_clientsimulator_channel.xml to C:\Users
\bruno\Desktop\jposee\build\modules\clientsimulator\deploy
\10_clientsimulator_channel.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\lib
\jetty-6.1.18.jar to C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\jetty-6.1.18.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\index.xml to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\webapps\jposee\pages\index.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\comment.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\comment.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\tree_green.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\tree_green.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\RevisionEntry.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\RevisionEntry.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\system\bin
\stop to C:\Users\bruno\Desktop\jposee\build\modules\system\bin\stop
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\DB.java to C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\DB.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui\src
\org\jpos\ee\action\sys\StatusShow.java to C:\Users\bruno\Desktop
\jposee\build\modules\status_ui\src\org\jpos\ee\action\sys
\StatusShow.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\sys\cardtypeedit.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\sys
\cardtypeedit.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\hibernate3\lib\antlr-2.7.6.jar to C:\Users\bruno\Desktop\jposee\build
\modules\hibernate3\lib\antlr-2.7.6.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\style.css to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\style.css
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\jpos_t.jpg to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\jpos_t.jpg
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui
\webapps\jposee\content\sys\statusshow.html to C:\Users\bruno\Desktop
\jposee\build\modules\status_ui\webapps\jposee\content\sys
\statusshow.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\tbg.gif to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\images\tbg.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\cfg
\_hibernate.cfg.mappings to C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\cfg\_hibernate.cfg.mappings
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\sys\syslog.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\sys
\syslog.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpos\lib
\jpos.jar to C:\Users\bruno\Desktop\jposee\build\modules\jpos\lib
\jpos.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\info\StartStop.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\info\StartStop.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\User.hbm.xml to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\User.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\inc\topbar.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\inc
\topbar.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\user\profile.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\user\profile.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\include.list
to C:\Users\bruno\Desktop\jposee\build\modules\include.list
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\user\profile.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\user
\profile.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\hibernate3\lib\dom4j-1.6.1.jar to C:\Users\bruno\Desktop\jposee\build
\modules\hibernate3\lib\dom4j-1.6.1.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\user\delete.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\user\delete.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpublish4\lib
\PostEden-1.5.3.jar to C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\PostEden-1.5.3.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui
\webapps\jposee\pages\sys\statusshow.xml to C:\Users\bruno\Desktop
\jposee\build\modules\status_ui\webapps\jposee\pages\sys
\statusshow.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status\src
\org\jpos\ee\status\MonitorTask.java to C:\Users\bruno\Desktop\jposee
\build\modules\status\src\org\jpos\ee\status\MonitorTask.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status\src
\org\jpos\ee\status\Ping.java to C:\Users\bruno\Desktop\jposee\build
\modules\status\src\org\jpos\ee\status\Ping.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\SysLog.java to C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysLog.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\util\V.java to C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\util\V.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\oops.jpg to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\images\oops.jpg
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\ResultCode.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\ResultCode.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\jpos_s.jpg to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\jpos_s.jpg
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\inc\pagination.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\inc
\pagination.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\EEUtil.java to C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\EEUtil.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\SysConfig.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\SysConfig.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\commons\lib
\log4j-1.2.15.jar to C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\log4j-1.2.15.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpublish4\lib
\JPublish-4.jar to C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\JPublish-4.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\xml.gif to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\images\xml.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\commons\lib
\slf4j-api-1.5.8.jar to C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\slf4j-api-1.5.8.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\user\Add.java to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\src\org\jpos\ee\action\user\Add.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\Visitor.hbm.xml to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\Visitor.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\txn\list.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\txn\list.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status\src
\org\jpos\ee\status\ChannelMonitor.java to C:\Users\bruno\Desktop
\jposee\build\modules\status\src\org\jpos\ee\status
\ChannelMonitor.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\hibernate3_mysql\cfg\_hibernate.cfg.properties to C:\Users\bruno
\Desktop\jposee\build\modules\hibernate3_mysql\cfg
\_hibernate.cfg.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\menu_bg.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\menu_bg.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\user\Show.java to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\src\org\jpos\ee\action\user\Show.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\LoggeableSysLogEvent.java to C:\Users\bruno\Desktop\jposee
\build\modules\eecore3\src\org\jpos\ee\LoggeableSysLogEvent.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\cfg
\menus\README to C:\Users\bruno\Desktop\jposee\build\modules\eeweb3\cfg
\menus\README
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\login.xml to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\webapps\jposee\pages\login.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\sys\routing.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\sys\routing.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\WEB-INF\web.xml to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\webapps\jposee\WEB-INF\web.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\Cloneable.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\Cloneable.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status\src
\org\jpos\ee\status\StatusTag.java to C:\Users\bruno\Desktop\jposee
\build\modules\status\src\org\jpos\ee\status\StatusTag.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpos\lib
\jline-0.9.91.jar to C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\jline-0.9.91.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\hibernate3\lib\jta-1.1.jar to C:\Users\bruno\Desktop\jposee\build
\modules\hibernate3\lib\jta-1.1.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\User.java to C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\User.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui
\webapps\jposee\content\sys\statustree.head to C:\Users\bruno\Desktop
\jposee\build\modules\status_ui\webapps\jposee\content\sys
\statustree.head
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\store\edit.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\store\edit.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\cfg
\contexts\jposee.xml to C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\contexts\jposee.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\util\Validator.properties to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\src\org\jpos\util\Validator.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\tl.gif to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\images\tl.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui
\webapps\jposee\content\sys\status.html to C:\Users\bruno\Desktop
\jposee\build\modules\status_ui\webapps\jposee\content\sys\status.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\asc.gif to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\images\asc.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\SysLogEvent.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\SysLogEvent.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\user\edit.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\user\edit.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\user\list.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\content\user\list.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpublish4\lib
\JPublish-4.license.txt to C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\JPublish-4.license.txt
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\clientsimulator\deploy\30_clientsimulator.xml to C:\Users\bruno
\Desktop\jposee\build\modules\clientsimulator\deploy
\30_clientsimulator.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\cfg
\webdefault.xml to C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\webdefault.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\inc\macros.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\inc
\macros.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status\deploy
\02_status_heartbeat.xml to C:\Users\bruno\Desktop\jposee\build\modules
\status\deploy\02_status_heartbeat.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\calendar.js to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\js\calendar.js
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpos\lib
\commons-cli.jar to C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\commons-cli.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\StatusRevisionEntry.java to C:\Users\bruno\Desktop\jposee
\build\modules\eecore3\src\org\jpos\ee\StatusRevisionEntry.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\police_stop.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\police_stop.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\root\index.html to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\webapps\root\index.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\folder-tree-static.js to C:\Users
\bruno\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\js
\folder-tree-static.js
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpos\lib
\jdom-1.0.jar to C:\Users\bruno\Desktop\jposee\build\modules\jpos\lib
\jdom-1.0.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\templates\basic.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\templates\basic.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\user\delete.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\user
\delete.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\ContextConstants.java to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\src\org\jpos\ee\action
\ContextConstants.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\SystemDate.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\SystemDate.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\lib
\jetty-util-6.1.18.jar to C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\jetty-util-6.1.18.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\WEB-INF\classes\whirlycache.xml to C:\Users
\bruno\Desktop\jposee\build\modules\eeweb3\webapps\jposee\WEB-INF
\classes\whirlycache.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status\cfg
\_hibernate.cfg.mappings to C:\Users\bruno\Desktop\jposee\build\modules
\status\cfg\_hibernate.cfg.mappings
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\store\show.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\store\show.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui
\webapps\jposee\pages\sys\statustree.xml to C:\Users\bruno\Desktop
\jposee\build\modules\status_ui\webapps\jposee\pages\sys
\statustree.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\util\DiffEntry.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\util\DiffEntry.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\dhtmlgoodies_folder.gif to C:
\Users\bruno\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static
\images\dhtmlgoodies_folder.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\index.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\content\index.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\cfg
\jetty.xml to C:\Users\bruno\Desktop\jposee\build\modules\jetty6\cfg
\jetty.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\test
\org\jpos\util\ValidatorTestCase.java to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\test\org\jpos\util\ValidatorTestCase.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\stop.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\content\stop.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\desc.gif to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\images\desc.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpos\lib
\je-3.3.87.license to C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\je-3.3.87.license
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\sys\syslog.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\sys\syslog.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\cfg
\menus\nologged-menu.xml to C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\cfg\menus\nologged-menu.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\system\bin
\start to C:\Users\bruno\Desktop\jposee\build\modules\system\bin\start
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\500.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\content\500.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\sys\index.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\content\sys\index.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\user\edit.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\content\user\edit.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\user\show.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\user\show.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\css\context-menu.css to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\css\context-
menu.css
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\store\add.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\store\add.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\WEB-INF\classes\VM_global_library.vm to C:\Users
\bruno\Desktop\jposee\build\modules\eeweb3\webapps\jposee\WEB-INF
\classes\VM_global_library.vm
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\css\cssmenu.css to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\css\cssmenu.css
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\commons\cfg
\log4j.properties to C:\Users\bruno\Desktop\jposee\build\modules
\commons\cfg\log4j.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\Permission.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\Permission.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\user\Delete.java to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\src\org\jpos\ee\action\user\Delete.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\sys\cardtypeadd.xml to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\pages\sys
\cardtypeadd.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\splash\deploy
\lib\q2mod_example.jar to C:\Users\bruno\Desktop\jposee\build\modules
\splash\deploy\lib\q2mod_example.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui
\webapps\jposee\static\js\status-tree.js to C:\Users\bruno\Desktop
\jposee\build\modules\status_ui\webapps\jposee\static\js\status-
tree.js
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\green.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\green.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\red.gif to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\images\red.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\UserManager.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\UserManager.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\ajax.js to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\js\ajax.js
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\stop.xml to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\webapps\jposee\pages\stop.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\BLException.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\BLException.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\commons\lib
\velocity-1.6.2.jar to C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\velocity-1.6.2.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui\src
\org\jpos\ee\action\sys\StatusNode.java to C:\Users\bruno\Desktop
\jposee\build\modules\status_ui\src\org\jpos\ee\action\sys
\StatusNode.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\clientsimulator\src\org\jpos\simulator\TestCase.java to C:\Users\bruno
\Desktop\jposee\build\modules\clientsimulator\src\org\jpos\simulator
\TestCase.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\404.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\content\404.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\img\next.gif to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\js\img\next.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\CheckAccess.java to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\src\org\jpos\ee\action\CheckAccess.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\sys\sysconfig.xml to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\pages\sys
\sysconfig.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\img\next_year.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\js\img
\next_year.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\commons\lib
\commons-beanutils-1.8.0-BETA.jar to C:\Users\bruno\Desktop\jposee
\build\modules\commons\lib\commons-beanutils-1.8.0-BETA.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\commons\lib
\ehcache-1.6.0.jar to C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\ehcache-1.6.0.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\extract\index.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\extract
\index.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\404.xml to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\webapps\jposee\pages\404.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\SysConfigManager.java to C:\Users\bruno\Desktop\jposee
\build\modules\eecore3\src\org\jpos\ee\SysConfigManager.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\util\BeanDiff.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\util\BeanDiff.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\system\bin
\q2 to C:\Users\bruno\Desktop\jposee\build\modules\system\bin\q2
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\Visitor.hbm.xml to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\Visitor.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\src
\org\jpos\q2\jetty\Jetty6.java to C:\Users\bruno\Desktop\jposee\build
\modules\jetty6\src\org\jpos\q2\jetty\Jetty6.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\system\deploy
\00_logger.xml to C:\Users\bruno\Desktop\jposee\build\modules\system
\deploy\00_logger.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\user\UpdateProfile.java to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\src\org\jpos\ee\action\user
\UpdateProfile.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status\src
\org\jpos\ee\status\Heartbeat.java to C:\Users\bruno\Desktop\jposee
\build\modules\status\src\org\jpos\ee\status\Heartbeat.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui\cfg
\menus\status.xml to C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\cfg\menus\status.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\SysLogEvent.hbm.xml to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\SysLogEvent.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\img\cal.gif to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\js\img\cal.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\VisitorBase.java to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\VisitorBase.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpos\cfg
\genericpackager.dtd to C:\Users\bruno\Desktop\jposee\build\modules
\jpos\cfg\genericpackager.dtd
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\serversimulator\cfg\serversimulator.bsh to C:\Users\bruno\Desktop
\jposee\build\modules\serversimulator\cfg\serversimulator.bsh
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\error.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\content\error.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\hibernate3\cfg\log4j.properties to C:\Users\bruno\Desktop\jposee\build
\modules\hibernate3\cfg\log4j.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpos\lib
\jdbm-1.0.jar to C:\Users\bruno\Desktop\jposee\build\modules\jpos\lib
\jdbm-1.0.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\sys\syslogshow.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\sys
\syslogshow.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpos\lib
\bsh-2.0b4.jar to C:\Users\bruno\Desktop\jposee\build\modules\jpos\lib
\bsh-2.0b4.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\ResultCodeManager.java to C:\Users\bruno\Desktop\jposee
\build\modules\eecore3\src\org\jpos\ee\ResultCodeManager.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\user\Update.java to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\src\org\jpos\ee\action\user\Update.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpublish4\lib
\atlassian-profiling-1.1.jar to C:\Users\bruno\Desktop\jposee\build
\modules\jpublish4\lib\atlassian-profiling-1.1.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\ch\show.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\ch\show.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\commons\lib
\slf4j-log4j12-1.5.8.jar to C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\slf4j-log4j12-1.5.8.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\hibernate3\cfg\_hibernate.cfg.tail to C:\Users\bruno\Desktop\jposee
\build\modules\hibernate3\cfg\_hibernate.cfg.tail
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\context-menu.js to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\js\context-
menu.js
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\md5.js to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\js\md5.js
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\go.gif to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\images\go.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\ch\index.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\ch\index.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status\src
\org\jpos\ee\status\StatusBase.java to C:\Users\bruno\Desktop\jposee
\build\modules\status\src\org\jpos\ee\status\StatusBase.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpublish4\lib
\atlassian-profiling-license.txt to C:\Users\bruno\Desktop\jposee\build
\modules\jpublish4\lib\atlassian-profiling-license.txt
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\user\add.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\content\user\add.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\splash
\build.xml to C:\Users\bruno\Desktop\jposee\build\modules\splash
\build.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\store\termadd.xml to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\pages\store
\termadd.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\img\logo.gif to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\js\img\logo.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\WEB-INF\classes\edenlib-config.properties to C:
\Users\bruno\Desktop\jposee\build\modules\eeweb3\webapps\jposee\WEB-INF
\classes\edenlib-config.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\500.xml to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\webapps\jposee\pages\500.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\Close.java to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\action\Close.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\store\list.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\store\list.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\SysConfig.hbm.xml to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\SysConfig.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\hibernate3\lib\javassist-3.9.0.GA.jar to C:\Users\bruno\Desktop\jposee
\build\modules\hibernate3\lib\javassist-3.9.0.GA.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\lib
\jasper-runtime-5.5.15.jar to C:\Users\bruno\Desktop\jposee\build
\modules\jetty6\lib\jasper-runtime-5.5.15.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\Constants.p to C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\Constants.p
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui
\webapps\jposee\content\sys\statusNode.x to C:\Users\bruno\Desktop
\jposee\build\modules\status_ui\webapps\jposee\content\sys
\statusNode.x
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\util\DateUtil.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\util\DateUtil.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\UserPerms.k to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\action\UserPerms.k
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\Logout.java to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\action\Logout.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\Constants.k to C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\Constants.k
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\login.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\content\login.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\img\pixel.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\js\img
\pixel.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\navigation\tabs.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\navigation
\tabs.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\jpos_l.jpg to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\jpos_l.jpg
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\hibernate3_mysql\lib\mysql-connector-java-5.1.7-bin.jar to C:\Users
\bruno\Desktop\jposee\build\modules\hibernate3_mysql\lib\mysql-
connector-java-5.1.7-bin.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\jpublish4\license\license.txt to C:\Users\bruno\Desktop\jposee\build
\modules\jpublish4\license\license.txt
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\user\list.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\user\list.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\sys\cardtypeedit.xml to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\pages\sys
\cardtypeedit.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\img\prev_year.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\js\img
\prev_year.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\error.xml to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\webapps\jposee\pages\error.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\cfg
\contexts\root.xml to C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\contexts\root.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\sys\SysConfig.java to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\src\org\jpos\ee\action\sys\SysConfig.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpos\lib
\je-3.3.87.jar to C:\Users\bruno\Desktop\jposee\build\modules\jpos\lib
\je-3.3.87.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\clientsimulator\deploy\20_clientsimulator_mux.xml to C:\Users\bruno
\Desktop\jposee\build\modules\clientsimulator\deploy
\20_clientsimulator_mux.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\no_photo.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\no_photo.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status\src
\org\jpos\ee\status\Monitor.java to C:\Users\bruno\Desktop\jposee\build
\modules\status\src\org\jpos\ee\status\Monitor.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\dhtmlgoodies_plus.gif to C:\Users
\bruno\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\dhtmlgoodies_plus.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\user\hnav.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\content\user\hnav.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\serversimulator\deploy\05_serversimulator.xml to C:\Users\bruno
\Desktop\jposee\build\modules\serversimulator\deploy
\05_serversimulator.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\tree_yellow.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\tree_yellow.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\lib
\jasper-compiler-5.5.15.jar to C:\Users\bruno\Desktop\jposee\build
\modules\jetty6\lib\jasper-compiler-5.5.15.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\store\termedit.xml to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\pages\store
\termedit.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\sys\index.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\sys\index.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\clientsimulator\deploy\25_clientsimulator_ui.xml to C:\Users\bruno
\Desktop\jposee\build\modules\clientsimulator\deploy
\25_clientsimulator_ui.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\sys\routing.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\sys
\routing.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\remove_item.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\remove_item.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\commons\lib
\commons-lang-2.4.jar to C:\Users\bruno\Desktop\jposee\build\modules
\commons\lib\commons-lang-2.4.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\system\deploy
\99_sysmon.xml to C:\Users\bruno\Desktop\jposee\build\modules\system
\deploy\99_sysmon.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\user\List.java to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\src\org\jpos\ee\action\user\List.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\menu\MenuMap.java to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\menu\MenuMap.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\alert.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\alert.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui
\webapps\jposee\pages\sys\statusNode.xml to C:\Users\bruno\Desktop
\jposee\build\modules\status_ui\webapps\jposee\pages\sys
\statusNode.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\extract\index.head to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\extract
\index.head
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\deploy
\90_jetty.xml to C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\deploy\90_jetty.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\hibernate3\lib\hibernate-3.3.2.GA.jar to C:\Users\bruno\Desktop\jposee
\build\modules\hibernate3\lib\hibernate-3.3.2.GA.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\sys\cardtypeshow.xml to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\pages\sys
\cardtypeshow.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\WEB-INF\jpublish.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\WEB-INF\jpublish.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\sys\SysLog.java to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\src\org\jpos\ee\action\sys\SysLog.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\jpos_bg.jpg to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\jpos_bg.jpg
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\lib
\jsp-api-5.0.16.jar to C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\jsp-api-5.0.16.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\yellow.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\yellow.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status\src
\org\jpos\ee\status\StatusTag.hbm.xml to C:\Users\bruno\Desktop\jposee
\build\modules\status\src\org\jpos\ee\status\StatusTag.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\templates\basic.x to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\templates\basic.x
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status\src
\org\jpos\ee\status\TwoWayMonitorTask.java to C:\Users\bruno\Desktop
\jposee\build\modules\status\src\org\jpos\ee\status
\TwoWayMonitorTask.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\extract\index.xml to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\pages\extract
\index.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\splash\deploy
\10_splash.xml to C:\Users\bruno\Desktop\jposee\build\modules\splash
\deploy\10_splash.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\ResultCodeFinder.java to C:\Users\bruno\Desktop\jposee
\build\modules\eecore3\src\org\jpos\ee\ResultCodeFinder.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\sys\cardtypeshow.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\sys
\cardtypeshow.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\store\termshow.xml to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\pages\store
\termshow.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status\src
\org\jpos\ee\status\Status.java to C:\Users\bruno\Desktop\jposee\build
\modules\status\src\org\jpos\ee\status\Status.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\cookies.js to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\js\cookies.js
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpublish4\lib
\bsf.jar to C:\Users\bruno\Desktop\jposee\build\modules\jpublish4\lib
\bsf.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\UserRevisionEntry.java to C:\Users\bruno\Desktop\jposee
\build\modules\eecore3\src\org\jpos\ee\UserRevisionEntry.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\ResultCodeInfo.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\ResultCodeInfo.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\sys\syslogshow.xml to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\pages\sys
\syslogshow.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\logout.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\content\logout.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\VisitorManager.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\VisitorManager.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\ResultCodeInfoFinder.java to C:\Users\bruno\Desktop\jposee
\build\modules\eecore3\src\org\jpos\ee\ResultCodeInfoFinder.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\update_item.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\update_item.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\menu\MenuNode.java to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\menu\MenuNode.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\K.java to C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\K.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\navigation\menu-head.html to C:\Users
\bruno\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content
\navigation\menu-head.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\sys\hnav.html to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\content\sys\hnav.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\tr.gif to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\images\tr.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\calendar.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\js
\calendar.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eecore3\deploy\01_start.xml to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\deploy\01_start.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\Error.java to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\action\Error.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\index.html to C:\Users\bruno\Desktop\jposee
\build\modules\eeweb3\webapps\jposee\index.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\prototype.js to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\js\prototype.js
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\commons\lib
\commons-logging-1.1.1.jar to C:\Users\bruno\Desktop\jposee\build
\modules\commons\lib\commons-logging-1.1.1.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\commons\lib
\commons-collections-3.1.jar to C:\Users\bruno\Desktop\jposee\build
\modules\commons\lib\commons-collections-3.1.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui
\webapps\jposee\pages\sys\status.xml to C:\Users\bruno\Desktop\jposee
\build\modules\status_ui\webapps\jposee\pages\sys\status.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\hibernate3\build.xml to C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\build.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\ch\list.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\ch\list.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\sys\SysLogShow.java to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\src\org\jpos\ee\action\sys
\SysLogShow.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status\src
\org\jpos\ee\status\StatusManager.java to C:\Users\bruno\Desktop\jposee
\build\modules\status\src\org\jpos\ee\status\StatusManager.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\logout.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\logout.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\txn\index.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\txn\index.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\css\folder-tree-static.css to C:\Users
\bruno\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\css
\folder-tree-static.css
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\ResultCode.hbm.xml to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\ResultCode.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\sys\sysconfig.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\sys
\sysconfig.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\txn\show.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\txn\show.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jpublish4\lib
\commons-vfs-1.0-dev.jar to C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\commons-vfs-1.0-dev.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\dhtmlgoodies_minus.gif to C:\Users
\bruno\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\dhtmlgoodies_minus.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\ignore.list
to C:\Users\bruno\Desktop\jposee\build\modules\ignore.list
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\critical.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\critical.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\sys\cardtypeadd.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\sys
\cardtypeadd.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\src
\org\jpos\q2\jetty\Jetty6MBean.java to C:\Users\bruno\Desktop\jposee
\build\modules\jetty6\src\org\jpos\q2\jetty\Jetty6MBean.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\RevisionManager.java to C:\Users\bruno\Desktop\jposee
\build\modules\eecore3\src\org\jpos\ee\RevisionManager.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\clientsimulator\src\org\jpos\simulator\TestRunner.java to C:\Users
\bruno\Desktop\jposee\build\modules\clientsimulator\src\org\jpos
\simulator\TestRunner.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\navigation\menu.html to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content\navigation
\menu.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\Visitor.java to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\Visitor.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\default.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\default.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\cfg
\keystore.ks to C:\Users\bruno\Desktop\jposee\build\modules\jetty6\cfg
\keystore.ks
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui\src
\org\jpos\ee\action\sys\StatusTree.java to C:\Users\bruno\Desktop
\jposee\build\modules\status_ui\src\org\jpos\ee\action\sys
\StatusTree.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\store\termdelete.xml to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\pages\store
\termdelete.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\images\tree_red.gif to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\static\images
\tree_red.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui
\webapps\jposee\content\sys\statustree.html to C:\Users\bruno\Desktop
\jposee\build\modules\status_ui\webapps\jposee\content\sys
\statustree.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eecore3\build.xml to C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\build.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\RevisionEntry.hbm.xml to C:\Users\bruno\Desktop\jposee
\build\modules\eecore3\src\org\jpos\ee\RevisionEntry.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\img\prev.gif to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\js\img\prev.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\Login.java to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\action\Login.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\WEB-INF\velocity.properties to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\WEB-INF
\velocity.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\jetty6\lib
\servlet-api-2.5-20081211.jar to C:\Users\bruno\Desktop\jposee\build
\modules\jetty6\lib\servlet-api-2.5-20081211.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\static\js\img\tc.gif to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\static\js\img\tc.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\store\index.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\store\index.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\user\add.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\user\add.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status\src
\org\jpos\ee\status\Status.hbm.xml to C:\Users\bruno\Desktop\jposee
\build\modules\status\src\org\jpos\ee\status\Status.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\ee\action\Open.java to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\ee\action\Open.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\status_ui\src
\org\jpos\ee\action\sys\Status.java to C:\Users\bruno\Desktop\jposee
\build\modules\status_ui\src\org\jpos\ee\action\sys\Status.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eecore3\src
\org\jpos\ee\VisitorBase.java to C:\Users\bruno\Desktop\jposee\build
\modules\eecore3\src\org\jpos\ee\VisitorBase.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\hibernate3\cfg\_hibernate.cfg.head to C:\Users\bruno\Desktop\jposee
\build\modules\hibernate3\cfg\_hibernate.cfg.head
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\src
\org\jpos\util\Validator.java to C:\Users\bruno\Desktop\jposee\build
\modules\eeweb3\src\org\jpos\util\Validator.java
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\content\navigation\menu-macro.html to C:\Users
\bruno\Desktop\jposee\build\modules\eeweb3\webapps\jposee\content
\navigation\menu-macro.html
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\WEB-INF\classes\ehcache.xml to C:\Users\bruno
\Desktop\jposee\build\modules\eeweb3\webapps\jposee\WEB-INF\classes
\ehcache.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\eeweb3\webapps\jposee\pages\store\delete.xml to C:\Users\bruno\Desktop
\jposee\build\modules\eeweb3\webapps\jposee\pages\store\delete.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\modules\eeweb3\cfg
\contexts\jposee.xml to C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\cfg\contexts\jposee.xml
[copy] clientsimulator\deploy\10_clientsimulator_channel.xml
added as 10_clientsimulator_channel.xml doesn't exist.
[copy] clientsimulator\deploy\20_clientsimulator_mux.xml added as
20_clientsimulator_mux.xml doesn't exist.
[copy] clientsimulator\deploy\25_clientsimulator_ui.xml added as
25_clientsimulator_ui.xml doesn't exist.
[copy] clientsimulator\deploy\30_clientsimulator.xml added as
30_clientsimulator.xml doesn't exist.
[copy] eecore3\deploy\01_start.xml added as 01_start.xml doesn't
exist.
[copy] jetty6\deploy\90_jetty.xml added as 90_jetty.xml doesn't
exist.
[copy] serversimulator\deploy\05_serversimulator.xml added as
05_serversimulator.xml doesn't exist.
[copy] splash\deploy\10_splash.xml added as 10_splash.xml doesn't
exist.
[copy] status\deploy\02_status_heartbeat.xml added as
02_status_heartbeat.xml doesn't exist.
[copy] system\deploy\00_logger.xml added as 00_logger.xml doesn't
exist.
[copy] system\deploy\99_sysmon.xml added as 99_sysmon.xml doesn't
exist.
[copy] No sources found.
[copy] Copying 11 files to C:\Users\bruno\Desktop\jposee\build
\deploy
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\system
\deploy\00_logger.xml to C:\Users\bruno\Desktop\jposee\build\deploy
\00_logger.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\deploy\30_clientsimulator.xml to C:\Users\bruno
\Desktop\jposee\build\deploy\30_clientsimulator.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\deploy\01_start.xml to C:\Users\bruno\Desktop\jposee\build
\deploy\01_start.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\status
\deploy\02_status_heartbeat.xml to C:\Users\bruno\Desktop\jposee\build
\deploy\02_status_heartbeat.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\splash
\deploy\10_splash.xml to C:\Users\bruno\Desktop\jposee\build\deploy
\10_splash.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\deploy\25_clientsimulator_ui.xml to C:\Users\bruno
\Desktop\jposee\build\deploy\25_clientsimulator_ui.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\deploy\90_jetty.xml to C:\Users\bruno\Desktop\jposee\build
\deploy\90_jetty.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\deploy\10_clientsimulator_channel.xml to C:\Users
\bruno\Desktop\jposee\build\deploy\10_clientsimulator_channel.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\deploy\20_clientsimulator_mux.xml to C:\Users\bruno
\Desktop\jposee\build\deploy\20_clientsimulator_mux.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\serversimulator\deploy\05_serversimulator.xml to C:\Users\bruno
\Desktop\jposee\build\deploy\05_serversimulator.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\system
\deploy\99_sysmon.xml to C:\Users\bruno\Desktop\jposee\build\deploy
\99_sysmon.xml
[copy] commons\lib\commons-beanutils-1.8.0-BETA.jar added as
commons-beanutils-1.8.0-BETA.jar doesn't exist.
[copy] commons\lib\commons-collections-3.1.jar added as commons-
collections-3.1.jar doesn't exist.
[copy] commons\lib\commons-lang-2.4.jar added as commons-
lang-2.4.jar doesn't exist.
[copy] commons\lib\commons-logging-1.1.1.jar added as commons-
logging-1.1.1.jar doesn't exist.
[copy] commons\lib\ehcache-1.6.0.jar added as ehcache-1.6.0.jar
doesn't exist.
[copy] commons\lib\log4j-1.2.15.jar added as log4j-1.2.15.jar
doesn't exist.
[copy] commons\lib\slf4j-api-1.5.8.jar added as slf4j-
api-1.5.8.jar doesn't exist.
[copy] commons\lib\slf4j-log4j12-1.5.8.jar added as slf4j-
log4j12-1.5.8.jar doesn't exist.
[copy] commons\lib\velocity-1.6.2.jar added as velocity-1.6.2.jar
doesn't exist.
[copy] hibernate3\lib\antlr-2.7.6.jar added as antlr-2.7.6.jar
doesn't exist.
[copy] hibernate3\lib\c3p0-0.9.1.jar added as c3p0-0.9.1.jar
doesn't exist.
[copy] hibernate3\lib\dom4j-1.6.1.jar added as dom4j-1.6.1.jar
doesn't exist.
[copy] hibernate3\lib\hibernate-3.3.2.GA.jar added as
hibernate-3.3.2.GA.jar doesn't exist.
[copy] hibernate3\lib\javassist-3.9.0.GA.jar added as
javassist-3.9.0.GA.jar doesn't exist.
[copy] hibernate3\lib\jta-1.1.jar added as jta-1.1.jar doesn't
exist.
[copy] hibernate3_mysql\lib\mysql-connector-java-5.1.7-bin.jar
added as mysql-connector-java-5.1.7-bin.jar doesn't exist.
[copy] jetty6\lib\jasper-compiler-5.5.15.jar added as jasper-
compiler-5.5.15.jar doesn't exist.
[copy] jetty6\lib\jasper-runtime-5.5.15.jar added as jasper-
runtime-5.5.15.jar doesn't exist.
[copy] jetty6\lib\jetty-6.1.18.jar added as jetty-6.1.18.jar
doesn't exist.
[copy] jetty6\lib\jetty-util-6.1.18.jar added as jetty-
util-6.1.18.jar doesn't exist.
[copy] jetty6\lib\jsp-api-5.0.16.jar added as jsp-api-5.0.16.jar
doesn't exist.
[copy] jetty6\lib\servlet-api-2.5-20081211.jar added as servlet-
api-2.5-20081211.jar doesn't exist.
[copy] jpos\lib\bsh-2.0b4.jar added as bsh-2.0b4.jar doesn't
exist.
[copy] jpos\lib\commons-cli.jar added as commons-cli.jar doesn't
exist.
[copy] jpos\lib\cweb-extser-0.1-b2-dev.jar added as cweb-
extser-0.1-b2-dev.jar doesn't exist.
[copy] jpos\lib\jdbm-1.0.jar added as jdbm-1.0.jar doesn't exist.
[copy] jpos\lib\jdom-1.0.jar added as jdom-1.0.jar doesn't exist.
[copy] jpos\lib\je-3.3.87.jar added as je-3.3.87.jar doesn't
exist.
[copy] jpos\lib\jline-0.9.91.jar added as jline-0.9.91.jar
doesn't exist.
[copy] jpos\lib\jpos.jar added as jpos.jar doesn't exist.
[copy] jpublish4\lib\JPublish-4.jar added as JPublish-4.jar
doesn't exist.
[copy] jpublish4\lib\PostEden-1.5.3.jar added as
PostEden-1.5.3.jar doesn't exist.
[copy] jpublish4\lib\atlassian-profiling-1.1.jar added as
atlassian-profiling-1.1.jar doesn't exist.
[copy] jpublish4\lib\bsf.jar added as bsf.jar doesn't exist.
[copy] jpublish4\lib\commons-vfs-1.0-dev.jar added as commons-
vfs-1.0-dev.jar doesn't exist.
[copy] jpublish4\lib\xercesImpl.jar added as xercesImpl.jar
doesn't exist.
[copy] jpublish4\lib\xml-apis.jar added as xml-apis.jar doesn't
exist.
[copy] No sources found.
[copy] Copying 37 files to C:\Users\bruno\Desktop\jposee\build
\lib
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\jdbm-1.0.jar to C:\Users\bruno\Desktop\jposee\build\lib
\jdbm-1.0.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\jasper-compiler-5.5.15.jar to C:\Users\bruno\Desktop\jposee
\build\lib\jasper-compiler-5.5.15.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\commons
\lib\commons-lang-2.4.jar to C:\Users\bruno\Desktop\jposee\build\lib
\commons-lang-2.4.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\commons
\lib\slf4j-api-1.5.8.jar to C:\Users\bruno\Desktop\jposee\build\lib
\slf4j-api-1.5.8.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\commons-cli.jar to C:\Users\bruno\Desktop\jposee\build\lib
\commons-cli.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\jsp-api-5.0.16.jar to C:\Users\bruno\Desktop\jposee\build
\lib\jsp-api-5.0.16.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\je-3.3.87.jar to C:\Users\bruno\Desktop\jposee\build\lib
\je-3.3.87.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\commons-vfs-1.0-dev.jar to C:\Users\bruno\Desktop\jposee
\build\lib\commons-vfs-1.0-dev.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\lib\javassist-3.9.0.GA.jar to C:\Users\bruno\Desktop\jposee
\build\lib\javassist-3.9.0.GA.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\commons
\lib\commons-beanutils-1.8.0-BETA.jar to C:\Users\bruno\Desktop\jposee
\build\lib\commons-beanutils-1.8.0-BETA.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\commons
\lib\log4j-1.2.15.jar to C:\Users\bruno\Desktop\jposee\build\lib
\log4j-1.2.15.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\commons
\lib\velocity-1.6.2.jar to C:\Users\bruno\Desktop\jposee\build\lib
\velocity-1.6.2.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\lib\c3p0-0.9.1.jar to C:\Users\bruno\Desktop\jposee\build
\lib\c3p0-0.9.1.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\xercesImpl.jar to C:\Users\bruno\Desktop\jposee\build
\lib\xercesImpl.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\jetty-6.1.18.jar to C:\Users\bruno\Desktop\jposee\build\lib
\jetty-6.1.18.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\servlet-api-2.5-20081211.jar to C:\Users\bruno\Desktop
\jposee\build\lib\servlet-api-2.5-20081211.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\PostEden-1.5.3.jar to C:\Users\bruno\Desktop\jposee
\build\lib\PostEden-1.5.3.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\jasper-runtime-5.5.15.jar to C:\Users\bruno\Desktop\jposee
\build\lib\jasper-runtime-5.5.15.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\bsh-2.0b4.jar to C:\Users\bruno\Desktop\jposee\build\lib
\bsh-2.0b4.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\xml-apis.jar to C:\Users\bruno\Desktop\jposee\build\lib
\xml-apis.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\jpos.jar to C:\Users\bruno\Desktop\jposee\build\lib\jpos.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\JPublish-4.jar to C:\Users\bruno\Desktop\jposee\build
\lib\JPublish-4.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\lib\hibernate-3.3.2.GA.jar to C:\Users\bruno\Desktop\jposee
\build\lib\hibernate-3.3.2.GA.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\commons
\lib\slf4j-log4j12-1.5.8.jar to C:\Users\bruno\Desktop\jposee\build\lib
\slf4j-log4j12-1.5.8.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\bsf.jar to C:\Users\bruno\Desktop\jposee\build\lib
\bsf.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\commons
\lib\commons-collections-3.1.jar to C:\Users\bruno\Desktop\jposee\build
\lib\commons-collections-3.1.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\jdom-1.0.jar to C:\Users\bruno\Desktop\jposee\build\lib
\jdom-1.0.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\jline-0.9.91.jar to C:\Users\bruno\Desktop\jposee\build\lib
\jline-0.9.91.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\lib\jetty-util-6.1.18.jar to C:\Users\bruno\Desktop\jposee
\build\lib\jetty-util-6.1.18.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\commons
\lib\commons-logging-1.1.1.jar to C:\Users\bruno\Desktop\jposee\build
\lib\commons-logging-1.1.1.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3_mysql\lib\mysql-connector-java-5.1.7-bin.jar to C:\Users
\bruno\Desktop\jposee\build\lib\mysql-connector-java-5.1.7-bin.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\commons
\lib\ehcache-1.6.0.jar to C:\Users\bruno\Desktop\jposee\build\lib
\ehcache-1.6.0.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\jpos
\lib\cweb-extser-0.1-b2-dev.jar to C:\Users\bruno\Desktop\jposee\build
\lib\cweb-extser-0.1-b2-dev.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\lib\jta-1.1.jar to C:\Users\bruno\Desktop\jposee\build\lib
\jta-1.1.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\lib\dom4j-1.6.1.jar to C:\Users\bruno\Desktop\jposee\build
\lib\dom4j-1.6.1.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jpublish4\lib\atlassian-profiling-1.1.jar to C:\Users\bruno\Desktop
\jposee\build\lib\atlassian-profiling-1.1.jar
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\lib\antlr-2.7.6.jar to C:\Users\bruno\Desktop\jposee\build
\lib\antlr-2.7.6.jar
[copy] system\bin\q2 added as q2 doesn't exist.
[copy] system\bin\start added as start doesn't exist.
[copy] system\bin\stop added as stop doesn't exist.
[copy] No sources found.
[copy] Copying 3 files to C:\Users\bruno\Desktop\jposee\build\bin
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\system
\bin\stop to C:\Users\bruno\Desktop\jposee\build\bin\stop
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\system
\bin\start to C:\Users\bruno\Desktop\jposee\build\bin\start
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\system
\bin\q2 to C:\Users\bruno\Desktop\jposee\build\bin\q2
[copy] splash\deploy\lib\q2mod_example.jar added as
q2mod_example.jar doesn't exist.
[copy] No sources found.
[copy] Copying 1 file to C:\Users\bruno\Desktop\jposee\build
\deploy\lib
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\splash
\deploy\lib\q2mod_example.jar to C:\Users\bruno\Desktop\jposee\build
\deploy\lib\q2mod_example.jar
[copy] clientsimulator\cfg\echo_r added as cfg\echo_r doesn't
exist.
[copy] clientsimulator\cfg\echo_s added as cfg\echo_s doesn't
exist.
[copy] clientsimulator\deploy\10_clientsimulator_channel.xml
omitted as C:\Users\bruno\Desktop\jposee\build\deploy
\10_clientsimulator_channel.xml is up to date.
[copy] clientsimulator\deploy\20_clientsimulator_mux.xml omitted
as C:\Users\bruno\Desktop\jposee\build\deploy
\20_clientsimulator_mux.xml is up to date.
[copy] clientsimulator\deploy\25_clientsimulator_ui.xml omitted
as C:\Users\bruno\Desktop\jposee\build\deploy
\25_clientsimulator_ui.xml is up to date.
[copy] clientsimulator\deploy\30_clientsimulator.xml omitted as C:
\Users\bruno\Desktop\jposee\build\deploy\30_clientsimulator.xml is up
to date.
[copy] clientsimulator\src\org\jpos\simulator\TestCase.java added
as src\org\jpos\simulator\TestCase.java doesn't exist.
[copy] clientsimulator\src\org\jpos\simulator\TestRunner.java
added as src\org\jpos\simulator\TestRunner.java doesn't exist.
[copy] commons\cfg\log4j.properties added as cfg\log4j.properties
doesn't exist.
[copy] eecore3\build.xml added as build.xml doesn't exist.
[copy] eecore3\deploy\01_start.xml omitted as C:\Users\bruno
\Desktop\jposee\build\deploy\01_start.xml is up to date.
[copy] eecore3\src\org\jpos\ee\BLException.java added as src\org
\jpos\ee\BLException.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\Cloneable.java added as src\org
\jpos\ee\Cloneable.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\DB.java added as src\org\jpos\ee
\DB.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\EEUtil.java added as src\org\jpos
\ee\EEUtil.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\K.java added as src\org\jpos\ee
\K.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\LoggeableSysLogEvent.java added as
src\org\jpos\ee\LoggeableSysLogEvent.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\Permission.java added as src\org
\jpos\ee\Permission.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\ResultCode.hbm.xml added as src\org
\jpos\ee\ResultCode.hbm.xml doesn't exist.
[copy] eecore3\src\org\jpos\ee\ResultCode.java added as src\org
\jpos\ee\ResultCode.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\ResultCodeFinder.java added as src
\org\jpos\ee\ResultCodeFinder.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\ResultCodeInfo.java added as src
\org\jpos\ee\ResultCodeInfo.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\ResultCodeInfoFinder.java added as
src\org\jpos\ee\ResultCodeInfoFinder.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\ResultCodeManager.java added as src
\org\jpos\ee\ResultCodeManager.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\RevisionEntry.hbm.xml added as src
\org\jpos\ee\RevisionEntry.hbm.xml doesn't exist.
[copy] eecore3\src\org\jpos\ee\RevisionEntry.java added as src\org
\jpos\ee\RevisionEntry.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\RevisionManager.java added as src
\org\jpos\ee\RevisionManager.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\StatusRevisionEntry.java added as
src\org\jpos\ee\StatusRevisionEntry.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\SysConfig.hbm.xml added as src\org
\jpos\ee\SysConfig.hbm.xml doesn't exist.
[copy] eecore3\src\org\jpos\ee\SysConfig.java added as src\org
\jpos\ee\SysConfig.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\SysConfigManager.java added as src
\org\jpos\ee\SysConfigManager.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\SysLog.java added as src\org\jpos
\ee\SysLog.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\SysLogEvent.hbm.xml added as src
\org\jpos\ee\SysLogEvent.hbm.xml doesn't exist.
[copy] eecore3\src\org\jpos\ee\SysLogEvent.java added as src\org
\jpos\ee\SysLogEvent.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\SysLogEventBase.java added as src
\org\jpos\ee\SysLogEventBase.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\SystemDate.java added as src\org
\jpos\ee\SystemDate.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\User.hbm.xml added as src\org\jpos
\ee\User.hbm.xml doesn't exist.
[copy] eecore3\src\org\jpos\ee\User.java added as src\org\jpos\ee
\User.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\UserManager.java added as src\org
\jpos\ee\UserManager.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\UserRevisionEntry.java added as src
\org\jpos\ee\UserRevisionEntry.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\Visitor.hbm.xml added as src\org
\jpos\ee\Visitor.hbm.xml doesn't exist.
[copy] eecore3\src\org\jpos\ee\Visitor.java added as src\org\jpos
\ee\Visitor.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\VisitorBase.java added as src\org
\jpos\ee\VisitorBase.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\VisitorManager.java added as src
\org\jpos\ee\VisitorManager.java doesn't exist.
[copy] eecore3\src\org\jpos\ee\info\StartStop.java added as src
\org\jpos\ee\info\StartStop.java doesn't exist.
[copy] eecore3\src\org\jpos\util\BeanDiff.java added as src\org
\jpos\util\BeanDiff.java doesn't exist.
[copy] eecore3\src\org\jpos\util\DateUtil.java added as src\org
\jpos\util\DateUtil.java doesn't exist.
[copy] eecore3\src\org\jpos\util\DiffEntry.java added as src\org
\jpos\util\DiffEntry.java doesn't exist.
[copy] eeweb3\cfg\contexts\jposee.xml added as cfg\contexts
\jposee.xml doesn't exist.
[copy] eeweb3\cfg\menus\README added as cfg\menus\README doesn't
exist.
[copy] eeweb3\cfg\menus\main-menu.xml added as cfg\menus\main-
menu.xml doesn't exist.
[copy] eeweb3\cfg\menus\nologged-menu.xml added as cfg\menus
\nologged-menu.xml doesn't exist.
[copy] eeweb3\src\org\jpos\ee\Visitor.hbm.xml added as src\org
\jpos\ee\Visitor.hbm.xml doesn't exist.
[copy] eeweb3\src\org\jpos\ee\Visitor.java added as src\org\jpos
\ee\Visitor.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\VisitorBase.java added as src\org
\jpos\ee\VisitorBase.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\VisitorManager.java added as src\org
\jpos\ee\VisitorManager.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\ActionSupport.java added as
src\org\jpos\ee\action\ActionSupport.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\CheckAccess.java added as src
\org\jpos\ee\action\CheckAccess.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\Close.java added as src\org
\jpos\ee\action\Close.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\ContextConstants.java added
as src\org\jpos\ee\action\ContextConstants.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\Error.java added as src\org
\jpos\ee\action\Error.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\Login.java added as src\org
\jpos\ee\action\Login.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\Logout.java added as src\org
\jpos\ee\action\Logout.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\Menu.java added as src\org
\jpos\ee\action\Menu.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\Open.java added as src\org
\jpos\ee\action\Open.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\sys\SysConfig.java added as
src\org\jpos\ee\action\sys\SysConfig.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\sys\SysLog.java added as src
\org\jpos\ee\action\sys\SysLog.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\sys\SysLogShow.java added as
src\org\jpos\ee\action\sys\SysLogShow.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\user\Add.java added as src
\org\jpos\ee\action\user\Add.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\user\Delete.java added as src
\org\jpos\ee\action\user\Delete.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\user\List.java added as src
\org\jpos\ee\action\user\List.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\user\Show.java added as src
\org\jpos\ee\action\user\Show.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\user\Update.java added as src
\org\jpos\ee\action\user\Update.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\action\user\UpdateProfile.java
added as src\org\jpos\ee\action\user\UpdateProfile.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\menu\MenuMap.java added as src\org
\jpos\ee\menu\MenuMap.java doesn't exist.
[copy] eeweb3\src\org\jpos\ee\menu\MenuNode.java added as src\org
\jpos\ee\menu\MenuNode.java doesn't exist.
[copy] eeweb3\src\org\jpos\util\V.java added as src\org\jpos\util
\V.java doesn't exist.
[copy] eeweb3\src\org\jpos\util\Validator.java added as src\org
\jpos\util\Validator.java doesn't exist.
[copy] eeweb3\src\org\jpos\util\Validator.properties added as src
\org\jpos\util\Validator.properties doesn't exist.
[copy] eeweb3\test\org\jpos\util\ValidatorTestCase.java added as
test\org\jpos\util\ValidatorTestCase.java doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF\classes\edenlib-
config.properties added as webapps\jposee\WEB-INF\classes\edenlib-
config.properties doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF\classes\ehcache.xml added as
webapps\jposee\WEB-INF\classes\ehcache.xml doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF\classes\whirlycache.xml
added as webapps\jposee\WEB-INF\classes\whirlycache.xml doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF\jpublish.xml added as webapps
\jposee\WEB-INF\jpublish.xml doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF\velocity.properties added as
webapps\jposee\WEB-INF\velocity.properties doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF\web.xml added as webapps
\jposee\WEB-INF\web.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\404.xml added as webapps\jposee
\pages\404.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\500.xml added as webapps\jposee
\pages\500.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\ch\index.xml added as webapps
\jposee\pages\ch\index.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\ch\list.xml added as webapps
\jposee\pages\ch\list.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\ch\show.xml added as webapps
\jposee\pages\ch\show.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\default.xml added as webapps
\jposee\pages\default.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\error.xml added as webapps
\jposee\pages\error.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\extract\index.xml added as
webapps\jposee\pages\extract\index.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\index.xml added as webapps
\jposee\pages\index.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\login.xml added as webapps
\jposee\pages\login.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\logout.xml added as webapps
\jposee\pages\logout.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\stop.xml added as webapps
\jposee\pages\stop.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\add.xml added as webapps
\jposee\pages\store\add.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\delete.xml added as
webapps\jposee\pages\store\delete.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\edit.xml added as webapps
\jposee\pages\store\edit.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\index.xml added as
webapps\jposee\pages\store\index.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\list.xml added as webapps
\jposee\pages\store\list.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\show.xml added as webapps
\jposee\pages\store\show.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\termadd.xml added as
webapps\jposee\pages\store\termadd.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\termdelete.xml added as
webapps\jposee\pages\store\termdelete.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\termedit.xml added as
webapps\jposee\pages\store\termedit.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\store\termshow.xml added as
webapps\jposee\pages\store\termshow.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\cardtypeadd.xml added as
webapps\jposee\pages\sys\cardtypeadd.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\cardtypeedit.xml added as
webapps\jposee\pages\sys\cardtypeedit.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\cardtypeshow.xml added as
webapps\jposee\pages\sys\cardtypeshow.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\index.xml added as webapps
\jposee\pages\sys\index.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\routing.xml added as
webapps\jposee\pages\sys\routing.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\sysconfig.xml added as
webapps\jposee\pages\sys\sysconfig.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\syslog.xml added as webapps
\jposee\pages\sys\syslog.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\sys\syslogshow.xml added as
webapps\jposee\pages\sys\syslogshow.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\txn\index.xml added as webapps
\jposee\pages\txn\index.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\txn\list.xml added as webapps
\jposee\pages\txn\list.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\txn\show.xml added as webapps
\jposee\pages\txn\show.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\user\add.xml added as webapps
\jposee\pages\user\add.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\user\delete.xml added as
webapps\jposee\pages\user\delete.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\user\edit.xml added as webapps
\jposee\pages\user\edit.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\user\list.xml added as webapps
\jposee\pages\user\list.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\user\profile.xml added as
webapps\jposee\pages\user\profile.xml doesn't exist.
[copy] eeweb3\webapps\jposee\pages\user\show.xml added as webapps
\jposee\pages\user\show.xml doesn't exist.
[copy] hibernate3\build.xml added as build.xml doesn't exist.
[copy] hibernate3\cfg\log4j.properties added as cfg
\log4j.properties doesn't exist.
[copy] jetty6\cfg\contexts\jpos.xml added as cfg\contexts
\jpos.xml doesn't exist.
[copy] jetty6\cfg\contexts\jposee.xml added as cfg\contexts
\jposee.xml doesn't exist.
[copy] jetty6\cfg\contexts\root.xml added as cfg\contexts
\root.xml doesn't exist.
[copy] jetty6\cfg\jetty.xml added as cfg\jetty.xml doesn't exist.
[copy] jetty6\cfg\jetty.xml - Copy.sample added as cfg\jetty.xml
- Copy.sample doesn't exist.
[copy] jetty6\cfg\keystore.ks added as cfg\keystore.ks doesn't
exist.
[copy] jetty6\cfg\webdefault.xml added as cfg\webdefault.xml
doesn't exist.
[copy] jetty6\deploy\90_jetty.xml omitted as C:\Users\bruno
\Desktop\jposee\build\deploy\90_jetty.xml is up to date.
[copy] jetty6\src\org\jpos\q2\jetty\Jetty6.java added as src\org
\jpos\q2\jetty\Jetty6.java doesn't exist.
[copy] jetty6\src\org\jpos\q2\jetty\Jetty6MBean.java added as src
\org\jpos\q2\jetty\Jetty6MBean.java doesn't exist.
[copy] jpos\cfg\genericpackager.dtd added as cfg
\genericpackager.dtd doesn't exist.
[copy] serversimulator\cfg\serversimulator.bsh added as cfg
\serversimulator.bsh doesn't exist.
[copy] serversimulator\deploy\05_serversimulator.xml omitted as C:
\Users\bruno\Desktop\jposee\build\deploy\05_serversimulator.xml is up
to date.
[copy] splash\build.xml added as build.xml doesn't exist.
[copy] splash\deploy\10_splash.xml omitted as C:\Users\bruno
\Desktop\jposee\build\deploy\10_splash.xml is up to date.
[copy] status\deploy\02_status_heartbeat.xml omitted as C:\Users
\bruno\Desktop\jposee\build\deploy\02_status_heartbeat.xml is up to
date.
[copy] status\src\org\jpos\ee\status\ChannelMonitor.java added as
src\org\jpos\ee\status\ChannelMonitor.java doesn't exist.
[copy] status\src\org\jpos\ee\status\Heartbeat.java added as src
\org\jpos\ee\status\Heartbeat.java doesn't exist.
[copy] status\src\org\jpos\ee\status\Monitor.java added as src\org
\jpos\ee\status\Monitor.java doesn't exist.
[copy] status\src\org\jpos\ee\status\MonitorTask.java added as src
\org\jpos\ee\status\MonitorTask.java doesn't exist.
[copy] status\src\org\jpos\ee\status\Ping.java added as src\org
\jpos\ee\status\Ping.java doesn't exist.
[copy] status\src\org\jpos\ee\status\Status.hbm.xml added as src
\org\jpos\ee\status\Status.hbm.xml doesn't exist.
[copy] status\src\org\jpos\ee\status\Status.java added as src\org
\jpos\ee\status\Status.java doesn't exist.
[copy] status\src\org\jpos\ee\status\StatusBase.java added as src
\org\jpos\ee\status\StatusBase.java doesn't exist.
[copy] status\src\org\jpos\ee\status\StatusManager.java added as
src\org\jpos\ee\status\StatusManager.java doesn't exist.
[copy] status\src\org\jpos\ee\status\StatusTag.hbm.xml added as
src\org\jpos\ee\status\StatusTag.hbm.xml doesn't exist.
[copy] status\src\org\jpos\ee\status\StatusTag.java added as src
\org\jpos\ee\status\StatusTag.java doesn't exist.
[copy] status\src\org\jpos\ee\status\TwoWayMonitorTask.java added
as src\org\jpos\ee\status\TwoWayMonitorTask.java doesn't exist.
[copy] status_ui\cfg\menus\status.xml added as cfg\menus
\status.xml doesn't exist.
[copy] status_ui\src\org\jpos\ee\action\sys\Status.java added as
src\org\jpos\ee\action\sys\Status.java doesn't exist.
[copy] status_ui\src\org\jpos\ee\action\sys\StatusNode.java added
as src\org\jpos\ee\action\sys\StatusNode.java doesn't exist.
[copy] status_ui\src\org\jpos\ee\action\sys\StatusShow.java added
as src\org\jpos\ee\action\sys\StatusShow.java doesn't exist.
[copy] status_ui\src\org\jpos\ee\action\sys\StatusTree.java added
as src\org\jpos\ee\action\sys\StatusTree.java doesn't exist.
[copy] status_ui\webapps\jposee\pages\sys\status.xml added as
webapps\jposee\pages\sys\status.xml doesn't exist.
[copy] status_ui\webapps\jposee\pages\sys\statusNode.xml added as
webapps\jposee\pages\sys\statusNode.xml doesn't exist.
[copy] status_ui\webapps\jposee\pages\sys\statusshow.xml added as
webapps\jposee\pages\sys\statusshow.xml doesn't exist.
[copy] status_ui\webapps\jposee\pages\sys\statustree.xml added as
webapps\jposee\pages\sys\statustree.xml doesn't exist.
[copy] system\deploy\00_logger.xml omitted as C:\Users\bruno
\Desktop\jposee\build\deploy\00_logger.xml is up to date.
[copy] system\deploy\99_sysmon.xml omitted as C:\Users\bruno
\Desktop\jposee\build\deploy\99_sysmon.xml is up to date.
[copy] clientsimulator\cfg added as cfg is outdated.
[copy] commons\cfg added as cfg is outdated.
[copy] eecore3\cfg added as cfg is outdated.
[copy] eeweb3\cfg added as cfg is outdated.
[copy] eeweb3\cfg\contexts added as cfg\contexts doesn't exist.
[copy] eeweb3\cfg\menus added as cfg\menus doesn't exist.
[copy] hibernate3\cfg added as cfg is outdated.
[copy] hibernate3_mysql\cfg added as cfg is outdated.
[copy] jetty6\cfg added as cfg is outdated.
[copy] jetty6\cfg\contexts added as cfg\contexts doesn't exist.
[copy] jpos\cfg added as cfg is outdated.
[copy] serversimulator\cfg added as cfg is outdated.
[copy] status\cfg added as cfg is outdated.
[copy] status_ui\cfg added as cfg is outdated.
[copy] status_ui\cfg\menus added as cfg\menus doesn't exist.
[copy] Copying 155 files to C:\Users\bruno\Desktop\jposee\build
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\list.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\store\list.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\Visitor.java to C:\Users\bruno\Desktop\jposee
\build\src\org\jpos\ee\Visitor.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\src\org\jpos\ee\action\sys\StatusTree.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\action\sys\StatusTree.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\src\org\jpos\q2\jetty\Jetty6.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\q2\jetty\Jetty6.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\sys\SysLog.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\action\sys\SysLog.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\extract\index.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\extract\index.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\webdefault.xml to C:\Users\bruno\Desktop\jposee\build\cfg
\webdefault.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\ch\show.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\ch\show.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\delete.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\store\delete.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\WEB-INF\jpublish.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\WEB-INF\jpublish.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\logout.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\logout.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\ContextConstants.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\action\ContextConstants.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\cfg\contexts\jposee.xml to C:\Users\bruno\Desktop\jposee\build
\cfg\contexts\jposee.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysConfig.hbm.xml to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\SysConfig.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\Visitor.hbm.xml to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\Visitor.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\Cloneable.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\Cloneable.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\MonitorTask.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\status\MonitorTask.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\cfg\menus\main-menu.xml to C:\Users\bruno\Desktop\jposee\build
\cfg\menus\main-menu.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\src\org\jpos\ee\action\sys\StatusShow.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\action\sys\StatusShow.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\src\org\jpos\q2\jetty\Jetty6MBean.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\q2\jetty\Jetty6MBean.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\Menu.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\action\Menu.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\Status.java to C:\Users\bruno\Desktop\jposee
\build\src\org\jpos\ee\status\Status.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\ResultCodeInfo.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\ResultCodeInfo.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\pages\sys\statustree.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\sys\statustree.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\StatusManager.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\status\StatusManager.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\WEB-INF\classes\whirlycache.xml to C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\WEB-INF\classes
\whirlycache.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\VisitorBase.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\VisitorBase.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\termshow.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\store\termshow.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\jetty.xml - Copy.sample to C:\Users\bruno\Desktop\jposee
\build\cfg\jetty.xml - Copy.sample
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\LoggeableSysLogEvent.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\LoggeableSysLogEvent.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\splash
\build.xml to C:\Users\bruno\Desktop\jposee\build\build.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\StatusRevisionEntry.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\StatusRevisionEntry.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\contexts\jpos.xml to C:\Users\bruno\Desktop\jposee\build
\cfg\contexts\jpos.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\build.xml to C:\Users\bruno\Desktop\jposee\build\build.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysConfig.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\SysConfig.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\cfg\menus\status.xml to C:\Users\bruno\Desktop\jposee\build
\cfg\menus\status.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\util\Validator.properties to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\util\Validator.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\RevisionEntry.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\RevisionEntry.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\src\org\jpos\ee\action\sys\StatusNode.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\action\sys\StatusNode.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\util\V.java to C:\Users\bruno\Desktop\jposee\build
\src\org\jpos\util\V.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\cfg\echo_s to C:\Users\bruno\Desktop\jposee\build\cfg
\echo_s
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\user\delete.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\user\delete.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\cfg\echo_r to C:\Users\bruno\Desktop\jposee\build\cfg
\echo_r
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\WEB-INF\velocity.properties to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\WEB-INF\velocity.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\StatusBase.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\status\StatusBase.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\ResultCode.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\ResultCode.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\WEB-INF\classes\edenlib-config.properties to C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\WEB-INF\classes
\edenlib-config.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\VisitorBase.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\VisitorBase.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\StatusTag.hbm.xml to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\status\StatusTag.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\jpos
\cfg\genericpackager.dtd to C:\Users\bruno\Desktop\jposee\build\cfg
\genericpackager.dtd
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\show.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\store\show.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SystemDate.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\SystemDate.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\WEB-INF\classes\ehcache.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\WEB-INF\classes\ehcache.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\Close.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\action\Close.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\util\DiffEntry.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\util\DiffEntry.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\EEUtil.java to C:\Users\bruno\Desktop\jposee
\build\src\org\jpos\ee\EEUtil.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\Login.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\action\Login.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\index.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\sys\index.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\termedit.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\store\termedit.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\contexts\root.xml to C:\Users\bruno\Desktop\jposee\build
\cfg\contexts\root.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\util\DateUtil.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\util\DateUtil.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\StatusTag.java to C:\Users\bruno\Desktop\jposee
\build\src\org\jpos\ee\status\StatusTag.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\CheckAccess.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\action\CheckAccess.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\UserRevisionEntry.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\UserRevisionEntry.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\404.xml to C:\Users\bruno\Desktop\jposee
\build\webapps\jposee\pages\404.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\error.xml to C:\Users\bruno\Desktop\jposee
\build\webapps\jposee\pages\error.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\util\BeanDiff.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\util\BeanDiff.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\util\Validator.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\util\Validator.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\user\Update.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\action\user\Update.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\info\StartStop.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\info\StartStop.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\txn\list.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\txn\list.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\Ping.java to C:\Users\bruno\Desktop\jposee
\build\src\org\jpos\ee\status\Ping.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\UserManager.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\UserManager.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\Logout.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\action\Logout.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\Open.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\action\Open.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\default.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\default.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\test\org\jpos\util\ValidatorTestCase.java to C:\Users\bruno
\Desktop\jposee\build\test\org\jpos\util\ValidatorTestCase.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\edit.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\store\edit.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\K.java to C:\Users\bruno\Desktop\jposee\build
\src\org\jpos\ee\K.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\stop.xml to C:\Users\bruno\Desktop\jposee
\build\webapps\jposee\pages\stop.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysLogEvent.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\SysLogEvent.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\user\list.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\user\list.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\pages\sys\statusNode.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\sys\statusNode.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\syslogshow.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\sys\syslogshow.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\500.xml to C:\Users\bruno\Desktop\jposee
\build\webapps\jposee\pages\500.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\ResultCodeFinder.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\ResultCodeFinder.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\menu\MenuMap.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\menu\MenuMap.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\Visitor.java to C:\Users\bruno\Desktop\jposee
\build\src\org\jpos\ee\Visitor.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\ResultCode.hbm.xml to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\ResultCode.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\pages\sys\statusshow.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\sys\statusshow.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\index.xml to C:\Users\bruno\Desktop\jposee
\build\webapps\jposee\pages\index.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\ActionSupport.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\action\ActionSupport.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\RevisionManager.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\RevisionManager.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\commons
\cfg\log4j.properties to C:\Users\bruno\Desktop\jposee\build\cfg
\log4j.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\sys\SysLogShow.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\action\sys\SysLogShow.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\login.xml to C:\Users\bruno\Desktop\jposee
\build\webapps\jposee\pages\login.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysLogEvent.hbm.xml to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\SysLogEvent.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\sys\SysConfig.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\action\sys\SysConfig.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\index.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\store\index.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\termdelete.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\store\termdelete.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\pages\sys\status.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\sys\status.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\VisitorManager.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\VisitorManager.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\cardtypeshow.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\sys\cardtypeshow.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\Permission.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\Permission.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\user\show.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\user\show.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\txn\show.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\txn\show.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\Status.hbm.xml to C:\Users\bruno\Desktop\jposee
\build\src\org\jpos\ee\status\Status.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\Heartbeat.java to C:\Users\bruno\Desktop\jposee
\build\src\org\jpos\ee\status\Heartbeat.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\menu\MenuNode.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\menu\MenuNode.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\User.hbm.xml to C:\Users\bruno\Desktop\jposee
\build\src\org\jpos\ee\User.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\src\org\jpos\simulator\TestCase.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\simulator\TestCase.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\DB.java to C:\Users\bruno\Desktop\jposee\build
\src\org\jpos\ee\DB.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\termadd.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\store\termadd.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\user\add.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\user\add.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\jetty.xml to C:\Users\bruno\Desktop\jposee\build\cfg
\jetty.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\ResultCodeInfoFinder.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\ResultCodeInfoFinder.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysConfigManager.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\SysConfigManager.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\contexts\jposee.xml to C:\Users\bruno\Desktop\jposee\build
\cfg\contexts\jposee.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\cardtypeadd.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\sys\cardtypeadd.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\ch\list.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\ch\list.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\serversimulator\cfg\serversimulator.bsh to C:\Users\bruno\Desktop
\jposee\build\cfg\serversimulator.bsh
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\user\Delete.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\action\user\Delete.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\hibernate3\cfg\log4j.properties to C:\Users\bruno\Desktop\jposee\build
\cfg\log4j.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\user\Show.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\action\user\Show.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\TwoWayMonitorTask.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\status\TwoWayMonitorTask.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\Visitor.hbm.xml to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\Visitor.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysLog.java to C:\Users\bruno\Desktop\jposee
\build\src\org\jpos\ee\SysLog.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\clientsimulator\src\org\jpos\simulator\TestRunner.java to C:\Users
\bruno\Desktop\jposee\build\src\org\jpos\simulator\TestRunner.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\cfg\menus\nologged-menu.xml to C:\Users\bruno\Desktop\jposee
\build\cfg\menus\nologged-menu.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\User.java to C:\Users\bruno\Desktop\jposee
\build\src\org\jpos\ee\User.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\cardtypeedit.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\sys\cardtypeedit.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\Monitor.java to C:\Users\bruno\Desktop\jposee
\build\src\org\jpos\ee\status\Monitor.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\txn\index.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\txn\index.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\src\org\jpos\ee\action\sys\Status.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\action\sys\Status.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\user\edit.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\user\edit.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\Error.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\action\Error.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\sysconfig.xml to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\sys\sysconfig.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\routing.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\sys\routing.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\user\List.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\action\user\List.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\ch\index.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\ch\index.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\build.xml to C:\Users\bruno\Desktop\jposee\build\build.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\VisitorManager.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\VisitorManager.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\user\profile.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\user\profile.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\RevisionEntry.hbm.xml to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\RevisionEntry.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\SysLogEventBase.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\SysLogEventBase.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\sys\syslog.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\sys\syslog.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\ResultCodeManager.java to C:\Users\bruno
\Desktop\jposee\build\src\org\jpos\ee\ResultCodeManager.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\WEB-INF\web.xml to C:\Users\bruno\Desktop\jposee
\build\webapps\jposee\WEB-INF\web.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eecore3\src\org\jpos\ee\BLException.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\BLException.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\user\Add.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\action\user\Add.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules\status
\src\org\jpos\ee\status\ChannelMonitor.java to C:\Users\bruno\Desktop
\jposee\build\src\org\jpos\ee\status\ChannelMonitor.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\cfg\menus\README to C:\Users\bruno\Desktop\jposee\build\cfg
\menus\README
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\src\org\jpos\ee\action\user\UpdateProfile.java to C:\Users
\bruno\Desktop\jposee\build\src\org\jpos\ee\action\user
\UpdateProfile.java
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\jetty6\cfg\keystore.ks to C:\Users\bruno\Desktop\jposee\build\cfg
\keystore.ks
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\pages\store\add.xml to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\pages\store\add.xml
[copy] eeweb3\webapps\jposee\WEB-INF\classes\VM_global_library.vm
added as jposee\WEB-INF\classes\VM_global_library.vm doesn't exist.
[copy] eeweb3\webapps\jposee\WEB-INF\classes\edenlib-
config.properties omitted as C:\Users\bruno\Desktop\jposee\build
\webapps\jposee\WEB-INF\classes\edenlib-config.properties is up to
date.
[copy] eeweb3\webapps\jposee\WEB-INF\classes\ehcache.xml omitted
as C:\Users\bruno\Desktop\jposee\build\webapps\jposee\WEB-INF\classes
\ehcache.xml is up to date.
[copy] eeweb3\webapps\jposee\WEB-INF\classes\whirlycache.xml
omitted as C:\Users\bruno\Desktop\jposee\build\webapps\jposee\WEB-INF
\classes\whirlycache.xml is up to date.
[copy] eeweb3\webapps\jposee\WEB-INF\jpublish.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\WEB-INF\jpublish.xml
is up to date.
[copy] eeweb3\webapps\jposee\WEB-INF\velocity.properties omitted
as C:\Users\bruno\Desktop\jposee\build\webapps\jposee\WEB-INF
\velocity.properties is up to date.
[copy] eeweb3\webapps\jposee\WEB-INF\web.xml omitted as C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\WEB-INF\web.xml is up to
date.
[copy] eeweb3\webapps\jposee\content\404.html added as jposee
\content\404.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\500.html added as jposee
\content\500.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\error.html added as jposee
\content\error.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\extract\index.head added as
jposee\content\extract\index.head doesn't exist.
[copy] eeweb3\webapps\jposee\content\extract\index.html added as
jposee\content\extract\index.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\inc\macros.html added as
jposee\content\inc\macros.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\inc\pagination.html added as
jposee\content\inc\pagination.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\inc\topbar.html added as
jposee\content\inc\topbar.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\index.html added as jposee
\content\index.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\login.html added as jposee
\content\login.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\logout.html added as jposee
\content\logout.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\navigation\menu-head.html
added as jposee\content\navigation\menu-head.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\navigation\menu-macro.html
added as jposee\content\navigation\menu-macro.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\navigation\menu.html added
as jposee\content\navigation\menu.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\navigation\tabs.html added
as jposee\content\navigation\tabs.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\stop.html added as jposee
\content\stop.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\cardtypeadd.html added
as jposee\content\sys\cardtypeadd.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\cardtypeedit.html added
as jposee\content\sys\cardtypeedit.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\cardtypeshow.html added
as jposee\content\sys\cardtypeshow.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\hnav.html added as jposee
\content\sys\hnav.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\index.html added as
jposee\content\sys\index.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\routing.html added as
jposee\content\sys\routing.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\searchbar.html added as
jposee\content\sys\searchbar.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\sysconfig.html added as
jposee\content\sys\sysconfig.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\syslog.html added as
jposee\content\sys\syslog.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys\syslogshow.html added as
jposee\content\sys\syslogshow.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\user\add.html added as jposee
\content\user\add.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\user\delete.html added as
jposee\content\user\delete.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\user\edit.html added as
jposee\content\user\edit.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\user\hnav.html added as
jposee\content\user\hnav.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\user\list.html added as
jposee\content\user\list.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\user\profile.html added as
jposee\content\user\profile.html doesn't exist.
[copy] eeweb3\webapps\jposee\content\user\show.html added as
jposee\content\user\show.html doesn't exist.
[copy] eeweb3\webapps\jposee\index.html added as jposee
\index.html doesn't exist.
[copy] eeweb3\webapps\jposee\pages\404.xml omitted as C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\pages\404.xml is up to
date.
[copy] eeweb3\webapps\jposee\pages\500.xml omitted as C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\pages\500.xml is up to
date.
[copy] eeweb3\webapps\jposee\pages\ch\index.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\ch\index.xml is
up to date.
[copy] eeweb3\webapps\jposee\pages\ch\list.xml omitted as C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\pages\ch\list.xml is up to
date.
[copy] eeweb3\webapps\jposee\pages\ch\show.xml omitted as C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\pages\ch\show.xml is up to
date.
[copy] eeweb3\webapps\jposee\pages\default.xml omitted as C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\pages\default.xml is up to
date.
[copy] eeweb3\webapps\jposee\pages\error.xml omitted as C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\pages\error.xml is up to
date.
[copy] eeweb3\webapps\jposee\pages\extract\index.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\extract
\index.xml is up to date.
[copy] eeweb3\webapps\jposee\pages\index.xml omitted as C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\pages\index.xml is up to
date.
[copy] eeweb3\webapps\jposee\pages\login.xml omitted as C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\pages\login.xml is up to
date.
[copy] eeweb3\webapps\jposee\pages\logout.xml omitted as C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\pages\logout.xml is up to
date.
[copy] eeweb3\webapps\jposee\pages\stop.xml omitted as C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\pages\stop.xml is up to
date.
[copy] eeweb3\webapps\jposee\pages\store\add.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\store\add.xml
is up to date.
[copy] eeweb3\webapps\jposee\pages\store\delete.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\store
\delete.xml is up to date.
[copy] eeweb3\webapps\jposee\pages\store\edit.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\store\edit.xml
is up to date.
[copy] eeweb3\webapps\jposee\pages\store\index.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\store\index.xml
is up to date.
[copy] eeweb3\webapps\jposee\pages\store\list.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\store\list.xml
is up to date.
[copy] eeweb3\webapps\jposee\pages\store\show.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\store\show.xml
is up to date.
[copy] eeweb3\webapps\jposee\pages\store\termadd.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\store
\termadd.xml is up to date.
[copy] eeweb3\webapps\jposee\pages\store\termdelete.xml omitted
as C:\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\store
\termdelete.xml is up to date.
[copy] eeweb3\webapps\jposee\pages\store\termedit.xml omitted as
C:\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\store
\termedit.xml is up to date.
[copy] eeweb3\webapps\jposee\pages\store\termshow.xml omitted as
C:\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\store
\termshow.xml is up to date.
[copy] eeweb3\webapps\jposee\pages\sys\cardtypeadd.xml omitted as
C:\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\sys
\cardtypeadd.xml is up to date.
[copy] eeweb3\webapps\jposee\pages\sys\cardtypeedit.xml omitted
as C:\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\sys
\cardtypeedit.xml is up to date.
[copy] eeweb3\webapps\jposee\pages\sys\cardtypeshow.xml omitted
as C:\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\sys
\cardtypeshow.xml is up to date.
[copy] eeweb3\webapps\jposee\pages\sys\index.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\sys\index.xml
is up to date.
[copy] eeweb3\webapps\jposee\pages\sys\routing.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\sys\routing.xml
is up to date.
[copy] eeweb3\webapps\jposee\pages\sys\sysconfig.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\sys
\sysconfig.xml is up to date.
[copy] eeweb3\webapps\jposee\pages\sys\syslog.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\sys\syslog.xml
is up to date.
[copy] eeweb3\webapps\jposee\pages\sys\syslogshow.xml omitted as
C:\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\sys
\syslogshow.xml is up to date.
[copy] eeweb3\webapps\jposee\pages\txn\index.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\txn\index.xml
is up to date.
[copy] eeweb3\webapps\jposee\pages\txn\list.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\txn\list.xml is
up to date.
[copy] eeweb3\webapps\jposee\pages\txn\show.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\txn\show.xml is
up to date.
[copy] eeweb3\webapps\jposee\pages\user\add.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\user\add.xml is
up to date.
[copy] eeweb3\webapps\jposee\pages\user\delete.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\user\delete.xml
is up to date.
[copy] eeweb3\webapps\jposee\pages\user\edit.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\user\edit.xml
is up to date.
[copy] eeweb3\webapps\jposee\pages\user\list.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\user\list.xml
is up to date.
[copy] eeweb3\webapps\jposee\pages\user\profile.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\user
\profile.xml is up to date.
[copy] eeweb3\webapps\jposee\pages\user\show.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\user\show.xml
is up to date.
[copy] eeweb3\webapps\jposee\static\css\context-menu.css added as
jposee\static\css\context-menu.css doesn't exist.
[copy] eeweb3\webapps\jposee\static\css\cssmenu.css added as
jposee\static\css\cssmenu.css doesn't exist.
[copy] eeweb3\webapps\jposee\static\css\folder-tree-static.css
added as jposee\static\css\folder-tree-static.css doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\add_item.gif added as
jposee\static\images\add_item.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\alert.gif added as
jposee\static\images\alert.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\asc.gif added as jposee
\static\images\asc.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\comment.gif added as
jposee\static\images\comment.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\critical.gif added as
jposee\static\images\critical.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\desc.gif added as
jposee\static\images\desc.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images
\dhtmlgoodies_folder.gif added as jposee\static\images
\dhtmlgoodies_folder.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\dhtmlgoodies_minus.gif
added as jposee\static\images\dhtmlgoodies_minus.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\dhtmlgoodies_plus.gif
added as jposee\static\images\dhtmlgoodies_plus.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\dhtmlgoodies_sheet.gif
added as jposee\static\images\dhtmlgoodies_sheet.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\go.gif added as jposee
\static\images\go.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\gradient.gif added as
jposee\static\images\gradient.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\green.gif added as
jposee\static\images\green.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\jpos_bg.jpg added as
jposee\static\images\jpos_bg.jpg doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\jpos_l.jpg added as
jposee\static\images\jpos_l.jpg doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\jpos_s.jpg added as
jposee\static\images\jpos_s.jpg doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\jpos_t.jpg added as
jposee\static\images\jpos_t.jpg doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\menu_bg.gif added as
jposee\static\images\menu_bg.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\no_photo.gif added as
jposee\static\images\no_photo.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\off.gif added as jposee
\static\images\off.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\oops.jpg added as
jposee\static\images\oops.jpg doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\police_stop.gif added
as jposee\static\images\police_stop.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\red.gif added as jposee
\static\images\red.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\remove_item.gif added
as jposee\static\images\remove_item.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\search_button.gif
added as jposee\static\images\search_button.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\tbg.gif added as jposee
\static\images\tbg.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\tl.gif added as jposee
\static\images\tl.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\tr.gif added as jposee
\static\images\tr.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\tree_green.gif added
as jposee\static\images\tree_green.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\tree_red.gif added as
jposee\static\images\tree_red.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\tree_yellow.gif added
as jposee\static\images\tree_yellow.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\update_item.gif added
as jposee\static\images\update_item.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\xml.gif added as jposee
\static\images\xml.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\images\yellow.gif added as
jposee\static\images\yellow.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\ajax.js added as jposee
\static\js\ajax.js doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\calendar.html added as
jposee\static\js\calendar.html doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\calendar.js added as jposee
\static\js\calendar.js doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\context-menu.js added as
jposee\static\js\context-menu.js doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\cookies.js added as jposee
\static\js\cookies.js doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\folder-tree-static.js
added as jposee\static\js\folder-tree-static.js doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\cal.gif added as jposee
\static\js\img\cal.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\logo.gif added as
jposee\static\js\img\logo.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\next.gif added as
jposee\static\js\img\next.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\next_year.gif added as
jposee\static\js\img\next_year.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\pixel.gif added as
jposee\static\js\img\pixel.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\prev.gif added as
jposee\static\js\img\prev.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\prev_year.gif added as
jposee\static\js\img\prev_year.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img\tc.gif added as jposee
\static\js\img\tc.gif doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\md5.js added as jposee
\static\js\md5.js doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\prototype.js added as
jposee\static\js\prototype.js doesn't exist.
[copy] eeweb3\webapps\jposee\static\style.css added as jposee
\static\style.css doesn't exist.
[copy] eeweb3\webapps\jposee\templates\basic.html added as jposee
\templates\basic.html doesn't exist.
[copy] eeweb3\webapps\jposee\templates\basic.x added as jposee
\templates\basic.x doesn't exist.
[copy] eeweb3\webapps\root\index.html added as root\index.html
doesn't exist.
[copy] status_ui\webapps\jposee\content\sys\status.html added as
jposee\content\sys\status.html doesn't exist.
[copy] status_ui\webapps\jposee\content\sys\statusNode.x added as
jposee\content\sys\statusNode.x doesn't exist.
[copy] status_ui\webapps\jposee\content\sys\statusshow.html added
as jposee\content\sys\statusshow.html doesn't exist.
[copy] status_ui\webapps\jposee\content\sys\statustree.head added
as jposee\content\sys\statustree.head doesn't exist.
[copy] status_ui\webapps\jposee\content\sys\statustree.html added
as jposee\content\sys\statustree.html doesn't exist.
[copy] status_ui\webapps\jposee\pages\sys\status.xml omitted as C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\sys\status.xml
is up to date.
[copy] status_ui\webapps\jposee\pages\sys\statusNode.xml omitted
as C:\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\sys
\statusNode.xml is up to date.
[copy] status_ui\webapps\jposee\pages\sys\statusshow.xml omitted
as C:\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\sys
\statusshow.xml is up to date.
[copy] status_ui\webapps\jposee\pages\sys\statustree.xml omitted
as C:\Users\bruno\Desktop\jposee\build\webapps\jposee\pages\sys
\statustree.xml is up to date.
[copy] status_ui\webapps\jposee\static\js\status-tree.js added as
jposee\static\js\status-tree.js doesn't exist.
[copy] C:\Users\bruno\Desktop\jposee\build\modules\eeweb3\webapps
skipped - don't know how to handle it
[copy] eeweb3\webapps\jposee omitted as C:\Users\bruno\Desktop
\jposee\build\webapps\jposee is up to date.
[copy] eeweb3\webapps\jposee\WEB-INF omitted as C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\WEB-INF is up to date.
[copy] eeweb3\webapps\jposee\WEB-INF\classes omitted as C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\WEB-INF\classes is up to
date.
[copy] eeweb3\webapps\jposee\content added as jposee\content
doesn't exist.
[copy] eeweb3\webapps\jposee\content\extract added as jposee
\content\extract doesn't exist.
[copy] eeweb3\webapps\jposee\content\inc added as jposee\content
\inc doesn't exist.
[copy] eeweb3\webapps\jposee\content\navigation added as jposee
\content\navigation doesn't exist.
[copy] eeweb3\webapps\jposee\content\sys added as jposee\content
\sys doesn't exist.
[copy] eeweb3\webapps\jposee\content\user added as jposee\content
\user doesn't exist.
[copy] eeweb3\webapps\jposee\pages omitted as C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages is up to date.
[copy] eeweb3\webapps\jposee\pages\ch omitted as C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\ch is up to date.
[copy] eeweb3\webapps\jposee\pages\extract omitted as C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\pages\extract is up to
date.
[copy] eeweb3\webapps\jposee\pages\store omitted as C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\store is up to date.
[copy] eeweb3\webapps\jposee\pages\sys omitted as C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\sys is up to date.
[copy] eeweb3\webapps\jposee\pages\txn omitted as C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\txn is up to date.
[copy] eeweb3\webapps\jposee\pages\user omitted as C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages\user is up to date.
[copy] eeweb3\webapps\jposee\static added as jposee\static
doesn't exist.
[copy] eeweb3\webapps\jposee\static\css added as jposee\static
\css doesn't exist.
[copy] eeweb3\webapps\jposee\static\images added as jposee\static
\images doesn't exist.
[copy] eeweb3\webapps\jposee\static\js added as jposee\static\js
doesn't exist.
[copy] eeweb3\webapps\jposee\static\js\img added as jposee\static
\js\img doesn't exist.
[copy] eeweb3\webapps\jposee\templates added as jposee\templates
doesn't exist.
[copy] eeweb3\webapps\root added as root is outdated.
[copy] C:\Users\bruno\Desktop\jposee\build\modules\status_ui
\webapps skipped - don't know how to handle it
[copy] status_ui\webapps\jposee omitted as C:\Users\bruno\Desktop
\jposee\build\webapps\jposee is up to date.
[copy] status_ui\webapps\jposee\content added as jposee\content
doesn't exist.
[copy] status_ui\webapps\jposee\content\sys added as jposee
\content\sys doesn't exist.
[copy] status_ui\webapps\jposee\pages omitted as C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\pages is up to date.
[copy] status_ui\webapps\jposee\pages\sys omitted as C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\pages\sys is up to date.
[copy] status_ui\webapps\jposee\static added as jposee\static
doesn't exist.
[copy] status_ui\webapps\jposee\static\js added as jposee\static
\js doesn't exist.
[copy] Copying 98 files to C:\Users\bruno\Desktop\jposee\build
\webapps
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\index.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\content\sys\index.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\gradient.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\gradient.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\navigation\tabs.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\navigation\tabs.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\md5.js to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\js\md5.js
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\remove_item.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\remove_item.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\prototype.js to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\js\prototype.js
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\tree_green.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\tree_green.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\tr.gif to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\images\tr.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\syslog.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\sys\syslog.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\user\profile.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\user\profile.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\cookies.js to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\js\cookies.js
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\cardtypeedit.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\sys\cardtypeedit.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\login.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\content\login.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\comment.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\comment.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\calendar.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\js\calendar.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\xml.gif to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\images\xml.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\dhtmlgoodies_plus.gif to C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\static\images
\dhtmlgoodies_plus.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\static\js\status-tree.js to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\js\status-tree.js
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\user\edit.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\content\user\edit.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\navigation\menu-macro.html to C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\content\navigation\menu-
macro.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\jpos_s.jpg to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\jpos_s.jpg
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\calendar.js to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\js\calendar.js
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\templates\basic.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\templates\basic.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\next.gif to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\js\img\next.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\tl.gif to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\images\tl.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\alert.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\alert.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\content\sys\status.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\sys\status.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\logout.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\content\logout.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\dhtmlgoodies_folder.gif to C:
\Users\bruno\Desktop\jposee\build\webapps\jposee\static\images
\dhtmlgoodies_folder.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\dhtmlgoodies_sheet.gif to C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\static\images
\dhtmlgoodies_sheet.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\ajax.js to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\js\ajax.js
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\extract\index.head to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\extract\index.head
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\inc\pagination.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\inc\pagination.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\desc.gif to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\images\desc.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\tree_red.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\tree_red.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\user\add.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\content\user\add.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\content\sys\statusshow.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\sys\statusshow.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\prev_year.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\js\img\prev_year.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\red.gif to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\images\red.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\searchbar.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\sys\searchbar.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\css\cssmenu.css to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\css\cssmenu.css
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\prev.gif to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\js\img\prev.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\inc\macros.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\inc\macros.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\cal.gif to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\js\img\cal.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\css\context-menu.css to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\css\context-menu.css
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\content\sys\statustree.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\sys\statustree.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\inc\topbar.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\inc\topbar.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\jpos_l.jpg to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\jpos_l.jpg
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\css\folder-tree-static.css to C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\static\css\folder-tree-
static.css
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\stop.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\content\stop.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\jpos_bg.jpg to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\jpos_bg.jpg
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\root\index.html to C:\Users\bruno\Desktop\jposee\build
\webapps\root\index.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\error.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\content\error.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\WEB-INF\classes\VM_global_library.vm to C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\WEB-INF\classes
\VM_global_library.vm
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\police_stop.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\police_stop.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\menu_bg.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\menu_bg.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\go.gif to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\images\go.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\add_item.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\add_item.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\context-menu.js to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\js\context-menu.js
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\500.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\content\500.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\off.gif to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\images\off.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\routing.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\sys\routing.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\critical.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\critical.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\pixel.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\js\img\pixel.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\templates\basic.x to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\templates\basic.x
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\navigation\menu-head.html to C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\content\navigation\menu-
head.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\yellow.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\yellow.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\cardtypeadd.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\sys\cardtypeadd.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\index.html to C:\Users\bruno\Desktop\jposee
\build\webapps\jposee\index.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\no_photo.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\no_photo.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\content\sys\statusNode.x to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\sys\statusNode.x
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\user\delete.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\user\delete.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\logo.gif to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\js\img\logo.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\navigation\menu.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\navigation\menu.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\asc.gif to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\images\asc.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\update_item.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\update_item.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\404.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\content\404.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\extract\index.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\extract\index.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\syslogshow.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\sys\syslogshow.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\user\hnav.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\content\user\hnav.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\green.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\green.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\user\list.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\content\user\list.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\style.css to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\style.css
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\cardtypeshow.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\sys\cardtypeshow.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\tree_yellow.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\tree_yellow.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\hnav.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\content\sys\hnav.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\status_ui\webapps\jposee\content\sys\statustree.head to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\sys\statustree.head
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\search_button.gif to C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\static\images
\search_button.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\tc.gif to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\js\img\tc.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\index.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\content\index.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\folder-tree-static.js to C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\static\js\folder-tree-
static.js
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\oops.jpg to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\images\oops.jpg
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\js\img\next_year.gif to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\js\img\next_year.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\tbg.gif to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\static\images\tbg.gif
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\user\show.html to C:\Users\bruno\Desktop
\jposee\build\webapps\jposee\content\user\show.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\content\sys\sysconfig.html to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\content\sys\sysconfig.html
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\jpos_t.jpg to C:\Users\bruno
\Desktop\jposee\build\webapps\jposee\static\images\jpos_t.jpg
[copy] Copying C:\Users\bruno\Desktop\jposee\build\modules
\eeweb3\webapps\jposee\static\images\dhtmlgoodies_minus.gif to C:\Users
\bruno\Desktop\jposee\build\webapps\jposee\static\images
\dhtmlgoodies_minus.gif
Project base dir set to: C:\Users\bruno\Desktop\jposee
[antcall] calling target(s) [support] in build file C:\Users\bruno
\Desktop\jposee\build.xml
parsing buildfile C:\Users\bruno\Desktop\jposee\build.xml with URI =
file:/C:/Users/bruno/Desktop/jposee/build.xml
Project base dir set to: C:\Users\bruno\Desktop\jposee
[property] Loading C:\Users\bruno\.ant.properties
[property] Unable to find property file: C:\Users\bruno
\.ant.properties
[property] Loading C:\Users\bruno\Desktop\jposee\custom.properties
[property] Unable to find property file: C:\Users\bruno\Desktop\jposee
\custom.properties
[property] Loading C:\Users\bruno\Desktop\jposee\build.properties
Override ignored for property "Name"
Override ignored for property "build.cfg"
Override ignored for property "modules.dir"
Override ignored for property "name"
Override ignored for property "target"
Override ignored for property "modules.include.list"
Override ignored for property "dist.dir"
Override ignored for property "modules.ignore.list"
Override ignored for property "build.dir"
Override ignored for property "version"
Override ignored for property "archive"
Override ignored for property "bin.dir"
Override ignored for property "build.src"
Override ignored for property "build.doc"
Override ignored for property "build.lib"
Override ignored for property "build.bin"
Override ignored for property "build.test"
Override ignored for property "build.modules"
Override ignored for property "build.webapps"
Override ignored for property "build.deploy"
Override ignored for property "build.deploy.lib"
Override ignored for property "build.log"
Override ignored for property "build.javadoc"
Override ignored for property "modules.ignore.list"
Override ignored for property "classes.dir"
Override ignored for property "test-classes.dir"
Override ignored for property "deprecation"
Override ignored for property "nowarn"
Override ignored for property "debug"
Build sequence for target(s) `support' is [prepare, support]
Complete build sequence is [prepare, support, modules, copy-bin,
manifest, main, unjar, jar, singlejar, modules-dist, compile, javadoc,
stress, srcjar, run, setup, tgz, clean, test, info, zip, , doc]
[antcall] Entering C:\Users\bruno\Desktop\jposee\build.xml...
Build sequence for target(s) `support' is [prepare, support]
Complete build sequence is [prepare, support, modules, copy-bin,
manifest, main, unjar, jar, singlejar, modules-dist, compile, javadoc,
stress, srcjar, run, setup, tgz, clean, test, info, zip, , doc]
prepare:
Override ignored for property "subversion"
Override ignored for property "DSTAMP"
Override ignored for property "TSTAMP"
Override ignored for property "TODAY"
[echo] Build jPOS-EE-1.6.7.2010.02.04.02.14.58
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\bin because it
already exists.
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\build because it
already exists.
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\build\src because
it already exists.
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\build\lib because
it already exists.
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\build\bin because
it already exists.
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\build\doc because
it already exists.
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\build\cfg because
it already exists.
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\build\modules
because it already exists.
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\build\deploy
because it already exists.
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\build\deploy\lib
because it already exists.
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\build\webapps\root
because it already exists.
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\build\classes
because it already exists.
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\dist because it
already exists.
[mkdir] Skipping C:\Users\bruno\Desktop\jposee\build\log because
it already exists.
support:
[filter] Reading filters from C:\Users\bruno\Desktop\jposee
\devel.properties
Reading filters from C:\Users\bruno\Desktop\jposee\devel.properties
[copy] Copying 10 files to C:\Users\bruno\Desktop\jposee\build
\classes
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\Visitor.hbm.xml to C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\Visitor.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\ResultCode.hbm.xml to C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\ResultCode.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\User.hbm.xml to C:\Users\bruno\Desktop\jposee\build\classes\org\jpos
\ee\User.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\SysConfig.hbm.xml to C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\SysConfig.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\status\StatusTag.hbm.xml to C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\ee\status\StatusTag.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\status\Status.hbm.xml to C:\Users\bruno\Desktop\jposee\build\classes
\org\jpos\ee\status\Status.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\RevisionEntry.hbm.xml to C:\Users\bruno\Desktop\jposee\build\classes
\org\jpos\ee\RevisionEntry.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\util\Validator.properties to C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\util\Validator.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\build\cfg
\log4j.properties to C:\Users\bruno\Desktop\jposee\build\classes
\log4j.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\SysLogEvent.hbm.xml to C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\SysLogEvent.hbm.xml
[antcall] Exiting C:\Users\bruno\Desktop\jposee\build.xml.
Detected Java version: 1.6 in: C:\Program Files\Java\jdk1.6.0_18\jre
Detected OS: Windows 7
[subant] calling target(s) [prepare] in build file C:\Users\bruno
\Desktop\jposee\modules\eecore3\build.xml
parsing buildfile C:\Users\bruno\Desktop\jposee\modules
\eecore3\build.xml with URI = file:/C:/Users/bruno/Desktop/jposee/
modules/eecore3/build.xml
Project base dir set to: C:\Users\bruno\Desktop\jposee
[property] Loading C:\Users\bruno\Desktop\jposee\build.properties
Override ignored for property "dist.dir"
Override ignored for property "build.dir"
Override ignored for property "modules.dir"
Override ignored for property "build.cfg"
[subant] Entering C:\Users\bruno\Desktop\jposee\modules
\eecore3\build.xml...
Build sequence for target(s) `prepare' is [prepare]
Complete build sequence is [prepare, ]
prepare:
[filter] Reading filters from C:\Users\bruno\Desktop\jposee
\devel.properties
Reading filters from C:\Users\bruno\Desktop\jposee\devel.properties
[copy] Copying 1 file to C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\ee
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\Constants.tmp to C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\Constants.java
Replacing: @version@ -> devel-$Rev: 87 $
[delete] Deleting: C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\Constants.tmp
[copy] Copying 1 file to C:\Users\bruno\Desktop\jposee\build\src
\org\jpos\ee
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\Constants.tmp to C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\Constants.properties
Replacing: @version@ -> devel-$Rev: 87 $
[delete] Deleting: C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\ee\Constants.tmp
[subant] Exiting C:\Users\bruno\Desktop\jposee\modules
\eecore3\build.xml.
Detected Java version: 1.6 in: C:\Program Files\Java\jdk1.6.0_18\jre
Detected OS: Windows 7
[subant] calling target(s) [prepare] in build file C:\Users\bruno
\Desktop\jposee\modules\hibernate3\build.xml
parsing buildfile C:\Users\bruno\Desktop\jposee\modules
\hibernate3\build.xml with URI = file:/C:/Users/bruno/Desktop/jposee/
modules/hibernate3/build.xml
Project base dir set to: C:\Users\bruno\Desktop\jposee
[property] Loading C:\Users\bruno\Desktop\jposee\build.properties
[subant] Entering C:\Users\bruno\Desktop\jposee\modules
\hibernate3\build.xml...
Build sequence for target(s) `prepare' is [prepare]
Complete build sequence is [prepare, config, ]
prepare:
[available] Found: build\modules\hibernate3_mysql\cfg
\_hibernate.cfg.properties
[subant] Exiting C:\Users\bruno\Desktop\jposee\modules
\hibernate3\build.xml.
Detected Java version: 1.6 in: C:\Program Files\Java\jdk1.6.0_18\jre
Detected OS: Windows 7
[subant] calling target(s) [prepare] in build file C:\Users\bruno
\Desktop\jposee\modules\splash\build.xml
parsing buildfile C:\Users\bruno\Desktop\jposee\modules\splash
\build.xml with URI = file:/C:/Users/bruno/Desktop/jposee/modules/
splash/build.xml
Project base dir set to: C:\Users\bruno\Desktop\jposee
[property] Loading C:\Users\bruno\Desktop\jposee\build.properties
Override ignored for property "dist.dir"
Override ignored for property "modules.dir"
[subant] Entering C:\Users\bruno\Desktop\jposee\modules\splash
\build.xml...
Build sequence for target(s) `prepare' is [prepare]
Complete build sequence is [prepare, setup, dist, ]
prepare:
[subant] Exiting C:\Users\bruno\Desktop\jposee\modules\splash
\build.xml.
Detected Java version: 1.6 in: C:\Program Files\Java\jdk1.6.0_18\jre
Detected OS: Windows 7
[subant] calling target(s) [default] in build file C:\Users\bruno
\Desktop\jposee\modules\eecore3\build.xml
parsing buildfile C:\Users\bruno\Desktop\jposee\modules
\eecore3\build.xml with URI = file:/C:/Users/bruno/Desktop/jposee/
modules/eecore3/build.xml
Project base dir set to: C:\Users\bruno\Desktop\jposee
[property] Loading C:\Users\bruno\Desktop\jposee\build.properties
Override ignored for property "dist.dir"
Override ignored for property "build.dir"
Override ignored for property "modules.dir"
Override ignored for property "build.cfg"
Detected Java version: 1.6 in: C:\Program Files\Java\jdk1.6.0_18\jre
Detected OS: Windows 7
[subant] calling target(s) [default] in build file C:\Users\bruno
\Desktop\jposee\modules\hibernate3\build.xml
parsing buildfile C:\Users\bruno\Desktop\jposee\modules
\hibernate3\build.xml with URI = file:/C:/Users/bruno/Desktop/jposee/
modules/hibernate3/build.xml
Project base dir set to: C:\Users\bruno\Desktop\jposee
[property] Loading C:\Users\bruno\Desktop\jposee\build.properties
[subant] Entering C:\Users\bruno\Desktop\jposee\modules
\hibernate3\build.xml...
Build sequence for target(s) `config' is [config]
Complete build sequence is [config, prepare, ]
config:
[echo] hibernate3: generating build/cfg/hibernate.cfg.xml
[copy] Copying 1 file to C:\Users\bruno\Desktop\jposee\build\cfg
[copy] Copying C:\Users\bruno\Desktop\jposee\modules
\hibernate3\cfg\_hibernate.cfg.head to C:\Users\bruno\Desktop\jposee
\build\cfg\hibernate.cfg.tmp
[filter] Reading filters from C:\Users\bruno\Desktop\jposee
\devel.properties
Reading filters from C:\Users\bruno\Desktop\jposee\devel.properties
[copy] Copying 1 file to C:\Users\bruno\Desktop\jposee\build\cfg
[copy] Copying C:\Users\bruno\Desktop\jposee\build\cfg
\hibernate.cfg.tmp to C:\Users\bruno\Desktop\jposee\build\cfg
\hibernate.cfg.xml
Replacing: @dbhost@ -> localhost
Replacing: @dbname@ -> jposee
Replacing: @dbuser@ -> sa
Replacing: @dbpass@ ->
[delete] Deleting: C:\Users\bruno\Desktop\jposee\build\cfg
\hibernate.cfg.tmp
[subant] Exiting C:\Users\bruno\Desktop\jposee\modules
\hibernate3\build.xml.
Detected Java version: 1.6 in: C:\Program Files\Java\jdk1.6.0_18\jre
Detected OS: Windows 7
[subant] calling target(s) [default] in build file C:\Users\bruno
\Desktop\jposee\modules\splash\build.xml
parsing buildfile C:\Users\bruno\Desktop\jposee\modules\splash
\build.xml with URI = file:/C:/Users/bruno/Desktop/jposee/modules/
splash/build.xml
Project base dir set to: C:\Users\bruno\Desktop\jposee
[property] Loading C:\Users\bruno\Desktop\jposee\build.properties
Override ignored for property "dist.dir"
Override ignored for property "modules.dir"
support:
[filter] Reading filters from C:\Users\bruno\Desktop\jposee
\devel.properties
Reading filters from C:\Users\bruno\Desktop\jposee\devel.properties
[copy] Copying 12 files to C:\Users\bruno\Desktop\jposee\build
\classes
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\Visitor.hbm.xml to C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\Visitor.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\cfg
\hibernate.cfg.xml to C:\Users\bruno\Desktop\jposee\build\classes
\hibernate.cfg.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\ResultCode.hbm.xml to C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\ResultCode.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\Constants.properties to C:\Users\bruno\Desktop\jposee\build\classes
\org\jpos\ee\Constants.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\User.hbm.xml to C:\Users\bruno\Desktop\jposee\build\classes\org\jpos
\ee\User.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\SysConfig.hbm.xml to C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\SysConfig.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\status\StatusTag.hbm.xml to C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\ee\status\StatusTag.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\status\Status.hbm.xml to C:\Users\bruno\Desktop\jposee\build\classes
\org\jpos\ee\status\Status.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\RevisionEntry.hbm.xml to C:\Users\bruno\Desktop\jposee\build\classes
\org\jpos\ee\RevisionEntry.hbm.xml
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\util\Validator.properties to C:\Users\bruno\Desktop\jposee\build
\classes\org\jpos\util\Validator.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\build\cfg
\log4j.properties to C:\Users\bruno\Desktop\jposee\build\classes
\log4j.properties
[copy] Copying C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\SysLogEvent.hbm.xml to C:\Users\bruno\Desktop\jposee\build\classes\org
\jpos\ee\SysLogEvent.hbm.xml
copy-bin:
[copy] bsh added as bsh doesn't exist.
[copy] q2 omitted as C:\Users\bruno\Desktop\jposee\build\bin\q2
is up to date.
[copy] start omitted as C:\Users\bruno\Desktop\jposee\build\bin
\start is up to date.
[copy] stop omitted as C:\Users\bruno\Desktop\jposee\build\bin
\stop is up to date.
[copy] No sources found.
[copy] Copying 1 file to C:\Users\bruno\Desktop\jposee\build\bin
[copy] Copying C:\Users\bruno\Desktop\jposee\bin\bsh to C:\Users
\bruno\Desktop\jposee\build\bin\bsh
manifest:
[pathconvert] Set property q2.classpath = lib/JPublish-4.jar lib/
PostEden-1.5.3.jar lib/antlr-2.7.6.jar lib/atlassian-profiling-1.1.jar
lib/bsf.jar lib/bsh-2.0b4.jar lib/c3p0-0.9.1.jar lib/commons-
beanutils-1.8.0-BETA.jar lib/commons-cli.jar lib/commons-
collections-3.1.jar lib/commons-lang-2.4.jar lib/commons-
logging-1.1.1.jar lib/commons-vfs-1.0-dev.jar lib/cweb-extser-0.1-b2-
dev.jar lib/dom4j-1.6.1.jar lib/ehcache-1.6.0.jar lib/
hibernate-3.3.2.GA.jar lib/jasper-compiler-5.5.15.jar lib/jasper-
runtime-5.5.15.jar lib/javassist-3.9.0.GA.jar lib/jdbm-1.0.jar lib/
jdom-1.0.jar lib/je-3.3.87.jar lib/jetty-6.1.18.jar lib/jetty-
util-6.1.18.jar lib/jline-0.9.91.jar lib/jpos.jar lib/jsp-
api-5.0.16.jar lib/jta-1.1.jar lib/log4j-1.2.15.jar lib/mysql-
connector-java-5.1.7-bin.jar lib/servlet-api-2.5-20081211.jar lib/
slf4j-api-1.5.8.jar lib/slf4j-log4j12-1.5.8.jar lib/velocity-1.6.2.jar
lib/xercesImpl.jar lib/xml-apis.jar lib/classes
main:
[javac] C:\Users\bruno\Desktop\jposee\build.xml:118: warning:
'includeantruntime' was not set, defaulting to
build.sysclasspath=last; set to false for repeatable builds
[javac] org\jpos\ee\BLException.java added as org\jpos\ee
\BLException.class doesn't exist.
[javac] org\jpos\ee\Cloneable.java added as org\jpos\ee
\Cloneable.class doesn't exist.
[javac] org\jpos\ee\Constants.java added as org\jpos\ee
\Constants.class doesn't exist.
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\Constants.properties skipped - don't know how to handle it
[javac] org\jpos\ee\DB.java added as org\jpos\ee\DB.class doesn't
exist.
[javac] org\jpos\ee\EEUtil.java added as org\jpos\ee\EEUtil.class
doesn't exist.
[javac] org\jpos\ee\K.java added as org\jpos\ee\K.class doesn't
exist.
[javac] org\jpos\ee\LoggeableSysLogEvent.java added as org\jpos\ee
\LoggeableSysLogEvent.class doesn't exist.
[javac] org\jpos\ee\Permission.java added as org\jpos\ee
\Permission.class doesn't exist.
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\ResultCode.hbm.xml skipped - don't know how to handle it
[javac] org\jpos\ee\ResultCode.java added as org\jpos\ee
\ResultCode.class doesn't exist.
[javac] org\jpos\ee\ResultCodeFinder.java added as org\jpos\ee
\ResultCodeFinder.class doesn't exist.
[javac] org\jpos\ee\ResultCodeInfo.java added as org\jpos\ee
\ResultCodeInfo.class doesn't exist.
[javac] org\jpos\ee\ResultCodeInfoFinder.java added as org\jpos\ee
\ResultCodeInfoFinder.class doesn't exist.
[javac] org\jpos\ee\ResultCodeManager.java added as org\jpos\ee
\ResultCodeManager.class doesn't exist.
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\RevisionEntry.hbm.xml skipped - don't know how to handle it
[javac] org\jpos\ee\RevisionEntry.java added as org\jpos\ee
\RevisionEntry.class doesn't exist.
[javac] org\jpos\ee\RevisionManager.java added as org\jpos\ee
\RevisionManager.class doesn't exist.
[javac] org\jpos\ee\StatusRevisionEntry.java added as org\jpos\ee
\StatusRevisionEntry.class doesn't exist.
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\SysConfig.hbm.xml skipped - don't know how to handle it
[javac] org\jpos\ee\SysConfig.java added as org\jpos\ee
\SysConfig.class doesn't exist.
[javac] org\jpos\ee\SysConfigManager.java added as org\jpos\ee
\SysConfigManager.class doesn't exist.
[javac] org\jpos\ee\SysLog.java added as org\jpos\ee\SysLog.class
doesn't exist.
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\SysLogEvent.hbm.xml skipped - don't know how to handle it
[javac] org\jpos\ee\SysLogEvent.java added as org\jpos\ee
\SysLogEvent.class doesn't exist.
[javac] org\jpos\ee\SysLogEventBase.java added as org\jpos\ee
\SysLogEventBase.class doesn't exist.
[javac] org\jpos\ee\SystemDate.java added as org\jpos\ee
\SystemDate.class doesn't exist.
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\User.hbm.xml skipped - don't know how to handle it
[javac] org\jpos\ee\User.java added as org\jpos\ee\User.class
doesn't exist.
[javac] org\jpos\ee\UserManager.java added as org\jpos\ee
\UserManager.class doesn't exist.
[javac] org\jpos\ee\UserRevisionEntry.java added as org\jpos\ee
\UserRevisionEntry.class doesn't exist.
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\Visitor.hbm.xml skipped - don't know how to handle it
[javac] org\jpos\ee\Visitor.java added as org\jpos\ee
\Visitor.class doesn't exist.
[javac] org\jpos\ee\VisitorBase.java added as org\jpos\ee
\VisitorBase.class doesn't exist.
[javac] org\jpos\ee\VisitorManager.java added as org\jpos\ee
\VisitorManager.class doesn't exist.
[javac] org\jpos\ee\action\ActionSupport.java added as org\jpos\ee
\action\ActionSupport.class doesn't exist.
[javac] org\jpos\ee\action\CheckAccess.java added as org\jpos\ee
\action\CheckAccess.class doesn't exist.
[javac] org\jpos\ee\action\Close.java added as org\jpos\ee\action
\Close.class doesn't exist.
[javac] org\jpos\ee\action\ContextConstants.java added as org\jpos
\ee\action\ContextConstants.class doesn't exist.
[javac] org\jpos\ee\action\Error.java added as org\jpos\ee\action
\Error.class doesn't exist.
[javac] org\jpos\ee\action\Login.java added as org\jpos\ee\action
\Login.class doesn't exist.
[javac] org\jpos\ee\action\Logout.java added as org\jpos\ee\action
\Logout.class doesn't exist.
[javac] org\jpos\ee\action\Menu.java added as org\jpos\ee\action
\Menu.class doesn't exist.
[javac] org\jpos\ee\action\Open.java added as org\jpos\ee\action
\Open.class doesn't exist.
[javac] org\jpos\ee\action\sys\Status.java added as org\jpos\ee
\action\sys\Status.class doesn't exist.
[javac] org\jpos\ee\action\sys\StatusNode.java added as org\jpos\ee
\action\sys\StatusNode.class doesn't exist.
[javac] org\jpos\ee\action\sys\StatusShow.java added as org\jpos\ee
\action\sys\StatusShow.class doesn't exist.
[javac] org\jpos\ee\action\sys\StatusTree.java added as org\jpos\ee
\action\sys\StatusTree.class doesn't exist.
[javac] org\jpos\ee\action\sys\SysConfig.java added as org\jpos\ee
\action\sys\SysConfig.class doesn't exist.
[javac] org\jpos\ee\action\sys\SysLog.java added as org\jpos\ee
\action\sys\SysLog.class doesn't exist.
[javac] org\jpos\ee\action\sys\SysLogShow.java added as org\jpos\ee
\action\sys\SysLogShow.class doesn't exist.
[javac] org\jpos\ee\action\user\Add.java added as org\jpos\ee
\action\user\Add.class doesn't exist.
[javac] org\jpos\ee\action\user\Delete.java added as org\jpos\ee
\action\user\Delete.class doesn't exist.
[javac] org\jpos\ee\action\user\List.java added as org\jpos\ee
\action\user\List.class doesn't exist.
[javac] org\jpos\ee\action\user\Show.java added as org\jpos\ee
\action\user\Show.class doesn't exist.
[javac] org\jpos\ee\action\user\Update.java added as org\jpos\ee
\action\user\Update.class doesn't exist.
[javac] org\jpos\ee\action\user\UpdateProfile.java added as org
\jpos\ee\action\user\UpdateProfile.class doesn't exist.
[javac] org\jpos\ee\info\StartStop.java added as org\jpos\ee\info
\StartStop.class doesn't exist.
[javac] org\jpos\ee\menu\MenuMap.java added as org\jpos\ee\menu
\MenuMap.class doesn't exist.
[javac] org\jpos\ee\menu\MenuNode.java added as org\jpos\ee\menu
\MenuNode.class doesn't exist.
[javac] org\jpos\ee\status\ChannelMonitor.java added as org\jpos\ee
\status\ChannelMonitor.class doesn't exist.
[javac] org\jpos\ee\status\Heartbeat.java added as org\jpos\ee
\status\Heartbeat.class doesn't exist.
[javac] org\jpos\ee\status\Monitor.java added as org\jpos\ee\status
\Monitor.class doesn't exist.
[javac] org\jpos\ee\status\MonitorTask.java added as org\jpos\ee
\status\MonitorTask.class doesn't exist.
[javac] org\jpos\ee\status\Ping.java added as org\jpos\ee\status
\Ping.class doesn't exist.
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee\status
\Status.hbm.xml skipped - don't know how to handle it
[javac] org\jpos\ee\status\Status.java added as org\jpos\ee\status
\Status.class doesn't exist.
[javac] org\jpos\ee\status\StatusBase.java added as org\jpos\ee
\status\StatusBase.class doesn't exist.
[javac] org\jpos\ee\status\StatusManager.java added as org\jpos\ee
\status\StatusManager.class doesn't exist.
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee\status
\StatusTag.hbm.xml skipped - don't know how to handle it
[javac] org\jpos\ee\status\StatusTag.java added as org\jpos\ee
\status\StatusTag.class doesn't exist.
[javac] org\jpos\ee\status\TwoWayMonitorTask.java added as org\jpos
\ee\status\TwoWayMonitorTask.class doesn't exist.
[javac] org\jpos\q2\jetty\Jetty6.java added as org\jpos\q2\jetty
\Jetty6.class doesn't exist.
[javac] org\jpos\q2\jetty\Jetty6MBean.java added as org\jpos
\q2\jetty\Jetty6MBean.class doesn't exist.
[javac] org\jpos\simulator\TestCase.java added as org\jpos
\simulator\TestCase.class doesn't exist.
[javac] org\jpos\simulator\TestRunner.java added as org\jpos
\simulator\TestRunner.class doesn't exist.
[javac] org\jpos\util\BeanDiff.java added as org\jpos\util
\BeanDiff.class doesn't exist.
[javac] org\jpos\util\DateUtil.java added as org\jpos\util
\DateUtil.class doesn't exist.
[javac] org\jpos\util\DiffEntry.java added as org\jpos\util
\DiffEntry.class doesn't exist.
[javac] org\jpos\util\V.java added as org\jpos\util\V.class
doesn't exist.
[javac] org\jpos\util\Validator.java added as org\jpos\util
\Validator.class doesn't exist.
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\util
\Validator.properties skipped - don't know how to handle it
[javac] Compiling 72 source files to C:\Users\bruno\Desktop\jposee
\build\classes
[javac] Using modern compiler
[javac] Compilation arguments:
[javac] '-nowarn'
[javac] '-deprecation'
[javac] '-d'
[javac] 'C:\Users\bruno\Desktop\jposee\build\classes'
[javac] '-classpath'
[javac] 'C:\Users\bruno\Desktop\jposee\build\classes;C:\Users\bruno
\Desktop\jposee\build\lib\JPublish-4.jar;C:\Users\bruno\Desktop\jposee
\build\lib\PostEden-1.5.3.jar;C:\Users\bruno\Desktop\jposee\build\lib
\antlr-2.7.6.jar;C:\Users\bruno\Desktop\jposee\build\lib\atlassian-
profiling-1.1.jar;C:\Users\bruno\Desktop\jposee\build\lib\bsf.jar;C:
\Users\bruno\Desktop\jposee\build\lib\bsh-2.0b4.jar;C:\Users\bruno
\Desktop\jposee\build\lib\c3p0-0.9.1.jar;C:\Users\bruno\Desktop\jposee
\build\lib\commons-beanutils-1.8.0-BETA.jar;C:\Users\bruno\Desktop
\jposee\build\lib\commons-cli.jar;C:\Users\bruno\Desktop\jposee\build
\lib\commons-collections-3.1.jar;C:\Users\bruno\Desktop\jposee\build
\lib\commons-lang-2.4.jar;C:\Users\bruno\Desktop\jposee\build\lib
\commons-logging-1.1.1.jar;C:\Users\bruno\Desktop\jposee\build\lib
\commons-vfs-1.0-dev.jar;C:\Users\bruno\Desktop\jposee\build\lib\cweb-
extser-0.1-b2-dev.jar;C:\Users\bruno\Desktop\jposee\build\lib
\dom4j-1.6.1.jar;C:\Users\bruno\Desktop\jposee\build\lib
\ehcache-1.6.0.jar;C:\Users\bruno\Desktop\jposee\build\lib
\hibernate-3.3.2.GA.jar;C:\Users\bruno\Desktop\jposee\build\lib\jasper-
compiler-5.5.15.jar;C:\Users\bruno\Desktop\jposee\build\lib\jasper-
runtime-5.5.15.jar;C:\Users\bruno\Desktop\jposee\build\lib
\javassist-3.9.0.GA.jar;C:\Users\bruno\Desktop\jposee\build\lib
\jdbm-1.0.jar;C:\Users\bruno\Desktop\jposee\build\lib\jdom-1.0.jar;C:
\Users\bruno\Desktop\jposee\build\lib\je-3.3.87.jar;C:\Users\bruno
\Desktop\jposee\build\lib\jetty-6.1.18.jar;C:\Users\bruno\Desktop
\jposee\build\lib\jetty-util-6.1.18.jar;C:\Users\bruno\Desktop\jposee
\build\lib\jline-0.9.91.jar;C:\Users\bruno\Desktop\jposee\build\lib
\jpos.jar;C:\Users\bruno\Desktop\jposee\build\lib\jsp-api-5.0.16.jar;C:
\Users\bruno\Desktop\jposee\build\lib\jta-1.1.jar;C:\Users\bruno
\Desktop\jposee\build\lib\log4j-1.2.15.jar;C:\Users\bruno\Desktop
\jposee\build\lib\mysql-connector-java-5.1.7-bin.jar;C:\Users\bruno
\Desktop\jposee\build\lib\servlet-api-2.5-20081211.jar;C:\Users\bruno
\Desktop\jposee\build\lib\slf4j-api-1.5.8.jar;C:\Users\bruno\Desktop
\jposee\build\lib\slf4j-log4j12-1.5.8.jar;C:\Users\bruno\Desktop\jposee
\build\lib\velocity-1.6.2.jar;C:\Users\bruno\Desktop\jposee\build\lib
\xercesImpl.jar;C:\Users\bruno\Desktop\jposee\build\lib\xml-apis.jar;C:
\ant\lib\ant-launcher.jar;C:\Users\bruno\.ant\lib\junit-3.8.1.jar;C:
\ant\lib\ant-antlr.jar;C:\ant\lib\ant-apache-bcel.jar;C:\ant\lib\ant-
apache-bsf.jar;C:\ant\lib\ant-apache-log4j.jar;C:\ant\lib\ant-apache-
oro.jar;C:\ant\lib\ant-apache-regexp.jar;C:\ant\lib\ant-apache-
resolver.jar;C:\ant\lib\ant-apache-xalan2.jar;C:\ant\lib\ant-commons-
logging.jar;C:\ant\lib\ant-commons-net.jar;C:\ant\lib\ant-jai.jar;C:
\ant\lib\ant-javamail.jar;C:\ant\lib\ant-jdepend.jar;C:\ant\lib\ant-
jmf.jar;C:\ant\lib\ant-jsch.jar;C:\ant\lib\ant-junit.jar;C:\ant\lib
\ant-netrexx.jar;C:\ant\lib\ant-nodeps.jar;C:\ant\lib\ant-swing.jar;C:
\ant\lib\ant-testutil.jar;C:\ant\lib\ant-trax.jar;C:\ant\lib\ant.jar;C:
\ant\lib\xercesImpl.jar;C:\ant\lib\xml-apis.jar;C:\Program Files\Java
\jdk1.6.0_18\lib\tools.jar'
[javac] '-sourcepath'
[javac] 'C:\Users\bruno\Desktop\jposee\build\src'
[javac] '-g'
[javac]
[javac] The ' characters around the executable and arguments are
[javac] not part of the command.
[javac] Files to be compiled:
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\BLException.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\Cloneable.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\Constants.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\DB.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\EEUtil.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\K.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\LoggeableSysLogEvent.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\Permission.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\ResultCode.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\ResultCodeFinder.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\ResultCodeInfo.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\ResultCodeInfoFinder.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\ResultCodeManager.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\RevisionEntry.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\RevisionManager.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\StatusRevisionEntry.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\SysConfig.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\SysConfigManager.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\SysLog.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\SysLogEvent.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\SysLogEventBase.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\SystemDate.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\User.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\UserManager.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\UserRevisionEntry.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\Visitor.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\VisitorBase.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\VisitorManager.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\ActionSupport.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\CheckAccess.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\Close.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\ContextConstants.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\Error.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\Login.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\Logout.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\Menu.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\Open.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\sys\Status.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\sys\StatusNode.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\sys\StatusShow.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\sys\StatusTree.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\sys\SysConfig.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\sys\SysLog.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\sys\SysLogShow.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\user\Add.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\user\Delete.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\user\List.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\user\Show.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\user\Update.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\action\user\UpdateProfile.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\info\StartStop.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\menu\MenuMap.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\menu\MenuNode.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\status\ChannelMonitor.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\status\Heartbeat.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\status\Monitor.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\status\MonitorTask.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\status\Ping.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\status\Status.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\status\StatusBase.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\status\StatusManager.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\status\StatusTag.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\ee
\status\TwoWayMonitorTask.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\q2\jetty\Jetty6.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\q2\jetty\Jetty6MBean.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\simulator\TestCase.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos
\simulator\TestRunner.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\util
\BeanDiff.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\util
\DateUtil.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\util
\DiffEntry.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\util
\V.java
[javac] C:\Users\bruno\Desktop\jposee\build\src\org\jpos\util
\Validator.java
[jar] adding directory META-INF/
[jar] adding entry META-INF/MANIFEST.MF
[jar] adding directory org/
[jar] adding directory org/jpos/
[jar] adding directory org/jpos/ee/
[jar] adding directory org/jpos/ee/action/
[jar] adding directory org/jpos/ee/action/sys/
[jar] adding directory org/jpos/ee/action/user/
[jar] adding directory org/jpos/ee/info/
[jar] adding directory org/jpos/ee/menu/
[jar] adding directory org/jpos/ee/status/
[jar] adding directory org/jpos/q2/
[jar] adding directory org/jpos/q2/jetty/
[jar] adding directory org/jpos/simulator/
[jar] adding directory org/jpos/util/
[jar] adding entry MANIFEST.MF
[jar] adding entry hibernate.cfg.xml
[jar] adding entry log4j.properties
[jar] adding entry org/jpos/ee/BLException.class
[jar] adding entry org/jpos/ee/Cloneable.class
[jar] adding entry org/jpos/ee/Constants.class
[jar] adding entry org/jpos/ee/Constants.properties
[jar] adding entry org/jpos/ee/DB.class
[jar] adding entry org/jpos/ee/EEUtil.class
[jar] adding entry org/jpos/ee/K.class
[jar] adding entry org/jpos/ee/LoggeableSysLogEvent.class
[jar] adding entry org/jpos/ee/Permission.class
[jar] adding entry org/jpos/ee/ResultCode.class
[jar] adding entry org/jpos/ee/ResultCode.hbm.xml
[jar] adding entry org/jpos/ee/ResultCodeFinder.class
[jar] adding entry org/jpos/ee/ResultCodeInfo.class
[jar] adding entry org/jpos/ee/ResultCodeInfoFinder.class
[jar] adding entry org/jpos/ee/ResultCodeManager.class
[jar] adding entry org/jpos/ee/RevisionEntry.class
[jar] adding entry org/jpos/ee/RevisionEntry.hbm.xml
[jar] adding entry org/jpos/ee/RevisionManager.class
[jar] adding entry org/jpos/ee/StatusRevisionEntry.class
[jar] adding entry org/jpos/ee/SysConfig.class
[jar] adding entry org/jpos/ee/SysConfig.hbm.xml
[jar] adding entry org/jpos/ee/SysConfigManager.class
[jar] adding entry org/jpos/ee/SysLog.class
[jar] adding entry org/jpos/ee/SysLogEvent.class
[jar] adding entry org/jpos/ee/SysLogEvent.hbm.xml
[jar] adding entry org/jpos/ee/SysLogEventBase.class
[jar] adding entry org/jpos/ee/SystemDate.class
[jar] adding entry org/jpos/ee/User.class
[jar] adding entry org/jpos/ee/User.hbm.xml
[jar] adding entry org/jpos/ee/UserManager.class
[jar] adding entry org/jpos/ee/UserRevisionEntry.class
[jar] adding entry org/jpos/ee/Visitor.class
[jar] adding entry org/jpos/ee/Visitor.hbm.xml
[jar] adding entry org/jpos/ee/VisitorBase.class
[jar] adding entry org/jpos/ee/VisitorManager.class
[jar] adding entry org/jpos/ee/action/ActionSupport.class
[jar] adding entry org/jpos/ee/action/CheckAccess.class
[jar] adding entry org/jpos/ee/action/Close.class
[jar] adding entry org/jpos/ee/action/ContextConstants.class
[jar] adding entry org/jpos/ee/action/Error.class
[jar] adding entry org/jpos/ee/action/Login.class
[jar] adding entry org/jpos/ee/action/Logout.class
[jar] adding entry org/jpos/ee/action/Menu.class
[jar] adding entry org/jpos/ee/action/Open.class
[jar] adding entry org/jpos/ee/action/sys/Status.class
[jar] adding entry org/jpos/ee/action/sys/StatusNode.class
[jar] adding entry org/jpos/ee/action/sys/StatusShow.class
[jar] adding entry org/jpos/ee/action/sys/StatusTree.class
[jar] adding entry org/jpos/ee/action/sys/SysConfig.class
[jar] adding entry org/jpos/ee/action/sys/SysLog.class
[jar] adding entry org/jpos/ee/action/sys/SysLogShow.class
[jar] adding entry org/jpos/ee/action/user/Add.class
[jar] adding entry org/jpos/ee/action/user/Delete.class
[jar] adding entry org/jpos/ee/action/user/List.class
[jar] adding entry org/jpos/ee/action/user/Show.class
[jar] adding entry org/jpos/ee/action/user/Update.class
[jar] adding entry org/jpos/ee/action/user/UpdateProfile.class
[jar] adding entry org/jpos/ee/info/StartStop.class
[jar] adding entry org/jpos/ee/menu/MenuMap.class
[jar] adding entry org/jpos/ee/menu/MenuNode$1.class
[jar] adding entry org/jpos/ee/menu/MenuNode.class
[jar] adding entry org/jpos/ee/status/ChannelMonitor.class
[jar] adding entry org/jpos/ee/status/Heartbeat.class
[jar] adding entry org/jpos/ee/status/Monitor
$MonitorTimerTask.class
[jar] adding entry org/jpos/ee/status/Monitor.class
[jar] adding entry org/jpos/ee/status/MonitorTask.class
[jar] adding entry org/jpos/ee/status/Ping.class
[jar] adding entry org/jpos/ee/status/Status.class
[jar] adding entry org/jpos/ee/status/Status.hbm.xml
[jar] adding entry org/jpos/ee/status/StatusBase.class
[jar] adding entry org/jpos/ee/status/StatusManager.class
[jar] adding entry org/jpos/ee/status/StatusTag.class
[jar] adding entry org/jpos/ee/status/StatusTag.hbm.xml
[jar] adding entry org/jpos/ee/status/TwoWayMonitorTask.class
[jar] adding entry org/jpos/q2/jetty/Jetty6.class
[jar] adding entry org/jpos/q2/jetty/Jetty6MBean.class
[jar] adding entry org/jpos/simulator/TestCase.class
[jar] adding entry org/jpos/simulator/TestRunner.class
[jar] adding entry org/jpos/util/BeanDiff$ClassInfo.class
[jar] adding entry org/jpos/util/BeanDiff.class
[jar] adding entry org/jpos/util/DateUtil.class
[jar] adding entry org/jpos/util/DiffEntry.class
[jar] adding entry org/jpos/util/V.class
[jar] adding entry org/jpos/util/Validator.class
[jar] adding entry org/jpos/util/Validator.properties
[jar] No Implementation-Title set.No Implementation-Version
set.No Implementation-Vendor set.
[jar] Location: C:\Users\bruno\Desktop\jposee\build.xml:73:
run:
[java] Executing 'C:\Program Files\Java\jdk1.6.0_18\jre\bin
\java.exe' with arguments:
[java] '-jar'
[java] 'C:\Users\bruno\Desktop\jposee\build\jpos-ee.jar'
[java]
[java] The ' characters around the executable and arguments are
[java] not part of the command.
[java] <log realm="Q2.system" at="Thu Feb 04 14:15:32 BRST
2010.281">
[java] <info>
[java] Q2 started, deployDir=C:\Users\bruno\Desktop\jposee
\build\deploy
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 14:15:32 BRST
2010.328">
[java] <info>
[java] new classloader [19efb05] has been created
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 14:15:32 BRST
2010.330">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\01_start.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 14:15:32 BRST
2010.379">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\02_status_heartbeat.xml
[java] </info>
[java] </log>
[java] 04/02/2010 14:15:35
net.sf.ehcache.config.ConfigurationFactory parseConfiguration
[java] WARNING: No configuration found. Configuring ehcache from
ehcache-failsafe.xml found in the classpath: jar:file:/C:/Users/bruno/
Desktop/jposee/build/lib/ehcache-1.6.0.jar!/ehcache-failsafe.xml
[java] <log realm="Q2.system" at="Thu Feb 04 14:15:35 BRST
2010.962">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\05_serversimulator.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 14:15:35 BRST
2010.970">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\10_clientsimulator_channel.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 14:15:35 BRST
2010.978">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\10_splash.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 14:15:35 BRST
2010.985">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\20_clientsimulator_mux.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 14:15:36 BRST
2010.36">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\25_clientsimulator_ui.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 14:15:36 BRST
2010.46">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\30_clientsimulator.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 14:15:36 BRST
2010.82">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\90_jetty.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 04 14:15:36 BRST
2010.275">
[java] <info>
[java] deploy:C:\Users\bruno\Desktop\jposee\build\deploy
\99_sysmon.xml
[java] </info>
[java] </log>
[java] <log realm="simulator_10000.server" at="Thu Feb 04
14:15:36 BRST 2010.665">
[java] <iso-server>
[java] listening on port 10000
[java] </iso-server>
[java] </log>
[java] <log realm="channel/127.0.0.1:10000" at="Thu Feb 04
14:15:36 BRST 2010.666">
[java] <connect>
[java] 127.0.0.1:10000
[java] </connect>
[java] </log>
[java] <log realm="channel/127.0.0.1:10000" at="Thu Feb 04
14:15:53 BRST 2010.847">
[java] <send>
[java] <isomsg>
[java] <!-- org.jpos.iso.packager.XMLPackager -->
[java] <field id="0" value="1800"/>
[java] <field id="7" value="0204141553"/>
[java] <field id="11" value="153845"/>
[java] <field id="12" value="000000"/>
[java] <field id="63" value="Thu Feb 04 14:15:53 BRST 2010"/
>
[java] <isomsg id="120">
[java] <field id="0" value="29110001"/>
[java] </isomsg>
[java] </isomsg>
[java] </send>
[java] </log>
[java] <log realm="channel/127.0.0.1:10000" at="Thu Feb 04
14:15:53 BRST 2010.872">
[java] <receive>
[java] <peer-disconnect/>
[java] </receive>
[java] </log>
[java] <log realm="org.jpos.q2.iso.ChannelAdaptor" at="Thu Feb 04
14:15:53 BRST 2010.921">
[java] <warn>
[java] channel-receiver-clientsimulator-receive
[java] <exception name="null">
[java] java.io.EOFException
[java] at
org.jpos.iso.channel.XMLChannel.streamReceive(XMLChannel.java:90)
[java] at org.jpos.iso.BaseChannel.receive(BaseChannel.java:649)
[java] at org.jpos.q2.iso.ChannelAdaptor
$Receiver.run(ChannelAdaptor.java:295)
[java] at java.lang.Thread.run(Thread.java:619)
[java] </exception>
[java] </warn>
[java] </log>
[java] 04/02/2010 14:15:54 net.sf.ehcache.CacheManager
detectAndFixDiskStorePathConflict
[java] WARNING: Creating a new instance of CacheManager using the
diskStorePath "C:\Users\bruno\AppData\Local\Temp\" which is already
used by an existing CacheManager.
[java] The source of the configuration was classpath.
[java] The diskStore path for this CacheManager will be set to C:
\Users\bruno\AppData\Local\Temp\\ehcache_auto_created_1265300154042.
[java] To avoid this warning consider using the CacheManager
factory methods to create a singleton CacheManager or specifying a
separate ehcache configuration (ehcache.xml) for each CacheManager
instance.
[java] <log realm="jetty" at="Thu Feb 04 14:15:54 BRST 2010.687">
04 14:15:54 BRST 2010.726">
[java] <info>
[java] Starting SystemMonitor
[java] </info>
[java] </log>
[java] <log realm="org.jpos.q2.qbean.SystemMonitor" at="Thu Feb
04 14:15:54 BRST 2010.731">
[java] <info>
[java] <release>1.6.7 $Revision: 2868 $</release>
[java] <memory>
[java] freeMemory=5505280
[java] totalMemory=16318464
[java] inUseMemory=10813184
[java] </memory>
[java] <threads>
[java] delay=0 ms
[java] threads=36
[java] Thread[AWT-Shutdown,5,main]
[java] Thread[AWT-Windows,6,main]
[java] Thread[AWT-EventQueue-0,6,main]
[java] Thread[Thread-16,5,main]
[java] Thread[Timer-2,5,main]
[java] Thread[btpool0-0,5,main]
[java] Thread[btpool0-1 - Acceptor0
SelectChann...@0.0.0.0:8180,5,main]
[java] Thread[btpool0-2,5,main]
[java] Thread[btpool0-3 - Acceptor1
SelectChann...@0.0.0.0:8180,5,main]
[java] Thread[btpool0-4,5,main]
[java] Thread[btpool0-5,5,main]
[java] Thread[btpool0-6,5,main]
[java] Thread[btpool0-7,5,main]
[java] Thread[btpool0-8,5,main]
[java] Thread[btpool0-9,5,main]
[java] Thread[Timer-3,5,main]
[java] Thread[ISOMeter,4,main]
[java] Thread[Store default Spool Thread,5,main]
[java] Thread[Thread-29,5,main]
[java] Thread[Timer-4,5,main]
[java] Thread[Timer-5,5,main]
[java] Thread[Timer-6,5,main]
[java] Thread[SystemMonitor,5,main]
[java] Thread[PooledThread-0,5,ThreadPool-0]
[java] </threads>
[java] --- name-registrar ---
[java] tspace:default: org.jpos.space.TSpace
[java] <key>clientsimulator-send.180153845.req</key>
[java] <keycount>1</keycount>
[java] mux.clientsimulator-mux: org.jpos.q2.iso.QMUX
[java] tx=1, rx=0, tx_expired=0, tx_pending=0,
rx_expired=0, rx_pending=1, rx_unhandled=0, rx_forwarded=0,
connected=true, last=0
[java] logger.Q2: org.jpos.util.Logger
[java] server.simulator_10000: org.jpos.iso.ISOServer
[java] connected=0, rx=0, tx=0, last=0
[java] channel.clientsimulator-adaptor:
org.jpos.iso.channel.XMLChannel
[java] UI: org.jpos.ui.UI
[java] clientsimulator-adaptor:
org.jpos.q2.iso.ChannelAdaptor
[java] tx=1, rx=0, connects=1, last=0
[java] </info>
[java] </log>
Terminate batch job (Y/N)?
<Call name="addConnector">
<Arg>
<New
class="org.mortbay.jetty.security.SslSocketConnector">
<Set name="Port">8443</Set>
<Set name="maxIdleTime">30000</Set>
<Set name="keystore"><SystemProperty name="jetty.home"
default="." />/cfg/keystore.ks</Set>
<Set name="password">jposjposjposjpos</Set>
<Set name="keyPassword">jposjposjposjpos</Set>
<Set name="ExcludeCipherSuites">
<Array type="java.lang.String">
<Item>SSL_DHE_RSA_WITH_DES_CBC_SHA</Item>
<Item>SSL_DHE_DSS_WITH_DES_CBC_SHA</Item>
<Item>SSL_RSA_EXPORT_WITH_RC4_40_MD5</Item>
<Item>SSL_RSA_EXPORT_WITH_DES40_CBC_SHA</Item>
<Item>SSL_RSA_WITH_DES_CBC_SHA</Item>
<Item>SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA</Item>
<Item>SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA</Item>
</Array>
</Set>
</New>
</Arg>
</Call>
What should I changed in order too have the a basic connection?
Bruno Lovato
> ...
>
> mais »
<Call name="addConnector">
<Arg>
<New class="org.mortbay.jetty.nio.SelectChannelConnector">
<Set name="port"><SystemProperty name="jetty.port" default="8080"/></Set>
<Set name="maxIdleTime">30000</Set>
<Set name="Acceptors">2</Set>
<Set name="confidentialPort">8443</Set>
</New>
</Arg>
</Call>
and the SSL one on 8443 - which is also below.
both should work
David Bergert, CISSP, CISA, CPISM/A
www.paymentsystemsblog.com
Now with the code below , the web server has worked.
I think the sample that we downloaded from JPOS should be with the
code below. The code with SSL should be commented out.
Thanks David.
-B
> ...
>
> mais »
May be something is missing in some commit?
> ...
>
> mais »
Thanks, this solution worked for me too. The syslog, heartbeat and
user administration modules are running. I have seen a few screenshots
of minigl (card, store, etc.) application on jpos blog. Although I
have symbolically linked them in modules directory, they are not
getting deployed when I do `ant run` (at least that's what I am
guessing). A few pointers on how to get them up and running would be
appreciated.
Thanks again.
modules directory listing:
commons
eecore3
eecore3min
eetxn3
eeweb3
freemarker_decorator
hibernate3
hibernate3_mysql
ignore.list
include.list
jetty6
jgroups
jpos
jpublish4
minigl
minigl_test
status
status_ui
system
Near the top of the output from 'ant run' will be the detail of the
directory that components will be deployed from:-
run:
[java] <log realm="Q2.system" at="Thu Feb 18 10:45:14 GMT 2010.366">
[java] <info>
[java] Q2 started, deployDir=C:\Documents and Settings\Mark\My
Documents\workspace\jposee\build\deploy
[java] </info>
[java] </log>
Is there anything in/under that directory?
If there is, are there any other messages in the 'ant run' output that
show what is happening to them?
One small point, if I may. It is better to start a new thread for a new
problem, our continuing discussion adds nothing to the old thread (other
than the detail that you resolved the same issue in the same way) and
runs the risks of getting 'lost' as well as being harder for others to
find later. Your deployment problem is really not related to the
subject at all, which is why a new thread and subject would have been
better.
--
Mark
00_logger.xml
01_start.xml
02_status_heartbeat.xml
90_jetty.xml
99_sysmon.xml
deploy-properties.ftl (empty file)
lib (empty directory)
> If there is, are there any other messages in the 'ant run' output that
> show what is happening to them?
>
I see log messages related to above modules but nothing else. Do I
need to create some sort of `deployment` files for each needed
module?
> One small point, if I may. It is better to start a new thread for a new
> problem, our continuing discussion adds nothing to the old thread (other
> than the detail that you resolved the same issue in the same way) and
> runs the risks of getting 'lost' as well as being harder for others to
> find later. Your deployment problem is really not related to the
> subject at all, which is why a new thread and subject would have been
> better.
>
Apologies, working too much with web based forums and wikis made my
USENET etiquette rusty.
> ls /root/jposee-read-only/build/deploy:
>
> 00_logger.xml
> 01_start.xml
> 02_status_heartbeat.xml
> 90_jetty.xml
> 99_sysmon.xml
> deploy-properties.ftl (empty file)
> lib (empty directory)
>
Ok, so the other components list have not been deployed (yet).
is this directory writeable? I ask only because of it's name.
>
>> If there is, are there any other messages in the 'ant run' output that
>> show what is happening to them?
>>
>
> I see log messages related to above modules but nothing else. Do I
> need to create some sort of `deployment` files for each needed
> module?
This should have happened as part of the build...
Higher up this thread I did suggest running :-
ant clean run
which will mean an implicit build will take place, which should deploy
the modules to the build (and deployment) folder.
Check the output from the above command in case anything is failing for
you and preventing the deployment.
>> One small point, if I may. It is better to start a new thread for a new
>> problem, our continuing discussion adds nothing to the old thread (other
>> than the detail that you resolved the same issue in the same way) and
>> runs the risks of getting 'lost' as well as being harder for others to
>> find later. Your deployment problem is really not related to the
>> subject at all, which is why a new thread and subject would have been
>> better.
>>
>
> Apologies, working too much with web based forums and wikis made my
> USENET etiquette rusty.
It is an easy thing to forget 8).
--
Mark
On Feb 18, 11:42 am, Mark Salter <marksal...@talktalk.net> wrote:
> Ticl wrote:
> > ls /root/jposee-read-only/build/deploy:
>
> > 00_logger.xml
> > 01_start.xml
> > 02_status_heartbeat.xml
> > 90_jetty.xml
> > 99_sysmon.xml
> > deploy-properties.ftl (empty file)
> > lib (empty directory)
>
> Ok, so the other components list have not been deployed (yet).
>
> is this directory writeable? I ask only because of it's name.
Yes, I was just following the SVN checkout instruction on jPOS blog so
it is named like that. I am running as root.
>
> > I see log messages related to above modules but nothing else. Do I
> > need to create some sort of `deployment` files for each needed
> > module?
>
> This should have happened as part of the build...
>
> Higher up this thread I did suggest running :-
>
> ant clean run
>
> which will mean an implicit build will take place, which should deploy
> the modules to the build (and deployment) folder.
>
> Check the output from the above command in case anything is failing for
> you and preventing the deployment.
>
I did run `ant clean` and `ant run` separately before. Now I ran `ant
clean run` (which has the same effect I assume) on a freshly checked
out folder (rev242). Apart from a few deprecation warnings I don't see
any critical error. Although I had to rename jetty.xml.sample and do
the edit to disable keystore as before.
Appreciate your help.
>> Check the output from the above command in case anything is failing
>> for you and preventing the deployment.
>>
>
> I did run `ant clean` and `ant run` separately before. Now I ran `ant
> clean run` (which has the same effect I assume) on a freshly checked
> out folder (rev242).
Ok, with the sim links or copies of the modules you want to deploy?
> Apart from a few deprecation warnings I don't see any critical error.
> Although I had to rename jetty.xml.sample and do the edit to disable
> keystore as before.
Overwritten by the fresh checkout?
You should see the modules being copied over to the build folder...
... I assume they are still not present in the build/deploy folder?
Perhaps include -verbose on the ant invocation ("ant -verbose clean
run") and check that output for failures or clues. I will take a copy
(or link to the output) *off-list* if you would like me to take a look
save cluttering this thread up with a lot of output.
>
> Appreciate your help.
No problem, although we don't seem to be getting very far do we.
There must be something silly we are missing, perhaps the verbose view
will help.
--
Mark
Deleted old directory, checked out the source and created the sym
links.
> You should see the modules being copied over to the build folder...
>
Exactly which directice in build.xml performs this operation? copy-
bin?
> ... I assume they are still not present in the build/deploy folder?
>
Same as before.
> Perhaps include -verbose on the ant invocation ("ant -verbose clean
> run") and check that output for failures or clues. I will take a copy
> (or link to the output) *off-list* if you would like me to take a look
> save cluttering this thread up with a lot of output.
>
After skimming through the output I don't see anything unusual.
Here is a link to log:
or
https://docs.google.com/leaf?id=0B1_q7bPCft35ZTIxMzY4ZWEtNjM4MC00ZTdkLWJjNzQtNTEzZTljZTJkY2Jh&hl=en
I also did `ant test` with the following output in the end:
[junit] Tests run: 42, Failures: 0, Errors: 0, Time elapsed:
18.399 sec
[junit] Running org.jpos.util.ValidatorTestCase
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.009
sec
>There must be something silly we are missing, perhaps the verbose view
will help.
I hope :(
> Here is a link to log:
> https://docs.google.com/leaf?id=0B1_q7bPCft35ZTIxMzY4ZWEtNjM4MC00ZTdkLWJjNzQtNTEzZTljZTJkY2Jh&hl=en
>
At the bottom is the log entry:-
[java] <log realm="jetty" at="Thu Feb 18 19:19:24 GMT 2010.299">
[java] <warn>
[java] init
[java] <exception name="cfg/jetty.xml (No such file or directory)">
[java] java.io.FileNotFoundException: cfg/jetty.xml (No such
file or directory)
[java] at java.io.FileInputStream.open(Native Method)
[java] at java.io.FileInputStream.<init>(FileInputStream.java:106)
[java] at java.io.FileInputStream.<init>(FileInputStream.java:66)
[java] at org.jpos.q2.jetty.Jetty6.initService(Jetty6.java:37)
[java] at org.jpos.q2.QBeanSupport.init(QBeanSupport.java:95)
[java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[java] at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
[java] at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
[java] at java.lang.reflect.Method.invoke(Method.java:597)
[java] at
com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:93)
[java] at
com.sun.jmx.mbeanserver.StandardMBeanIntrospector.invokeM2(StandardMBeanIntrospector.java:27)
[java] at
com.sun.jmx.mbeanserver.MBeanIntrospector.invokeM(MBeanIntrospector.java:208)
[java] at
com.sun.jmx.mbeanserver.PerInterface.invoke(PerInterface.java:120)
[java] at
com.sun.jmx.mbeanserver.MBeanSupport.invoke(MBeanSupport.java:262)
[java] at
com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:836)
[java] at
com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:761)
[java] at org.jpos.q2.QFactory.createQBean(QFactory.java:112)
[java] at org.jpos.q2.Q2.deploy(Q2.java:425)
[java] at org.jpos.q2.Q2.deploy(Q2.java:253)
[java] at org.jpos.q2.Q2.run(Q2.java:162)
[java] at java.lang.Thread.run(Thread.java:619)
[java] </exception>
[java] </warn>
[java] </log>
has jetty.xml the right name, has it changed or is it missing from the
modules/jetty6/cfg folder?
--
Mark
There is only a jetty.xml.example. I renamed it to jetty.xml in the
previous runs. I kept it as it is so you can look at a fresh ant
execution without me modifying anything in the code or directory
structure.
Then check the output from the ant run again, we want to see the
90_jetty.xml being deployed successfully (I think) - don't forget the
suppression of the SSL part or to generate the certificates if it remains.
--
Mark
I made the modification in the proper modules folder (instead of build
folder), and performed clean run. The result is the same as before,
only heartbeat and syslog module in the web interface, no other
modules seems to be loaded.
[java] <log realm="Q2.system" at="Thu Feb 18 20:36:28 GMT
2010.483">
[java] <info>
[java] Q2 started, deployDir=/root/jposee-read-only/build/
deploy
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 18 20:36:28 GMT
2010.530">
[java] <info>
[java] Initializing config decoration provider:
org.jpos.q2.freemarker.FreemarkerDecorationProvider
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 18 20:36:28 GMT
2010.746">
[java] <info>
[java] new classloader [16bd8ea] has been created
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 18 20:36:28 GMT
2010.747">
[java] <info>
[java] deploy:/root/jposee-read-only/build/deploy/
01_start.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 18 20:36:28 GMT
2010.867">
[java] <info>
[java] deploy:/root/jposee-read-only/build/deploy/
02_status_heartbeat.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 18 20:36:32 GMT
2010.250">
[java] <info>
[java] deploy:/root/jposee-read-only/build/deploy/
90_jetty.xml
[java] </info>
[java] </log>
[java] <log realm="Q2.system" at="Thu Feb 18 20:36:32 GMT
2010.467">
[java] <info>
[java] deploy:/root/jposee-read-only/build/deploy/
Ok, so let's check what modules you have deployed again.
Perhaps what we are missing is that the modules you have don't
contribute unless they are 'used'.
Shall we start over, as I suspect we have been trying to solve a problem
that doesn't really exist.
--
Mark
will help.