<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-2219</id>
	<title>Nabble - AspectJ - users</title>
	<updated>2009-11-20T17:18:05Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/AspectJ---users-f2219.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AspectJ---users-f2219.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26452809</id>
	<title>Re: WeavingAdapter - how to use it?</title>
	<published>2009-11-20T17:18:05Z</published>
	<updated>2009-11-20T17:18:05Z</updated>
	<author>
		<name>Andrica Silviu</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;thank you for the replies!
&lt;br&gt;&lt;br&gt;On Nov 20, 2009, at 11:45 PM, Andy Clement wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; I use my own agent, to perform other types of analysis on the bytecode. Thus I would like to use the load-time facilities offered
&lt;br&gt;&amp;gt;&amp;gt; by AspectJ out of their normal context. I searched a bit and I found WeaverAdapter. However, what is not clear to me is how
&lt;br&gt;&amp;gt;&amp;gt; to use it. Could someone point me to a tutorial, example, etc?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Unfortunately there is no real documentation on that. &amp;nbsp;You may find
&lt;br&gt;&amp;gt; some googling through the mailing list archives as a few people have
&lt;br&gt;&amp;gt; done it before, but it hasn't been formally written up due to lack of
&lt;br&gt;&amp;gt; time. &amp;nbsp;If anyone wants to help out fleshing out the details, the wiki
&lt;br&gt;&amp;gt; space on &lt;a href=&quot;http://wiki.eclipse.org/AspectJ&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.eclipse.org/AspectJ&lt;/a&gt;&amp;nbsp;would be a great place to
&lt;br&gt;&amp;gt; document it...
&lt;/div&gt;I found such a question, with example code, but I wasn't able to instrument anything :(.
&lt;/div&gt;&lt;br&gt;Please find attached the source code for my little experiment. I followed some guidelines I found in a previous mail sent to this list. However, it does not work for me.
&lt;br&gt;I should mention I am using Java 6, with AspectJ 1.6.6
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;&lt;br&gt;To run a small test, compile the code and execute 
&lt;br&gt;java TestStatic Test.class
&lt;br&gt;This will output the INSTR_Test.class file that one can rename to Test.class and inspect with
&lt;br&gt;javap -c -private Test
&lt;br&gt;&lt;br&gt;This will show that the instrumentation has not been performed.
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; My initial advice would be to look at how it is used by AspectJ
&lt;br&gt;&amp;gt; itself. &amp;nbsp;See the Aj/WeavingURLClassLoader class and other types in
&lt;br&gt;&amp;gt; that package.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; I would like to ask what is the GeneratedClassHandler for?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; As part of weaving, AspectJ may create classes, for example marker
&lt;br&gt;&amp;gt; interfaces or closures for around advice weaving. &amp;nbsp;These are passed to
&lt;br&gt;&amp;gt; the GeneratedClassHandler which should decide what to do with them -
&lt;br&gt;&amp;gt; probably define them to the classloader.
&lt;br&gt;&amp;gt; 
&lt;/div&gt;Thanks for clearing that up!
&lt;br&gt;&amp;gt;&amp;gt; Also, do I need to pass to the WeaverAdapter the entire classpath for the classes, since I already have the bytes of the class I want to instrument?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The weaver (inside the adapter) will need to be able to resolve types.
&lt;br&gt;&amp;gt; It won't weave anything you don't ask it to, but in the process of
&lt;br&gt;&amp;gt; weaving what you want it may need to look up many types to determine
&lt;br&gt;&amp;gt; whether pointcuts match. &amp;nbsp;Is there a reason you can't just give it a
&lt;br&gt;&amp;gt; suitable classpath?
&lt;br&gt;&amp;gt; 
&lt;/div&gt;You're right.
&lt;br&gt;&amp;gt;&amp;gt; Also, for the URLs for the aspects, do these have to point to an .aj file? or a compiled version? I tried with the &amp;quot;.aj&amp;quot; files but no success.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Compiled version, there is no on the fly compilation. &amp;nbsp;Although LTW
&lt;br&gt;&amp;gt; does support a rudimentary form of defining aspects in aop.xml.
&lt;br&gt;I used ajc with the option of creating a jar.
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Silviu
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Andy
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; aspectj-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452809&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aspectj-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/aspectj-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/aspectj-users&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;aspectj-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26452809&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aspectj-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/aspectj-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/aspectj-users&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;Example.zip&lt;/strong&gt; (6K) &lt;a href=&quot;http://old.nabble.com/attachment/26452809/0/Example.zip&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/WeavingAdapter---how-to-use-it--tp26449476p26452809.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26451764</id>
	<title>Re: Performance of newest dev build and marker  creation times</title>
	<published>2009-11-20T15:12:22Z</published>
	<updated>2009-11-20T15:12:22Z</updated>
	<author>
		<name>Andrew Eisenberg</name>
	</author>
	<content type="html">Hi Thomas,
&lt;br&gt;&lt;br&gt;A new build of AJDT for 3.4 is available now. &amp;nbsp;It contains the
&lt;br&gt;non-blocking marker updating as described in bug 295713. &amp;nbsp;Please let
&lt;br&gt;me know if this helps with your build times.
&lt;br&gt;&lt;br&gt;On Fri, Nov 20, 2009 at 11:59 AM, Thomas Hofmann
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26451764&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;email@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Andy, Andrew
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I know upgraded to ajdt_2.0.1.e34x-20091118-1600 to benfit from the
&lt;br&gt;&amp;gt; performance enhancements in AspectJ 1.6.7.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Would you mind to look at the times taken from the AJDT Event Trace.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; For me it looks like marker creation is taking very long.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Below you can find the output from to Workspace Clean and complete rebuild
&lt;br&gt;&amp;gt; cycles using Build Automitically.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks, Thomas
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:15:35 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:15:35 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:15:41 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:15:41 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:15:41 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.businessobjects.persistent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:15:41 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:15:41 Removed problems and tasks for project com.dcx.ivkmds.fwk.rcs
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:15:42 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:15:42 Removed problems and tasks for project com.dcx.ivkmds.csolver.cts
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:15:47 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:15:47 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.persistent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:15:50 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:15:51 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:15:51 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:20 Compiler configuration for project com.dcx.ivkmds.csolver.cts
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:25 Removed problems and tasks for project com.dcx.ivkmds.fwk.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:25 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:25 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:27 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:27 Removed problems and tasks for project com.dcx.ivkmds.csolver.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:28 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:31 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:33 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:35 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._00_fwktest.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:35 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:35 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:35 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:35 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:35 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:36 Removed problems and tasks for project com.dcx.ivkmds.testfwk
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:38 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:38 Removed problems and tasks for project com.dcx.ivkmds.fwk.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:44 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:44 Removed problems and tasks for project com.dcx.ivkmds.fwk.test.rcs
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:44 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:44 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:44 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:44 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.test.cts
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:44 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:44 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:51 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:51 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:52 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:52 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.rcs.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:52 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:52 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:52 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:52 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:52 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:52 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:52 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:52 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:54 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:56 Compiler configuration for project com.dcx.ivkmds.fwk.ass doesn't
&lt;br&gt;&amp;gt; know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:56 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist doesn't know previous state, so
&lt;br&gt;&amp;gt; assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:58 Timer event: 1479ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1566ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1579ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1579ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1580ms: Delete markers: com.dcx.ivkmds.fwk.rcs
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.fwk.rcs)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1580ms: Delete markers: com.dcx.ivkmds.csolver.test.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1583ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1583ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.businessobjects.persistent (Finished deleting
&lt;br&gt;&amp;gt; markers for com.dcx.ivkmds.fwk.common.businessobjects.persistent)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1518ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1519ms: Delete markers: com.dcx.ivkmds.application.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.application.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1519ms: Delete markers: com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.fwk.test.common)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1521ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1521ms: Delete markers: com.dcx.ivkmds.csolver.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1522ms: Delete markers: com.dcx.ivkmds.csolver.cts
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.cts)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1552ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.persistent (Finished deleting markers
&lt;br&gt;&amp;gt; for com.dcx.ivkmds.common.businessobjects.persistent)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1552ms: Delete markers: com.dcx.ivkmds._00_fwktest.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds._00_fwktest.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1552ms: Delete markers: com.dcx.ivkmds.csolver.test.cts
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.test.cts)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1569ms: Delete markers: com.dcx.ivkmds.testfwk
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.testfwk)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1558ms: Delete markers: com.dcx.ivkmds.fwk.test.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.fwk.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 76ms: Delete markers: com.dcx.ivkmds.fwk.test.rcs
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.fwk.test.rcs)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:16:59 Timer event: 1ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.rcs.standalone (Finished deleting markers
&lt;br&gt;&amp;gt; for com.dcx.ivkmds.application.test.rcs.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj doesn't know previous state, so
&lt;br&gt;&amp;gt; assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Project=com.dcx.ivkmds.fwk.common.spec.trace.aspectj, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Timer event: 60ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj has been read by compiler.
&lt;br&gt;&amp;gt; Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Timer event: 244ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Timer event: 286ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Timer event: 311ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Types affected during build = 2
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Timer event: 373ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:5 Timer event: 211ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.common.spec.trace.aspectj
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:35
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:35 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:35 Project=com.dcx.ivkmds.fwk.common.ass.persist, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:35 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:35 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:35 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:35 Timer event: 41ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:35 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:35      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:35 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:35 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:36 Timer event: 1096ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:36 Timer event: 1210ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Timer event: 2219ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Types affected during build = 48
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Timer event: 2266ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.businessobjects.persistent doesn't know previous
&lt;br&gt;&amp;gt; state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Project=com.dcx.ivkmds.fwk.common.businessobjects.persistent, kind
&lt;br&gt;&amp;gt; of build requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Timer event: 179ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.common.ass.persist
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Timer event: 343ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.businessobjects.persistent has been read by
&lt;br&gt;&amp;gt; compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:37 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:38 Timer event: 301ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:38 Timer event: 304ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:38 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:38 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:38 Timer event: 356ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:38 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:38 Types affected during build = 6
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:38 Timer event: 701ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:38 Timer event: 184ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.common.businessobjects.persistent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:39 Compiler configuration for project com.dcx.ivkmds.fwk.rcs doesn't
&lt;br&gt;&amp;gt; know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:39
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:39 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:39 Project=com.dcx.ivkmds.fwk.rcs, kind of build requested=Full AspectJ
&lt;br&gt;&amp;gt; compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:39 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:39 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:39 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:40 Timer event: 368ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:40 Compiler configuration for project com.dcx.ivkmds.fwk.rcs has been
&lt;br&gt;&amp;gt; read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:40      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:40 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:40 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:42 Timer event: 1922ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:42 Timer event: 2056ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 Timer event: 4918ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 Types affected during build = 87
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 Timer event: 5315ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 Project=com.dcx.ivkmds.csolver.cts, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 Timer event: 188ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.rcs
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 Timer event: 248ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 Compiler configuration for project com.dcx.ivkmds.csolver.cts has
&lt;br&gt;&amp;gt; been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:45 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:47 Timer event: 2348ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:17:48 Timer event: 2445ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:8 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:8 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:8 Timer event: 22476ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:8 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:8 Types affected during build = 356
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:8 Timer event: 22842ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:8 Timer event: 204ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.csolver.cts
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:9 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.persistent doesn't know previous
&lt;br&gt;&amp;gt; state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:9
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:9 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:9 Project=com.dcx.ivkmds.common.businessobjects.persistent, kind of
&lt;br&gt;&amp;gt; build requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:9 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:9 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:9 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:16 Timer event: 7027ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:17 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.persistent has been read by compiler.
&lt;br&gt;&amp;gt; Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:17      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:17 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:17 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:21 Timer event: 4932ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:21 Timer event: 4937ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:30 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:32 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:32 Timer event: 15816ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:32 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:32 Types affected during build = 331
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:32 Timer event: 23103ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:33 Timer event: 232ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.common.businessobjects.persistent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:36 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest doesn't know previous state,
&lt;br&gt;&amp;gt; so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:36
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:36 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:36 Project=com.dcx.ivkmds.common.businessobjects.fwktest, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:36 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:36 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:36 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:37 Timer event: 605ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:37 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest has been read by compiler.
&lt;br&gt;&amp;gt; Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:37      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:37 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:37 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:38 Timer event: 1018ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:38 Timer event: 1037ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:38 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:39 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:39 Timer event: 1570ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:39 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:39 Types affected during build = 32
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:39 Timer event: 2197ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:18:39 Timer event: 245ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.common.businessobjects.fwktest
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:23
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:23 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:23 Project=com.dcx.ivkmds.fwk.ass, kind of build requested=Full AspectJ
&lt;br&gt;&amp;gt; compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:23 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:23 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:23 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:24 Timer event: 766ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:24 Compiler configuration for project com.dcx.ivkmds.fwk.ass has been
&lt;br&gt;&amp;gt; read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:24      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:24 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:24 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:27 Timer event: 3725ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:28 Timer event: 3936ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:35 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:35 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:35 Timer event: 10997ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:35 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:35 Types affected during build = 117
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:35 Timer event: 11775ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:35 Timer event: 235ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:37 Compiler configuration for project com.dcx.ivkmds.application.ass
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:37
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:37 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:37 Project=com.dcx.ivkmds.application.ass, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:37 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:37 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:37 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:44 Timer event: 7249ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:45 Compiler configuration for project com.dcx.ivkmds.application.ass
&lt;br&gt;&amp;gt; has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:45      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:45 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:45 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:51 Timer event: 7304ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:20:51 Timer event: 7329ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Timer event: 27996ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Types affected during build = 296
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Timer event: 35286ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Compiler configuration for project com.dcx.ivkmds.csolver.ass
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Project=com.dcx.ivkmds.csolver.ass, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Timer event: 122ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Compiler configuration for project com.dcx.ivkmds.csolver.ass has
&lt;br&gt;&amp;gt; been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:12 Timer event: 249ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.application.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:14 Timer event: 2115ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:14 Timer event: 2181ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:28 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:28 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:28 Timer event: 15584ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:28 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:28 Types affected during build = 87
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:28 Timer event: 15716ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:28 Timer event: 337ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.csolver.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:33 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass doesn't know previous state, so
&lt;br&gt;&amp;gt; assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:33
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:33 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:33 Project=com.dcx.ivkmds._45_export_import.ass, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:33 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:33 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:33 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:34 Timer event: 283ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:35 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:35      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:35 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:35 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:41 Timer event: 7831ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:41 Timer event: 7852ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:58 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:58 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:58 Timer event: 24754ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:58 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:58 Types affected during build = 428
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:58 Timer event: 25098ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:21:59 Timer event: 281ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds._45_export_import.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:8 Compiler configuration for project com.dcx.ivkmds._00_fwktest.ass
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:8
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:8 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:8 Project=com.dcx.ivkmds._00_fwktest.ass, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:8 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:8 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:8 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:8 Timer event: 89ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:8 Compiler configuration for project com.dcx.ivkmds._00_fwktest.ass has
&lt;br&gt;&amp;gt; been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:8      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:8 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:8 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:8 Timer event: 283ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Timer event: 1026ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Timer event: 1586ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Types affected during build = 4
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Timer event: 1677ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone doesn't know previous state, so
&lt;br&gt;&amp;gt; assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Project=com.dcx.ivkmds.csolver.cts.standalone, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Timer event: 102ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:9 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:10 Timer event: 288ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds._00_fwktest.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:10 Timer event: 285ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:10 Timer event: 304ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:10 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:10 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:10 Timer event: 951ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:10 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:10 Types affected during build = 17
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:10 Timer event: 1055ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone doesn't know previous state, so
&lt;br&gt;&amp;gt; assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11 Project=com.dcx.ivkmds.application.rcs.standalone, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11 Timer event: 96ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone has been read by compiler.
&lt;br&gt;&amp;gt; Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11 Timer event: 308ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.csolver.cts.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11 Timer event: 634ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:11 Timer event: 636ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Timer event: 957ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Types affected during build = 9
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Timer event: 1060ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Compiler configuration for project com.dcx.ivkmds.testfwk doesn't
&lt;br&gt;&amp;gt; know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Project=com.dcx.ivkmds.testfwk, kind of build requested=Full AspectJ
&lt;br&gt;&amp;gt; compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Timer event: 502ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Compiler configuration for project com.dcx.ivkmds.testfwk has been
&lt;br&gt;&amp;gt; read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:12 Timer event: 635ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.application.rcs.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:16 Timer event: 3261ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:16 Timer event: 3401ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:18 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Timer event: 6188ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Types affected during build = 45
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Timer event: 6761ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Compiler configuration for project com.dcx.ivkmds.fwk.test.ass
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Project=com.dcx.ivkmds.fwk.test.ass, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Timer event: 311ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.testfwk
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Timer event: 500ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Compiler configuration for project com.dcx.ivkmds.fwk.test.ass has
&lt;br&gt;&amp;gt; been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:19 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:20 Timer event: 817ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:20 Timer event: 977ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Timer event: 10192ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Types affected during build = 28
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Timer event: 10736ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Compiler configuration for project com.dcx.ivkmds.fwk.test.rcs
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Project=com.dcx.ivkmds.fwk.test.rcs, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Timer event: 45ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Timer event: 40ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Compiler configuration for project com.dcx.ivkmds.fwk.test.rcs has
&lt;br&gt;&amp;gt; been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:29 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Timer event: 165ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Types affected during build = 0
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Timer event: 211ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Compiler configuration for project com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Project=com.dcx.ivkmds.fwk.test.common, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Timer event: 77ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Timer event: 48ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.test.rcs
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Compiler configuration for project com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt; has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Timer event: 368ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:30 Timer event: 380ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Timer event: 1180ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Types affected during build = 6
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Timer event: 1272ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Compiler configuration for project com.dcx.ivkmds.csolver.test.cts
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Project=com.dcx.ivkmds.csolver.test.cts, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Timer event: 52ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Timer event: 395ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Compiler configuration for project com.dcx.ivkmds.csolver.test.cts
&lt;br&gt;&amp;gt; has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:31 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:32 Timer event: 677ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:32 Timer event: 688ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:34 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:35 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:35 Timer event: 3562ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:35 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:35 Types affected during build = 37
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:35 Timer event: 3973ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:35 Timer event: 44ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.csolver.test.cts
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:47 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass doesn't know previous state, so assuming
&lt;br&gt;&amp;gt; EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:47
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:47 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:47 Project=com.dcx.ivkmds.application.test.ass, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:47 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:47 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:47 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:47 Timer event: 212ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:47 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:47      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:47 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:47 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:49 Timer event: 1449ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:22:49 Timer event: 1466ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:8 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:8 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:8 Timer event: 21102ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:8 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:8 Types affected during build = 187
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9 Timer event: 21651ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9 Compiler configuration for project com.dcx.ivkmds.csolver.test.ass
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9 Project=com.dcx.ivkmds.csolver.test.ass, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9 Timer event: 67ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.application.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9 Timer event: 95ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9 Compiler configuration for project com.dcx.ivkmds.csolver.test.ass
&lt;br&gt;&amp;gt; has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9 Timer event: 656ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:9 Timer event: 722ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Timer event: 4575ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Types affected during build = 31
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Timer event: 4723ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.rcs.standalone doesn't know previous state,
&lt;br&gt;&amp;gt; so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Project=com.dcx.ivkmds.application.test.rcs.standalone, kind of
&lt;br&gt;&amp;gt; build requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Timer event: 46ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.csolver.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Timer event: 82ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.rcs.standalone has been read by compiler.
&lt;br&gt;&amp;gt; Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:13 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Timer event: 428ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Timer event: 437ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Timer event: 457ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Types affected during build = 1
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Timer event: 545ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common doesn't know previous state, so
&lt;br&gt;&amp;gt; assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Project=com.dcx.ivkmds.application.test.common, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Timer event: 50ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Timer event: 48ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.application.test.rcs.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common has been read by compiler.
&lt;br&gt;&amp;gt; Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:14 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Timer event: 729ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Timer event: 781ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Timer event: 837ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Types affected during build = 1
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Timer event: 897ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass doesn't know previous state, so assuming
&lt;br&gt;&amp;gt; EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Project=com.dcx.ivkmds._55_archive.test.ass, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Timer event: 46ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.application.test.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Timer event: 180ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Timer event: 482ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:15 Timer event: 503ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Timer event: 667ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Types affected during build = 2
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Timer event: 860ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass doesn't know previous state, so assuming
&lt;br&gt;&amp;gt; EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Project=com.dcx.ivkmds._50_reports.test.ass, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Timer event: 108ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds._55_archive.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Timer event: 232ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:16 Timer event: 454ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17 Timer event: 1072ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17 Timer event: 1166ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17 Types affected during build = 1
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17 Timer event: 1411ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass doesn't know previous state, so
&lt;br&gt;&amp;gt; assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17 Project=com.dcx.ivkmds._45_export_import.test.ass, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:17 Timer event: 59ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds._50_reports.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:19 Timer event: 1771ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:19 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass has been read by compiler.
&lt;br&gt;&amp;gt; Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:19      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:19 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:19 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:20 Timer event: 1012ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:20 Timer event: 1028ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:21 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 2981ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Types affected during build = 28
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 4803ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 102ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds._45_export_import.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 19ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 239ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 0ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Created 0 markers in 2 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 240ms: Delete markers: com.dcx.ivkmds.fwk.rcs (Finished
&lt;br&gt;&amp;gt; deleting markers for com.dcx.ivkmds.fwk.rcs)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 250ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 257ms: Delete markers: com.dcx.ivkmds.fwk.ass (Finished
&lt;br&gt;&amp;gt; deleting markers for com.dcx.ivkmds.fwk.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 259ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 287ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.rcs.standalone (Finished deleting markers
&lt;br&gt;&amp;gt; for com.dcx.ivkmds.application.test.rcs.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 0ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.rcs.standalone (Finished creating markers
&lt;br&gt;&amp;gt; for com.dcx.ivkmds.application.test.rcs.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Created 0 markers in 1 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 287ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.persistent (Finished deleting markers
&lt;br&gt;&amp;gt; for com.dcx.ivkmds.common.businessobjects.persistent)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 294ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.businessobjects.persistent (Finished deleting
&lt;br&gt;&amp;gt; markers for com.dcx.ivkmds.fwk.common.businessobjects.persistent)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 1ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.businessobjects.persistent (Finished creating
&lt;br&gt;&amp;gt; markers for com.dcx.ivkmds.fwk.common.businessobjects.persistent)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Created 0 markers in 6 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 298ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 310ms: Delete markers: com.dcx.ivkmds.application.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.application.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 315ms: Delete markers: com.dcx.ivkmds._00_fwktest.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds._00_fwktest.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 317ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 318ms: Delete markers: com.dcx.ivkmds.testfwk (Finished
&lt;br&gt;&amp;gt; deleting markers for com.dcx.ivkmds.testfwk)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 325ms: Delete markers: com.dcx.ivkmds.csolver.cts
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.cts)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 329ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 384ms: Delete markers: com.dcx.ivkmds.fwk.test.rcs
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.fwk.test.rcs)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 0ms: Create markers: com.dcx.ivkmds.fwk.test.rcs
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.fwk.test.rcs)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Created 0 markers in 0 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:22 Timer event: 401ms: Delete markers: com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.fwk.test.common)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:23 Timer event: 694ms: Delete markers: com.dcx.ivkmds.csolver.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:23 Timer event: 694ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:23 Timer event: 708ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:23 Timer event: 703ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:23 Timer event: 709ms: Delete markers: com.dcx.ivkmds.csolver.test.cts
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.test.cts)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:23 Timer event: 710ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:23 Timer event: 716ms: Delete markers: com.dcx.ivkmds.fwk.test.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.fwk.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:23 Timer event: 1296ms: Delete markers: com.dcx.ivkmds.csolver.test.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:26 Timer event: 3546ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:26 Created 2 markers in 9 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:29 Timer event: 7030ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:29 Created 4 markers in 1 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:31 Timer event: 8516ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:31 Created 5 markers in 1 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:33 Timer event: 10248ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:33 Created 7 markers in 17 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:35 Timer event: 12220ms: Create markers: com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.fwk.test.common)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:35 Created 9 markers in 4 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:38 Timer event: 15760ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:23:38 Created 14 markers in 2 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:5 Timer event: 42506ms: Create markers: com.dcx.ivkmds.csolver.test.cts
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.csolver.test.cts)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:5 Created 53 markers in 37 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:7 Timer event: 43948ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:7 Created 55 markers in 48 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:7 Timer event: 45166ms: Create markers: com.dcx.ivkmds.fwk.rcs
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.fwk.rcs)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:7 Created 57 markers in 87 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:26 Timer event: 64000ms: Create markers: com.dcx.ivkmds.testfwk
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.testfwk)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:26 Created 93 markers in 45 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:29 Timer event: 65794ms: Create markers: com.dcx.ivkmds.csolver.ass
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.csolver.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:29 Created 97 markers in 87 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:34 Timer event: 71591ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:34 Created 111 markers in 32 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:52 Timer event: 89930ms: Create markers: com.dcx.ivkmds.csolver.cts
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.csolver.cts)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:52 Created 167 markers in 356 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:55 Timer event: 91408ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.test.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:55 Created 176 markers in 31 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:55 Timer event: 92911ms: Create markers: com.dcx.ivkmds._00_fwktest.ass
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds._00_fwktest.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:24:55 Created 179 markers in 4 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:25:37 Timer event: 134179ms: Create markers: com.dcx.ivkmds.fwk.test.ass
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.fwk.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:25:37 Created 418 markers in 28 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:27:4 Timer event: 221604ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.persistent (Finished creating markers
&lt;br&gt;&amp;gt; for com.dcx.ivkmds.common.businessobjects.persistent)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:27:4 Created 1026 markers in 331 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:27:10 Timer event: 227149ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:27:10 Created 1097 markers in 187 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:28:45 Timer event: 322487ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:28:45 Created 2823 markers in 296 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:28:45 Timer event: 6ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:28:45 Timer event: 4ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:29:39
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:29:39 Build kind = AUTOBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:29:39 Project=com.dcx.ivkmds.fwk.test.common, kind of build
&lt;br&gt;&amp;gt; requested=Incremental AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:29:39 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 66534ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 7ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 build: Examined delta - no source file or classpath changes for
&lt;br&gt;&amp;gt; project com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.testfwk
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; org.apache.commons.collections
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; org.apache.commons.lang
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; org.hibernate
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.ibm.ebiz.fwk
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.iap.clientcontainer.plugin
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.lrt
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.error
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.lrt
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.time
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.cmd.ejb.client
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.error
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.jac
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.security
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.perflog
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.sun.xml.bind
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.health
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.rcs
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.businessobjects.persistent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.ibm.db2.jcc
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; org.springframework
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; org.apache.commons.beanutils
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.persistent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.application
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.ass.csservice
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.common.cts
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._05_product_structure.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._05_product_structure.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._10_code_base.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._10_code_base.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._15_master_data.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._15_master_data.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._20_sales_references.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._20_sales_references.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._25_dcm.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._25_dcm.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._30_central_data_transfer.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._30_central_data_transfer.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._35_documentation_news.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._35_documentation_news.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._40_development_doc.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._40_development_doc.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._65_test.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._65_test.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._70_configs_orders.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._70_configs_orders.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._80_transactions.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._80_transactions.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._85_administration.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._85_administration.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._90_misc.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._90_misc.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.common.ass.error
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.cscommlayer
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.common.ass.persist
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.ibm.ebiz.fwk.eclipse
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; org.testng.jdk15
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.ass.health.ejb.client
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45     Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Compiler configuration for project com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt; has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45      Configuration was []
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Resetting list of modified source files.  Was []
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 8ms: Look for source/resource changes
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 No source/resource changes found, exiting build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:30:45 Timer event: 66599ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:33:6 Timer event: 1ms: Delete markers: com.dcx.ivkmds.fwk.ass (Finished
&lt;br&gt;&amp;gt; deleting markers for com.dcx.ivkmds.fwk.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:33:6 Timer event: 0ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:33:6 Timer event: 71ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:33:9 Timer event: 3037ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:33:9 Created 16 markers in 428 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:33:11 Timer event: 5490ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:33:11 Created 65 markers in 28 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:33:15 Timer event: 9462ms: Create markers: com.dcx.ivkmds.fwk.ass
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.fwk.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 0:33:15 Created 162 markers in 117 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 11:59:58 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 11:59:58 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:0:0 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:0:0 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:0:0 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.businessobjects.persistent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:0:0 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:0:2 Removed problems and tasks for project com.dcx.ivkmds.fwk.rcs
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:0:2 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:0:2 Removed problems and tasks for project com.dcx.ivkmds.csolver.cts
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:0:3 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:0:3 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.persistent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:0:5 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:0:6 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:0:6 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:25 Removed problems and tasks for project com.dcx.ivkmds.fwk.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:27 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:28 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:33 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:33 Removed problems and tasks for project com.dcx.ivkmds.csolver.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:35 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:37 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:39 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:41 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._00_fwktest.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:41 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:41 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:41 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:41 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:41 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:41 Removed problems and tasks for project com.dcx.ivkmds.testfwk
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:42 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:42 Removed problems and tasks for project com.dcx.ivkmds.fwk.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:45 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:45 Removed problems and tasks for project com.dcx.ivkmds.fwk.test.rcs
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:45 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:45 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:45 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:45 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.test.cts
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:46 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:46 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:51 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:51 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:51 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:51 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.rcs.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:51 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:51 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:51 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:51 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:51 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:51 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:51 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:51 Removed problems and tasks for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:1:51 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3818ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.rcs.standalone (Finished deleting markers
&lt;br&gt;&amp;gt; for com.dcx.ivkmds.application.test.rcs.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3827ms: Delete markers: com.dcx.ivkmds.csolver.cts
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.cts)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3835ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3843ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.persistent (Finished deleting markers
&lt;br&gt;&amp;gt; for com.dcx.ivkmds.common.businessobjects.persistent)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3853ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3861ms: Delete markers: com.dcx.ivkmds._00_fwktest.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds._00_fwktest.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3868ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3876ms: Delete markers: com.dcx.ivkmds.fwk.test.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.fwk.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3892ms: Delete markers: com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.fwk.test.common)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3908ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3938ms: Delete markers: com.dcx.ivkmds.application.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.application.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3947ms: Delete markers: com.dcx.ivkmds.csolver.test.cts
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.test.cts)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3950ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3952ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3954ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3961ms: Delete markers: com.dcx.ivkmds.csolver.test.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3961ms: Delete markers: com.dcx.ivkmds.fwk.test.rcs
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.fwk.test.rcs)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3968ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.businessobjects.persistent (Finished deleting
&lt;br&gt;&amp;gt; markers for com.dcx.ivkmds.fwk.common.businessobjects.persistent)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3972ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3983ms: Delete markers: com.dcx.ivkmds.testfwk (Finished
&lt;br&gt;&amp;gt; deleting markers for com.dcx.ivkmds.testfwk)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 3988ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 4010ms: Delete markers: com.dcx.ivkmds.fwk.rcs (Finished
&lt;br&gt;&amp;gt; deleting markers for com.dcx.ivkmds.fwk.rcs)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 4063ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:0 Timer event: 4102ms: Delete markers: com.dcx.ivkmds.fwk.ass (Finished
&lt;br&gt;&amp;gt; deleting markers for com.dcx.ivkmds.fwk.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:1 Timer event: 4145ms: Delete markers: com.dcx.ivkmds.csolver.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:1 Timer event: 4188ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:16 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj doesn't know previous state, so
&lt;br&gt;&amp;gt; assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:16
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:16 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:16 Project=com.dcx.ivkmds.fwk.common.spec.trace.aspectj, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:16 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:16 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:16 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:17 Timer event: 169ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:17 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj has been read by compiler.
&lt;br&gt;&amp;gt; Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:17      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:17 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:17 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:17 Timer event: 415ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:17 Timer event: 417ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:17 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:17 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:17 Timer event: 464ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:17 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:17 Types affected during build = 2
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:17 Timer event: 635ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:17 Timer event: 27ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.common.spec.trace.aspectj
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:58 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist doesn't know previous state, so
&lt;br&gt;&amp;gt; assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:58
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:58 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:58 Project=com.dcx.ivkmds.fwk.common.ass.persist, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:58 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:58 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:58 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:58 Timer event: 112ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:58 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:58      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:58 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:2:58 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:1 Timer event: 3152ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:1 Timer event: 3309ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:3 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:3 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:3 Timer event: 5590ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:3 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:3 Types affected during build = 48
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:3 Timer event: 5707ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:3 Timer event: 9ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.common.ass.persist
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:3 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.businessobjects.persistent doesn't know previous
&lt;br&gt;&amp;gt; state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:3
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:3 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:3 Project=com.dcx.ivkmds.fwk.common.businessobjects.persistent, kind of
&lt;br&gt;&amp;gt; build requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:3 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:3 Timer event: 1ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:3 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:4 Timer event: 490ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:4 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.businessobjects.persistent has been read by
&lt;br&gt;&amp;gt; compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:4      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:4 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:4 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:4 Timer event: 376ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:4 Timer event: 379ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:4 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:4 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:4 Timer event: 426ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:4 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:4 Types affected during build = 6
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:4 Timer event: 919ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:4 Timer event: 8ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.common.businessobjects.persistent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:8 Compiler configuration for project com.dcx.ivkmds.fwk.rcs doesn't
&lt;br&gt;&amp;gt; know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:8
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:8 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:8 Project=com.dcx.ivkmds.fwk.rcs, kind of build requested=Full AspectJ
&lt;br&gt;&amp;gt; compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:8 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:8 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:8 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:8 Timer event: 191ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:9 Compiler configuration for project com.dcx.ivkmds.fwk.rcs has been
&lt;br&gt;&amp;gt; read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:9      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:9 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:9 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:19 Timer event: 10324ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:19 Timer event: 10339ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:26 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:26 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:26 Timer event: 17625ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:26 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:26 Types affected during build = 87
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:26 Timer event: 17837ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:26 Timer event: 9ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.rcs
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:26 Compiler configuration for project com.dcx.ivkmds.csolver.cts
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:26
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:26 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:26 Project=com.dcx.ivkmds.csolver.cts, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:26 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:26 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:26 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:27 Timer event: 357ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:27 Compiler configuration for project com.dcx.ivkmds.csolver.cts has
&lt;br&gt;&amp;gt; been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:27      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:27 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:27 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:38 Timer event: 11740ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:3:38 Timer event: 11884ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:21 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:23 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:23 Timer event: 56046ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:23 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:23 Types affected during build = 356
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:23 Timer event: 56478ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:23 Timer event: 8ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.csolver.cts
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:25 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.persistent doesn't know previous
&lt;br&gt;&amp;gt; state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:25
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:25 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:25 Project=com.dcx.ivkmds.common.businessobjects.persistent, kind of
&lt;br&gt;&amp;gt; build requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:25 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:25 Timer event: 1ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:25 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:30 Timer event: 5907ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:31 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.persistent has been read by compiler.
&lt;br&gt;&amp;gt; Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:31      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:31 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:31 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:36 Timer event: 5190ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:36 Timer event: 5192ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:4:53 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:3 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:3 Timer event: 32307ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:3 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:3 Types affected during build = 331
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:3 Timer event: 38641ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:3 Timer event: 20ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.common.businessobjects.persistent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:6 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest doesn't know previous state,
&lt;br&gt;&amp;gt; so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:6
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:6 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:6 Project=com.dcx.ivkmds.common.businessobjects.fwktest, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:6 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:6 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:6 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:6 Timer event: 340ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:6 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest has been read by compiler.
&lt;br&gt;&amp;gt; Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:6      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:6 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:6 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:7 Timer event: 560ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:7 Timer event: 570ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:7 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:8 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:8 Timer event: 1139ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:8 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:8 Types affected during build = 32
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:8 Timer event: 1497ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:5:8 Timer event: 8ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.common.businessobjects.fwktest
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:49 Compiler configuration for project com.dcx.ivkmds.fwk.ass doesn't
&lt;br&gt;&amp;gt; know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:49
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:49 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:49 Project=com.dcx.ivkmds.fwk.ass, kind of build requested=Full AspectJ
&lt;br&gt;&amp;gt; compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:49 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:49 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:49 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:50 Timer event: 350ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:50 Compiler configuration for project com.dcx.ivkmds.fwk.ass has been
&lt;br&gt;&amp;gt; read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:50      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:50 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:50 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:54 Timer event: 3875ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:54 Timer event: 4018ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:58 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:58 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:58 Timer event: 8226ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:58 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:58 Types affected during build = 117
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:58 Timer event: 8586ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:6:58 Timer event: 8ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:0 Compiler configuration for project com.dcx.ivkmds.application.ass
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:0
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:0 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:0 Project=com.dcx.ivkmds.application.ass, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:0 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:0 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:0 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:6 Timer event: 6123ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:7 Compiler configuration for project com.dcx.ivkmds.application.ass has
&lt;br&gt;&amp;gt; been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:7      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:7 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:7 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:14 Timer event: 8214ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:14 Timer event: 8246ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Timer event: 28032ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Types affected during build = 296
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Timer event: 34187ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Timer event: 10ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.application.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Compiler configuration for project com.dcx.ivkmds.csolver.ass
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Project=com.dcx.ivkmds.csolver.ass, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Timer event: 124ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Compiler configuration for project com.dcx.ivkmds.csolver.ass has
&lt;br&gt;&amp;gt; been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:34 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:36 Timer event: 1850ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:36 Timer event: 1935ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:49 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:49 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:49 Timer event: 14870ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:49 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:49 Types affected during build = 87
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:49 Timer event: 15002ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:49 Timer event: 339ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.csolver.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:55 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass doesn't know previous state, so
&lt;br&gt;&amp;gt; assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:55
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:55 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:55 Project=com.dcx.ivkmds._45_export_import.ass, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:55 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:55 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:55 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:55 Timer event: 158ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:55 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:55      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:55 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:7:55 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:2 Timer event: 6934ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:2 Timer event: 6952ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:20 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:20 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:20 Timer event: 24853ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:20 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:20 Types affected during build = 428
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:20 Timer event: 25059ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:20 Timer event: 7ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds._45_export_import.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Compiler configuration for project com.dcx.ivkmds._00_fwktest.ass
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Project=com.dcx.ivkmds._00_fwktest.ass, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Timer event: 66ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Compiler configuration for project com.dcx.ivkmds._00_fwktest.ass
&lt;br&gt;&amp;gt; has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Timer event: 344ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Timer event: 430ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Timer event: 864ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Types affected during build = 4
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Timer event: 932ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone doesn't know previous state, so
&lt;br&gt;&amp;gt; assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Project=com.dcx.ivkmds.csolver.cts.standalone, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:35 Timer event: 9ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds._00_fwktest.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:36 Timer event: 172ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:36 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:36      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:36 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:36 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:36 Timer event: 632ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:36 Timer event: 643ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:37 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:37 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:37 Timer event: 1297ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:37 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:37 Types affected during build = 17
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:37 Timer event: 1472ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:37 Timer event: 9ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.csolver.cts.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:37 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone doesn't know previous state, so
&lt;br&gt;&amp;gt; assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:37
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:37 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:37 Project=com.dcx.ivkmds.application.rcs.standalone, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:37 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:37 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:37 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:38 Timer event: 235ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:38 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone has been read by compiler.
&lt;br&gt;&amp;gt; Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:38      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:38 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:38 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:38 Timer event: 702ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:38 Timer event: 703ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:38 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:38 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:38 Timer event: 946ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:38 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:38 Types affected during build = 9
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:39 Timer event: 1188ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:39 Timer event: 8ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.application.rcs.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:39 Compiler configuration for project com.dcx.ivkmds.testfwk doesn't
&lt;br&gt;&amp;gt; know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:39
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:39 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:39 Project=com.dcx.ivkmds.testfwk, kind of build requested=Full AspectJ
&lt;br&gt;&amp;gt; compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:39 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:39 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:39 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:39 Timer event: 623ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:39 Compiler configuration for project com.dcx.ivkmds.testfwk has been
&lt;br&gt;&amp;gt; read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:39      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:39 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:39 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:44 Timer event: 4970ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:45 Timer event: 5235ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:47 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:47 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:47 Timer event: 7946ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:47 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:47 Types affected during build = 45
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:47 Timer event: 8629ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:47 Timer event: 8ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.testfwk
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:47 Compiler configuration for project com.dcx.ivkmds.fwk.test.ass
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:47
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:47 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:47 Project=com.dcx.ivkmds.fwk.test.ass, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:47 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:47 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:47 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:48 Timer event: 633ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:48 Compiler configuration for project com.dcx.ivkmds.fwk.test.ass has
&lt;br&gt;&amp;gt; been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:48      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:48 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:48 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:50 Timer event: 1564ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:8:50 Timer event: 1701ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Timer event: 11865ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Types affected during build = 28
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Timer event: 12538ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Compiler configuration for project com.dcx.ivkmds.fwk.test.rcs
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Timer event: 8ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Project=com.dcx.ivkmds.fwk.test.rcs, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Timer event: 42ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Compiler configuration for project com.dcx.ivkmds.fwk.test.rcs has
&lt;br&gt;&amp;gt; been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Timer event: 113ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Types affected during build = 0
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Timer event: 162ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Compiler configuration for project com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Project=com.dcx.ivkmds.fwk.test.common, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Timer event: 8ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.test.rcs
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Timer event: 122ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Compiler configuration for project com.dcx.ivkmds.fwk.test.common has
&lt;br&gt;&amp;gt; been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:0 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 Timer event: 433ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 Timer event: 469ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 Timer event: 1137ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 Types affected during build = 6
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 Timer event: 1291ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 Timer event: 8ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 Compiler configuration for project com.dcx.ivkmds.csolver.test.cts
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 Project=com.dcx.ivkmds.csolver.test.cts, kind of build requested=Full
&lt;br&gt;&amp;gt; AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:1 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:3 Timer event: 1183ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:3 Compiler configuration for project com.dcx.ivkmds.csolver.test.cts
&lt;br&gt;&amp;gt; has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:3      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:3 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:3 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:4 Timer event: 1638ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:4 Timer event: 1655ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:6 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:7 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:7 Timer event: 4018ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:7 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:7 Types affected during build = 37
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:7 Timer event: 5214ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:7 Timer event: 8ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.csolver.test.cts
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:9 Timer event: 129ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:9 Timer event: 0ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:9 Created 0 markers in 2 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:9 Timer event: 154ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:9 Timer event: 154ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:9 Timer event: 159ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:9 Timer event: 164ms: Delete markers: com.dcx.ivkmds.fwk.rcs (Finished
&lt;br&gt;&amp;gt; deleting markers for com.dcx.ivkmds.fwk.rcs)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:9 Timer event: 164ms: Delete markers: com.dcx.ivkmds.csolver.test.cts
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.test.cts)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:9 Timer event: 171ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:9 Timer event: 179ms: Delete markers: com.dcx.ivkmds.application.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.application.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:9 Timer event: 223ms: Delete markers: com.dcx.ivkmds.testfwk (Finished
&lt;br&gt;&amp;gt; deleting markers for com.dcx.ivkmds.testfwk)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:9 Timer event: 228ms: Delete markers: com.dcx.ivkmds.csolver.cts
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.cts)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:9 Timer event: 248ms: Delete markers: com.dcx.ivkmds.csolver.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:10 Timer event: 985ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:10 Created 2 markers in 9 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:13 Timer event: 3645ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:13 Created 7 markers in 17 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:13 Timer event: 515ms: Delete markers: com.dcx.ivkmds.fwk.test.rcs
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.fwk.test.rcs)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:13 Timer event: 0ms: Create markers: com.dcx.ivkmds.fwk.test.rcs
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.fwk.test.rcs)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:13 Created 0 markers in 0 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:13 Timer event: 519ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:13 Timer event: 579ms: Delete markers: com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.fwk.test.common)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:13 Timer event: 580ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.persistent (Finished deleting markers
&lt;br&gt;&amp;gt; for com.dcx.ivkmds.common.businessobjects.persistent)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:13 Timer event: 583ms: Delete markers: com.dcx.ivkmds._00_fwktest.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds._00_fwktest.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:13 Timer event: 586ms: Delete markers: com.dcx.ivkmds.fwk.ass (Finished
&lt;br&gt;&amp;gt; deleting markers for com.dcx.ivkmds.fwk.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:13 Timer event: 589ms: Delete markers: com.dcx.ivkmds.fwk.test.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.fwk.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:19 Timer event: 9976ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:19 Created 16 markers in 428 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:19 Timer event: 6127ms: Create markers: com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.fwk.test.common)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:19 Created 9 markers in 4 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:40 Timer event: 30674ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.test.cts (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.test.cts)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:40 Created 53 markers in 37 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:42 Timer event: 32895ms: Create markers: com.dcx.ivkmds.fwk.rcs
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.fwk.rcs)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:42 Created 57 markers in 87 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:45 Timer event: 31789ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:9:45 Created 55 markers in 48 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:10:0 Timer event: 51121ms: Create markers: com.dcx.ivkmds.testfwk
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.testfwk)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:10:0 Created 93 markers in 45 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:10:4 Timer event: 55150ms: Create markers: com.dcx.ivkmds.csolver.ass
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.csolver.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:10:4 Created 97 markers in 87 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:10:11 Timer event: 61790ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.fwktest)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:10:11 Created 111 markers in 32 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:10:30 Timer event: 76834ms: Create markers: com.dcx.ivkmds.fwk.ass
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.fwk.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:10:30 Created 162 markers in 117 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:10:35 Timer event: 85515ms: Create markers: com.dcx.ivkmds.csolver.cts
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.csolver.cts)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:10:35 Created 167 markers in 356 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:10:37 Timer event: 83568ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._00_fwktest.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._00_fwktest.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:10:37 Created 179 markers in 4 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:11:11 Timer event: 117407ms: Create markers: com.dcx.ivkmds.fwk.test.ass
&lt;br&gt;&amp;gt; (Finished creating markers for com.dcx.ivkmds.fwk.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:11:11 Created 418 markers in 28 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:12:1 Timer event: 167988ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.persistent (Finished creating markers
&lt;br&gt;&amp;gt; for com.dcx.ivkmds.common.businessobjects.persistent)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:12:1 Created 1026 markers in 331 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:14 Timer event: 245166ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:14 Created 2823 markers in 296 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:28 Timer event: 0ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.businessobjects.persistent (Finished deleting
&lt;br&gt;&amp;gt; markers for com.dcx.ivkmds.fwk.common.businessobjects.persistent)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:28 Timer event: 1ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.businessobjects.persistent (Finished creating
&lt;br&gt;&amp;gt; markers for com.dcx.ivkmds.fwk.common.businessobjects.persistent)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:28 Created 0 markers in 6 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:34
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:34 Build kind = AUTOBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:34 Project=com.dcx.ivkmds.fwk.test.common, kind of build
&lt;br&gt;&amp;gt; requested=Incremental AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:34 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 1424ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 build: Examined delta - no source file or classpath changes for
&lt;br&gt;&amp;gt; project com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.testfwk
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; org.apache.commons.collections
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; org.apache.commons.lang
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; org.hibernate
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.ibm.ebiz.fwk
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.iap.clientcontainer.plugin
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.lrt
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.persist
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.error
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.lrt
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.time
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.cmd.ejb.client
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.error
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.jac
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.security
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.perflog
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.sun.xml.bind
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.ass.health
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.spec.trace.aspectj
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.rcs
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.common.businessobjects.persistent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.ibm.db2.jcc
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; org.springframework
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; org.apache.commons.beanutils
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.persistent
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.common.businessobjects.application
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.ass.csservice
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.common.cts
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._05_product_structure.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._05_product_structure.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._10_code_base.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._10_code_base.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._15_master_data.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._15_master_data.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._20_sales_references.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._20_sales_references.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._25_dcm.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._25_dcm.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._30_central_data_transfer.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._30_central_data_transfer.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._35_documentation_news.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._35_documentation_news.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._40_development_doc.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._40_development_doc.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._65_test.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._65_test.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._70_configs_orders.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._70_configs_orders.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._80_transactions.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._80_transactions.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._85_administration.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._85_administration.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._90_misc.common.ass.cmd
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._90_misc.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.common.ass.error
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.cscommlayer
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.common.ass.usecase
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.common.ass.persist
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.rcs
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.ibm.ebiz.fwk.eclipse
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.cts.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; org.testng.jdk15
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Looking for and marking configuration changes in
&lt;br&gt;&amp;gt; com.dcx.ivkmds.fwk.ass.health.ejb.client
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36    Configuration changes found: false
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Compiler configuration for project com.dcx.ivkmds.fwk.test.common
&lt;br&gt;&amp;gt; has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36      Configuration was []
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Resetting list of modified source files.  Was []
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 1ms: Look for source/resource changes
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 No source/resource changes found, exiting build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 1501ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass doesn't know previous state, so assuming
&lt;br&gt;&amp;gt; EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Project=com.dcx.ivkmds.application.test.ass, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:36 Timer event: 775ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:37 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:37      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:37 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:37 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:40 Timer event: 4142ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:13:40 Timer event: 4155ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Timer event: 26507ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Types affected during build = 187
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Timer event: 27477ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Timer event: 22ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.application.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Compiler configuration for project com.dcx.ivkmds.csolver.test.ass
&lt;br&gt;&amp;gt; doesn't know previous state, so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Project=com.dcx.ivkmds.csolver.test.ass, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Timer event: 274ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Compiler configuration for project com.dcx.ivkmds.csolver.test.ass
&lt;br&gt;&amp;gt; has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:3 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:5 Timer event: 1307ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:5 Timer event: 1324ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Timer event: 5205ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Types affected during build = 31
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Timer event: 5504ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.rcs.standalone doesn't know previous state,
&lt;br&gt;&amp;gt; so assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Project=com.dcx.ivkmds.application.test.rcs.standalone, kind of
&lt;br&gt;&amp;gt; build requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Timer event: 8ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.csolver.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Timer event: 115ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.rcs.standalone has been read by compiler.
&lt;br&gt;&amp;gt; Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Timer event: 591ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Timer event: 600ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Timer event: 602ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Types affected during build = 1
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Timer event: 738ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common doesn't know previous state, so
&lt;br&gt;&amp;gt; assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Project=com.dcx.ivkmds.application.test.common, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:9 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Timer event: 198ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.application.test.rcs.standalone
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Timer event: 351ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common has been read by compiler.
&lt;br&gt;&amp;gt; Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Timer event: 453ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Timer event: 496ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Timer event: 585ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Types affected during build = 1
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Timer event: 941ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass doesn't know previous state, so assuming
&lt;br&gt;&amp;gt; EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Project=com.dcx.ivkmds._55_archive.test.ass, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Timer event: 8ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds.application.test.common
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Timer event: 137ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:10 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Timer event: 509ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Timer event: 570ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Timer event: 748ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Types affected during build = 2
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Timer event: 891ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass doesn't know previous state, so assuming
&lt;br&gt;&amp;gt; EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Project=com.dcx.ivkmds._50_reports.test.ass, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Timer event: 9ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds._55_archive.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Timer event: 132ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass has been read by compiler.  Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:11 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 Timer event: 447ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 Timer event: 480ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 Timer event: 603ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 Types affected during build = 1
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 Timer event: 741ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass doesn't know previous state, so
&lt;br&gt;&amp;gt; assuming EVERYTHING has changed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12
&lt;br&gt;&amp;gt; ===========================================================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 Build kind = FULLBUILD
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 Project=com.dcx.ivkmds._45_export_import.test.ass, kind of build
&lt;br&gt;&amp;gt; requested=Full AspectJ compilation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 Timer event: 47ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds._50_reports.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 Timer event: 0ms: Flush included source file cache
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 Timer event: 0ms: Check delta
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:12 Builder: Tidied output folder(s), removed class files and derived
&lt;br&gt;&amp;gt; resources
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:14 Timer event: 2268ms: Pre compile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:14 Compiler configuration for project
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass has been read by compiler.
&lt;br&gt;&amp;gt; Resetting.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:14      Configuration was [PROJECTSOURCEFILES_CHANGED,
&lt;br&gt;&amp;gt; JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
&lt;br&gt;&amp;gt; NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
&lt;br&gt;&amp;gt; OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:14 Resetting list of modified source files.  Was null
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:14 Preparing for build: not going to be incremental because no
&lt;br&gt;&amp;gt; successful previous full build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:15 Timer event: 1036ms: Time to first compiled message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:15 Timer event: 1132ms: Time to first woven message
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:17 AspectJ reports build successful, build was: FULL
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:17 AJDE Callback: finish. Was full build: true
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:17 Timer event: 2842ms: Total time spent in AJDE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:17 Timer event: 0ms: Refresh after build
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:17 Types affected during build = 28
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:17 Timer event: 5118ms: Total time spent in AJBuilder.build()
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:17 Timer event: 8ms: Update visualizer, xref, advice listeners for
&lt;br&gt;&amp;gt; (separate thread): com.dcx.ivkmds._45_export_import.test.ass
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:17 Timer event: 1ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.rcs.standalone (Finished deleting markers
&lt;br&gt;&amp;gt; for com.dcx.ivkmds.application.test.rcs.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:17 Timer event: 1ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:17 Timer event: 0ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.rcs.standalone (Finished creating markers
&lt;br&gt;&amp;gt; for com.dcx.ivkmds.application.test.rcs.standalone)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:17 Created 0 markers in 1 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:17 Timer event: 76ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._50_reports.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:17 Created 4 markers in 1 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:18 Timer event: 1ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:18 Timer event: 18ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:18 Timer event: 20ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:18 Timer event: 28ms: Delete markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common (Finished deleting markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:18 Timer event: 35ms: Delete markers: com.dcx.ivkmds.csolver.test.ass
&lt;br&gt;&amp;gt; (Finished deleting markers for com.dcx.ivkmds.csolver.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:18 Timer event: 341ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.common)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:18 Created 5 markers in 1 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:18 Timer event: 784ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._55_archive.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:18 Created 14 markers in 2 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:20 Timer event: 2780ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds._45_export_import.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:20 Created 65 markers in 28 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:24 Timer event: 5984ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.test.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.csolver.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:24 Created 176 markers in 31 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:32 Timer event: 14013ms: Create markers:
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass (Finished creating markers for
&lt;br&gt;&amp;gt; com.dcx.ivkmds.application.test.ass)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 12:14:32 Created 1097 markers in 187 files
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; aspectj-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26451764&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aspectj-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/aspectj-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/aspectj-users&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;_______________________________________________
&lt;br&gt;aspectj-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26451764&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aspectj-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/aspectj-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/aspectj-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Performance-of-newest-dev-build-and-marker-creation-times-tp26449422p26451764.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26451453</id>
	<title>Re: WeavingAdapter - how to use it?</title>
	<published>2009-11-20T14:45:19Z</published>
	<updated>2009-11-20T14:45:19Z</updated>
	<author>
		<name>Andy Clement</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;&amp;gt; I use my own agent, to perform other types of analysis on the bytecode. Thus I would like to use the load-time facilities offered
&lt;br&gt;&amp;gt; by AspectJ out of their normal context. I searched a bit and I found WeaverAdapter. However, what is not clear to me is how
&lt;br&gt;&amp;gt; to use it. Could someone point me to a tutorial, example, etc?
&lt;br&gt;&lt;br&gt;Unfortunately there is no real documentation on that. &amp;nbsp;You may find
&lt;br&gt;some googling through the mailing list archives as a few people have
&lt;br&gt;done it before, but it hasn't been formally written up due to lack of
&lt;br&gt;time. &amp;nbsp;If anyone wants to help out fleshing out the details, the wiki
&lt;br&gt;space on &lt;a href=&quot;http://wiki.eclipse.org/AspectJ&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.eclipse.org/AspectJ&lt;/a&gt;&amp;nbsp;would be a great place to
&lt;br&gt;document it...
&lt;br&gt;&lt;br&gt;My initial advice would be to look at how it is used by AspectJ
&lt;br&gt;itself. &amp;nbsp;See the Aj/WeavingURLClassLoader class and other types in
&lt;br&gt;that package.
&lt;br&gt;&lt;br&gt;&amp;gt; I would like to ask what is the GeneratedClassHandler for?
&lt;br&gt;&lt;br&gt;As part of weaving, AspectJ may create classes, for example marker
&lt;br&gt;interfaces or closures for around advice weaving. &amp;nbsp;These are passed to
&lt;br&gt;the GeneratedClassHandler which should decide what to do with them -
&lt;br&gt;probably define them to the classloader.
&lt;br&gt;&lt;br&gt;&amp;gt; Also, do I need to pass to the WeaverAdapter the entire classpath for the classes, since I already have the bytes of the class I want to instrument?
&lt;br&gt;&lt;br&gt;The weaver (inside the adapter) will need to be able to resolve types.
&lt;br&gt;&amp;nbsp;It won't weave anything you don't ask it to, but in the process of
&lt;br&gt;weaving what you want it may need to look up many types to determine
&lt;br&gt;whether pointcuts match. &amp;nbsp;Is there a reason you can't just give it a
&lt;br&gt;suitable classpath?
&lt;br&gt;&lt;br&gt;&amp;gt; Also, for the URLs for the aspects, do these have to point to an .aj file? or a compiled version? I tried with the &amp;quot;.aj&amp;quot; files but no success.
&lt;br&gt;&lt;br&gt;Compiled version, there is no on the fly compilation. &amp;nbsp;Although LTW
&lt;br&gt;does support a rudimentary form of defining aspects in aop.xml.
&lt;br&gt;&lt;br&gt;Andy
&lt;br&gt;_______________________________________________
&lt;br&gt;aspectj-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26451453&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aspectj-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/aspectj-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/aspectj-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/WeavingAdapter---how-to-use-it--tp26449476p26451453.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26449476</id>
	<title>WeavingAdapter - how to use it?</title>
	<published>2009-11-20T12:04:11Z</published>
	<updated>2009-11-20T12:04:11Z</updated>
	<author>
		<name>Andrica Silviu</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I am trying to instrument classes at load time and I thought about using WeavingAdaptor. 
&lt;br&gt;&lt;br&gt;I use my own agent, to perform other types of analysis on the bytecode. Thus I would like to use the load-time facilities offered by AspectJ out of their normal context. I searched a bit and I found WeaverAdapter. However, what is not clear to me is how to use it. Could someone point me to a tutorial, example, etc?
&lt;br&gt;&lt;br&gt;I would like to ask what is the GeneratedClassHandler for? Also, do I need to pass to the WeaverAdapter the entire classpath for the classes, since I already have the bytes of the class I want to instrument?
&lt;br&gt;&lt;br&gt;Also, for the URLs for the aspects, do these have to point to an .aj file? or a compiled version? I tried with the &amp;quot;.aj&amp;quot; files but no success.
&lt;br&gt;&lt;br&gt;This is the log of my actions:
&lt;br&gt;&lt;br&gt;20:50:27.044 main I [WeavingAdaptor] info using aspectpath: []
&lt;br&gt;20:50:27.104 main &amp;gt; org.aspectj.weaver.Lint.&amp;lt;init&amp;gt;
&lt;br&gt;org.aspectj.weaver.Lint@59bca5f1
&lt;br&gt;org.aspectj.weaver.bcel.BcelWorld@70329f3d
&lt;br&gt;20:50:27.104 main &amp;lt; org.aspectj.weaver.Lint.&amp;lt;init&amp;gt;
&lt;br&gt;20:50:27.104 main &amp;gt; org.aspectj.weaver.World.&amp;lt;init&amp;gt;
&lt;br&gt;org.aspectj.weaver.bcel.BcelWorld@70329f3d
&lt;br&gt;20:50:27.108 main &amp;gt; org.aspectj.weaver.Dump.registerNode class
&lt;br&gt;org.aspectj.weaver.bcel.BcelWorld,
&lt;br&gt;org.aspectj.weaver.bcel.BcelWorld@70329f3d
&lt;br&gt;20:50:27.108 main &amp;lt; org.aspectj.weaver.Dump.registerNode 1
&lt;br&gt;20:50:27.137 main &amp;lt; org.aspectj.weaver.World.&amp;lt;init&amp;gt;
&lt;br&gt;20:50:27.159 main &amp;gt; org.aspectj.weaver.bcel.ClassPathManager.&amp;lt;init&amp;gt;
&lt;br&gt;org.aspectj.weaver.bcel.ClassPathManager@3dac2f9c
&lt;br&gt;java.util.LinkedList(37),
&lt;br&gt;org.aspectj.weaver.tools.WeavingAdaptor$WeavingAdaptorMessageHolder@7369ca65
&lt;br&gt;20:50:27.183 main I [WeavingAdaptor] info directory classpath entry
&lt;br&gt;does not exist: /usr/share/java/junit4-4.3.1.jar
&lt;br&gt;20:50:27.183 main I [WeavingAdaptor] info directory classpath entry
&lt;br&gt;does not exist: /usr/share/java/junit4.jar
&lt;br&gt;20:50:27.184 main I [WeavingAdaptor] info directory classpath entry
&lt;br&gt;does not exist: /usr/share/java/junit.jar
&lt;br&gt;20:50:27.184 main I [WeavingAdaptor] info directory classpath entry
&lt;br&gt;does not exist: /usr/local/lib/pl-5.6.64/lib/jpl.jar
&lt;br&gt;20:50:27.184 main I [WeavingAdaptor] info zipfile classpath entry does
&lt;br&gt;not exist: /home/slv/Desktop/no_X11/PSet
&lt;br&gt;20:50:27.185 main I [WeavingAdaptor] info zipfile classpath entry does
&lt;br&gt;not exist: /home/slv/Desktop/aspectj-1.6.6/aspectjweaver
&lt;br&gt;20:50:27.185 main I [WeavingAdaptor] info zipfile classpath entry does
&lt;br&gt;not exist: /home/slv/Desktop/aspectj-1.6.6/aspectjweaver
&lt;br&gt;20:50:27.186 main &amp;lt; org.aspectj.weaver.bcel.ClassPathManager.&amp;lt;init&amp;gt;
&lt;br&gt;20:50:27.205 main &amp;gt; org.aspectj.weaver.bcel.BcelWeaver.&amp;lt;init&amp;gt;
&lt;br&gt;org.aspectj.weaver.bcel.BcelWeaver@4d61f10f
&lt;br&gt;org.aspectj.weaver.bcel.BcelWorld@70329f3d
&lt;br&gt;20:50:27.205 main &amp;lt; org.aspectj.weaver.bcel.BcelWeaver.&amp;lt;init&amp;gt;
&lt;br&gt;20:50:27.205 main &amp;gt; org.aspectj.weaver.bcel.BcelWeaver.prepareForWeave
&lt;br&gt;org.aspectj.weaver.bcel.BcelWeaver@4d61f10f
&lt;br&gt;20:50:27.211 main &amp;lt; org.aspectj.weaver.bcel.BcelWeaver.prepareForWeave
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;20:50:33.490 main &amp;gt; org.aspectj.weaver.tools.WeavingAdaptor.weaveClass
&lt;br&gt;org.aspectj.weaver.tools.WeavingAdaptor@7d15d06c test.Test, byte[731]
&lt;br&gt;20:50:33.491 main ? [WeavingAdaptor] debug weaving 'test.Test'
&lt;br&gt;20:50:33.633 main &amp;gt; org.aspectj.weaver.bcel.BcelWeaver.weave
&lt;br&gt;org.aspectj.weaver.bcel.BcelWeaver@4d61f10f
&lt;br&gt;org.aspectj.weaver.tools.WeavingAdaptor$WeavingClassFileProvider@64bef361
&lt;br&gt;20:50:33.641 main &amp;gt; org.aspectj.weaver.bcel.BcelWeaver.weaveAndNotify
&lt;br&gt;org.aspectj.weaver.bcel.BcelWeaver@4d61f10f
&lt;br&gt;org.aspectj.weaver.bcel.UnwovenClassFile@4c2b349d,
&lt;br&gt;org.aspectj.weaver.bcel.BcelObjectType@288b567c,
&lt;br&gt;org.aspectj.weaver.tools.WeavingAdaptor$WeavingClassFileProvider$1@53dafbaf
&lt;br&gt;20:50:33.647 main &amp;lt; org.aspectj.weaver.bcel.BcelWeaver.weaveAndNotify
&lt;br&gt;20:50:33.647 main &amp;lt; org.aspectj.weaver.bcel.BcelWeaver.weave
&lt;br&gt;java.util.ArrayList(1)
&lt;br&gt;20:50:33.647 main &amp;lt; org.aspectj.weaver.tools.WeavingAdaptor.weaveClass byte[731]
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thank you in advance for your help!
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Silviu_______________________________________________
&lt;br&gt;aspectj-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26449476&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aspectj-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://dev.eclipse.org/mailman/listinfo/aspectj-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://dev.eclipse.org/mailman/listinfo/aspectj-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/WeavingAdapter---how-to-use-it--tp26449476p26449476.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26449422</id>
	<title>Performance of newest dev build and marker creation times</title>
	<published>2009-11-20T11:59:52Z</published>
	<updated>2009-11-20T11:59:52Z</updated>
	<author>
		<name>thofmann</name>
	</author>
	<content type="html">&lt;html xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 11 (filtered medium)&quot;&gt;


&lt;/head&gt;

&lt;body lang=DE link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;Hi Andy, Andrew&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;I know upgraded to ajdt_2.0.1.e34x-20091118-1600 to benfit from the
performance enhancements in AspectJ 1.6.7.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;Would you mind to look at the times taken from the AJDT Event
Trace.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;For me it looks like marker creation is taking very long.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;Below you can find the output from to Workspace Clean and complete
rebuild cycles using Build Automitically.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;Thanks, Thomas&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:15:35 Removed problems and tasks for project
com.dcx.ivkmds.fwk.common.spec.trace.aspectj&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:15:35 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:15:41 Removed problems and tasks for project
com.dcx.ivkmds.fwk.common.ass.persist&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:15:41 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:15:41 Removed problems and tasks for project
com.dcx.ivkmds.fwk.common.businessobjects.persistent&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:15:41 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:15:41 Removed problems and tasks for project
com.dcx.ivkmds.fwk.rcs&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:15:42 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:15:42 Removed problems and tasks for project
com.dcx.ivkmds.csolver.cts&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:15:47 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:15:47 Removed problems and tasks for project
com.dcx.ivkmds.common.businessobjects.persistent&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:15:50 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:15:51 Removed problems and tasks for project
com.dcx.ivkmds.common.businessobjects.fwktest&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:15:51 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:20 Compiler configuration for project
com.dcx.ivkmds.csolver.cts doesn't know previous state, so assuming EVERYTHING
has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:25 Removed problems and tasks for project
com.dcx.ivkmds.fwk.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:25 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:25 Removed problems and tasks for project
com.dcx.ivkmds.application.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:27 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:27 Removed problems and tasks for project
com.dcx.ivkmds.csolver.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:28 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:31 Removed problems and tasks for project
com.dcx.ivkmds._45_export_import.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:33 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:35 Removed problems and tasks for project
com.dcx.ivkmds._00_fwktest.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:35 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:35 Removed problems and tasks for project
com.dcx.ivkmds.csolver.cts.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:35 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:35 Removed problems and tasks for project com.dcx.ivkmds.application.rcs.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:35 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:36 Removed problems and tasks for project
com.dcx.ivkmds.testfwk&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:38 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:38 Removed problems and tasks for project
com.dcx.ivkmds.fwk.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:44 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:44 Removed problems and tasks for project
com.dcx.ivkmds.fwk.test.rcs&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:44 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:44 Removed problems and tasks for project
com.dcx.ivkmds.fwk.test.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:44 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:44 Removed problems and tasks for project
com.dcx.ivkmds.csolver.test.cts&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:44 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:44 Removed problems and tasks for project
com.dcx.ivkmds.application.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:51 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:51 Removed problems and tasks for project
com.dcx.ivkmds.csolver.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:52 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:52 Removed problems and tasks for project
com.dcx.ivkmds.application.test.rcs.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:52 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:52 Removed problems and tasks for project
com.dcx.ivkmds.application.test.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:52 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:52 Removed problems and tasks for project
com.dcx.ivkmds._55_archive.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:52 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:52 Removed problems and tasks for project
com.dcx.ivkmds._50_reports.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:52 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:52 Removed problems and tasks for project
com.dcx.ivkmds._45_export_import.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:54 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:56 Compiler configuration for project com.dcx.ivkmds.fwk.ass
doesn't know previous state, so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:56 Compiler configuration for project
com.dcx.ivkmds.fwk.common.ass.persist doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:58 Timer event: 1479ms: Delete markers:
com.dcx.ivkmds.application.test.common (Finished deleting markers for
com.dcx.ivkmds.application.test.common)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1566ms: Delete markers:
com.dcx.ivkmds.common.businessobjects.fwktest (Finished deleting markers for
com.dcx.ivkmds.common.businessobjects.fwktest)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1579ms: Delete markers:
com.dcx.ivkmds.csolver.cts.standalone (Finished deleting markers for
com.dcx.ivkmds.csolver.cts.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1579ms: Delete markers:
com.dcx.ivkmds._50_reports.test.ass (Finished deleting markers for
com.dcx.ivkmds._50_reports.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1580ms: Delete markers: com.dcx.ivkmds.fwk.rcs
(Finished deleting markers for com.dcx.ivkmds.fwk.rcs)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1580ms: Delete markers:
com.dcx.ivkmds.csolver.test.ass (Finished deleting markers for
com.dcx.ivkmds.csolver.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1583ms: Delete markers:
com.dcx.ivkmds.fwk.common.ass.persist (Finished deleting markers for
com.dcx.ivkmds.fwk.common.ass.persist)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1583ms: Delete markers:
com.dcx.ivkmds.fwk.common.businessobjects.persistent (Finished deleting markers
for com.dcx.ivkmds.fwk.common.businessobjects.persistent)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1518ms: Delete markers:
com.dcx.ivkmds.application.rcs.standalone (Finished deleting markers for
com.dcx.ivkmds.application.rcs.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1519ms: Delete markers:
com.dcx.ivkmds.application.ass (Finished deleting markers for
com.dcx.ivkmds.application.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1519ms: Delete markers:
com.dcx.ivkmds.fwk.test.common (Finished deleting markers for
com.dcx.ivkmds.fwk.test.common)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1521ms: Delete markers:
com.dcx.ivkmds.application.test.ass (Finished deleting markers for
com.dcx.ivkmds.application.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1521ms: Delete markers:
com.dcx.ivkmds.csolver.ass (Finished deleting markers for
com.dcx.ivkmds.csolver.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1522ms: Delete markers:
com.dcx.ivkmds.csolver.cts (Finished deleting markers for
com.dcx.ivkmds.csolver.cts)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1552ms: Delete markers:
com.dcx.ivkmds.common.businessobjects.persistent (Finished deleting markers for
com.dcx.ivkmds.common.businessobjects.persistent)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1552ms: Delete markers:
com.dcx.ivkmds._00_fwktest.ass (Finished deleting markers for
com.dcx.ivkmds._00_fwktest.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1552ms: Delete markers:
com.dcx.ivkmds.csolver.test.cts (Finished deleting markers for
com.dcx.ivkmds.csolver.test.cts)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1569ms: Delete markers: com.dcx.ivkmds.testfwk
(Finished deleting markers for com.dcx.ivkmds.testfwk)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1558ms: Delete markers:
com.dcx.ivkmds.fwk.test.ass (Finished deleting markers for
com.dcx.ivkmds.fwk.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 76ms: Delete markers:
com.dcx.ivkmds.fwk.test.rcs (Finished deleting markers for com.dcx.ivkmds.fwk.test.rcs)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:16:59 Timer event: 1ms: Delete markers:
com.dcx.ivkmds.application.test.rcs.standalone (Finished deleting markers for
com.dcx.ivkmds.application.test.rcs.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5 Compiler configuration for project
com.dcx.ivkmds.fwk.common.spec.trace.aspectj doesn't know previous state, so
assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5 Project=com.dcx.ivkmds.fwk.common.spec.trace.aspectj, kind
of build requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5 Timer event: 60ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5 Compiler configuration for project
com.dcx.ivkmds.fwk.common.spec.trace.aspectj has been read by compiler.&amp;nbsp;
Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED,
INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:5 Preparing for build: not going to be incremental because no
successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:5 Timer event: 244ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:5 Timer event: 286ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:5 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:5 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5 Timer event: 311ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:5 Types affected during build = 2&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5 Timer event: 373ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:5 Timer event: 211ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.fwk.common.spec.trace.aspectj&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:35
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:35 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:35 Project=com.dcx.ivkmds.fwk.common.ass.persist, kind of
build requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:35 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:35 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:35 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:35 Timer event: 41ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:35 Compiler configuration for project
com.dcx.ivkmds.fwk.common.ass.persist has been read by compiler.&amp;nbsp;
Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:35&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:35 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:35 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:36 Timer event: 1096ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:36 Timer event: 1210ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:37 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:37 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37 Timer event: 2219ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:37 Types affected during build = 48&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37 Timer event: 2266ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37 Compiler configuration for project
com.dcx.ivkmds.fwk.common.businessobjects.persistent doesn't know previous
state, so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37
Project=com.dcx.ivkmds.fwk.common.businessobjects.persistent, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37 Timer event: 179ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.fwk.common.ass.persist&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37 Timer event: 343ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37 Compiler configuration for project
com.dcx.ivkmds.fwk.common.businessobjects.persistent has been read by
compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:37 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:37 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:38 Timer event: 301ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:38 Timer event: 304ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:38 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:38 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:38 Timer event: 356ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:38 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:38 Types affected during build = 6&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:38 Timer event: 701ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:38 Timer event: 184ms: Update visualizer, xref, advice
listeners for (separate thread):
com.dcx.ivkmds.fwk.common.businessobjects.persistent&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:39 Compiler configuration for project com.dcx.ivkmds.fwk.rcs
doesn't know previous state, so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:39 ===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:39 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:39 Project=com.dcx.ivkmds.fwk.rcs, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:39 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:39 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:39 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:40 Timer event: 368ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:40 Compiler configuration for project com.dcx.ivkmds.fwk.rcs
has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:40&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:40 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:40 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:42 Timer event: 1922ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:42 Timer event: 2056ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:45 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:45 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:45 Timer event: 4918ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:45 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:45 Types affected during build = 87&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:45 Timer event: 5315ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:45
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:45 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:45 Project=com.dcx.ivkmds.csolver.cts, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:45 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:45 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:45 Builder: Tidied output folder(s), removed class files and derived
resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:45 Timer event: 188ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.fwk.rcs&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:45 Timer event: 248ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:45 Compiler configuration for project
com.dcx.ivkmds.csolver.cts has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:45&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:17:45 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:45 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:47 Timer event: 2348ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:17:48 Timer event: 2445ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:8 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:8 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:8 Timer event: 22476ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:8 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:8 Types affected during build = 356&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:8 Timer event: 22842ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:8 Timer event: 204ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.csolver.cts&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:9 Compiler configuration for project
com.dcx.ivkmds.common.businessobjects.persistent doesn't know previous state,
so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:9
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:9 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:9 Project=com.dcx.ivkmds.common.businessobjects.persistent,
kind of build requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:9 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:9 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:9 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:16 Timer event: 7027ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:17 Compiler configuration for project
com.dcx.ivkmds.common.businessobjects.persistent has been read by
compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:17&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:17 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:17 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:21 Timer event: 4932ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:21 Timer event: 4937ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:30 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:32 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:32 Timer event: 15816ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:32 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:32 Types affected during build = 331&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:32 Timer event: 23103ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:33 Timer event: 232ms: Update visualizer, xref, advice
listeners for (separate thread):
com.dcx.ivkmds.common.businessobjects.persistent&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:36 Compiler configuration for project com.dcx.ivkmds.common.businessobjects.fwktest
doesn't know previous state, so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:36
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:36 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:36 Project=com.dcx.ivkmds.common.businessobjects.fwktest, kind
of build requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:36 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:36 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:36 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:37 Timer event: 605ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:37 Compiler configuration for project
com.dcx.ivkmds.common.businessobjects.fwktest has been read by compiler.&amp;nbsp;
Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:37&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:37 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:37 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:38 Timer event: 1018ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:38 Timer event: 1037ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:38 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:39 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:39 Timer event: 1570ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:39 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:18:39 Types affected during build = 32&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:39 Timer event: 2197ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:18:39 Timer event: 245ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.common.businessobjects.fwktest&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:23
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:23 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:23 Project=com.dcx.ivkmds.fwk.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:23 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:23 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:23 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:24 Timer event: 766ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:24 Compiler configuration for project com.dcx.ivkmds.fwk.ass
has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:24&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:24 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:20:24 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:20:27 Timer event: 3725ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:20:28 Timer event: 3936ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:20:35 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:20:35 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:35 Timer event: 10997ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:35 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:20:35 Types affected during build = 117&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:35 Timer event: 11775ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:35 Timer event: 235ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.fwk.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:37 Compiler configuration for project
com.dcx.ivkmds.application.ass doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:37
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:37 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:37 Project=com.dcx.ivkmds.application.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:37 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:37 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:37 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:44 Timer event: 7249ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:45 Compiler configuration for project
com.dcx.ivkmds.application.ass has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:45&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:20:45 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:20:45 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:20:51 Timer event: 7304ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:20:51 Timer event: 7329ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:12 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:12 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12 Timer event: 27996ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:12 Types affected during build = 296&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12 Timer event: 35286ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12 Compiler configuration for project com.dcx.ivkmds.csolver.ass
doesn't know previous state, so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12 Project=com.dcx.ivkmds.csolver.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12 Timer event: 122ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12 Compiler configuration for project
com.dcx.ivkmds.csolver.ass has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED,
INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:12 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:12 Timer event: 249ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.application.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:14 Timer event: 2115ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:14 Timer event: 2181ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:28 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:28 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:28 Timer event: 15584ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:28 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:28 Types affected during build = 87&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:28 Timer event: 15716ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:28 Timer event: 337ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.csolver.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:33 Compiler configuration for project
com.dcx.ivkmds._45_export_import.ass doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:33
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:33 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:33 Project=com.dcx.ivkmds._45_export_import.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:33 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:33 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:33 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:34 Timer event: 283ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:35 Compiler configuration for project
com.dcx.ivkmds._45_export_import.ass has been read by compiler.&amp;nbsp;
Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:35&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:35 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:35 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:41 Timer event: 7831ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:41 Timer event: 7852ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:58 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:58 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:58 Timer event: 24754ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:58 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:21:58 Types affected during build = 428&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:58 Timer event: 25098ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:21:59 Timer event: 281ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds._45_export_import.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:8 Compiler configuration for project com.dcx.ivkmds._00_fwktest.ass
doesn't know previous state, so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:8
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:8 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:8 Project=com.dcx.ivkmds._00_fwktest.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:8 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:8 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:8 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:8 Timer event: 89ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:8 Compiler configuration for project
com.dcx.ivkmds._00_fwktest.ass has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED,
INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:8 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:8 Preparing for build: not going to be incremental because no
successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:8 Timer event: 283ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:9 Timer event: 1026ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:9 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:9 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:9 Timer event: 1586ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:9 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:9 Types affected during build = 4&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:9 Timer event: 1677ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:9 Compiler configuration for project
com.dcx.ivkmds.csolver.cts.standalone doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:9
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:9 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:9 Project=com.dcx.ivkmds.csolver.cts.standalone, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:9 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:9 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:9 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:9 Timer event: 102ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:9 Compiler configuration for project
com.dcx.ivkmds.csolver.cts.standalone has been read by compiler.&amp;nbsp;
Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:9&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was [PROJECTSOURCEFILES_CHANGED,
JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED, INPATH_CHANGED,
NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED, PROJECTSOURCERESOURCES_CHANGED,
OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:9 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:9 Preparing for build: not going to be incremental because no
successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:10 Timer event: 288ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds._00_fwktest.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:10 Timer event: 285ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:10 Timer event: 304ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:10 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:10 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:10 Timer event: 951ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:10 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:10 Types affected during build = 17&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:10 Timer event: 1055ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:11 Compiler configuration for project
com.dcx.ivkmds.application.rcs.standalone doesn't know previous state, so
assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:11
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:11 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:11 Project=com.dcx.ivkmds.application.rcs.standalone, kind of
build requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:11 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:11 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:11 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:11 Timer event: 96ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:11 Compiler configuration for project
com.dcx.ivkmds.application.rcs.standalone has been read by compiler.&amp;nbsp;
Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:11&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED,
INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:11 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:11 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:11 Timer event: 308ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.csolver.cts.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:11 Timer event: 634ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:11 Timer event: 636ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:12 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:12 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12 Timer event: 957ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:12 Types affected during build = 9&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12 Timer event: 1060ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12 Compiler configuration for project com.dcx.ivkmds.testfwk
doesn't know previous state, so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12 ===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12 Project=com.dcx.ivkmds.testfwk, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12 Timer event: 502ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12 Compiler configuration for project com.dcx.ivkmds.testfwk
has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:12 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:12 Timer event: 635ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.application.rcs.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:16 Timer event: 3261ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:16 Timer event: 3401ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:18 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:19 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19 Timer event: 6188ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:19 Types affected during build = 45&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19 Timer event: 6761ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19 Compiler configuration for project
com.dcx.ivkmds.fwk.test.ass doesn't know previous state, so assuming EVERYTHING
has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19 Project=com.dcx.ivkmds.fwk.test.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19 Timer event: 311ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.testfwk&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19 Timer event: 500ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19 Compiler configuration for project com.dcx.ivkmds.fwk.test.ass
has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:19 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:19 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:20 Timer event: 817ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:20 Timer event: 977ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:29 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:29 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29 Timer event: 10192ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:29 Types affected during build = 28&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29 Timer event: 10736ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29 Compiler configuration for project
com.dcx.ivkmds.fwk.test.rcs doesn't know previous state, so assuming EVERYTHING
has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29 Project=com.dcx.ivkmds.fwk.test.rcs, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29 Timer event: 45ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.fwk.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29 Timer event: 40ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29 Compiler configuration for project
com.dcx.ivkmds.fwk.test.rcs has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:29 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:29 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:30 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:30 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30 Timer event: 165ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:30 Types affected during build = 0&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30 Timer event: 211ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30 Compiler configuration for project
com.dcx.ivkmds.fwk.test.common doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30 Project=com.dcx.ivkmds.fwk.test.common, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30 Timer event: 77ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30 Timer event: 48ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.fwk.test.rcs&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30 Compiler configuration for project
com.dcx.ivkmds.fwk.test.common has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:30 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:30 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:30 Timer event: 368ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:30 Timer event: 380ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:31 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:31 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31 Timer event: 1180ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:31 Types affected during build = 6&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31 Timer event: 1272ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31 Compiler configuration for project
com.dcx.ivkmds.csolver.test.cts doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31 ===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31 Project=com.dcx.ivkmds.csolver.test.cts, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31 Timer event: 52ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.fwk.test.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31 Timer event: 395ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31 Compiler configuration for project
com.dcx.ivkmds.csolver.test.cts has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:31 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:31 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:32 Timer event: 677ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:32 Timer event: 688ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:34 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:35 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:35 Timer event: 3562ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:35 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:35 Types affected during build = 37&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:35 Timer event: 3973ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:35 Timer event: 44ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.csolver.test.cts&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:47 Compiler configuration for project
com.dcx.ivkmds.application.test.ass doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:47
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:47 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:47 Project=com.dcx.ivkmds.application.test.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:47 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:47 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:47 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:47 Timer event: 212ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:47 Compiler configuration for project com.dcx.ivkmds.application.test.ass
has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:47&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:22:47 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:47 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:49 Timer event: 1449ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:22:49 Timer event: 1466ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:8 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:8 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:8 Timer event: 21102ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:8 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:8 Types affected during build = 187&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:9 Timer event: 21651ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:9 Compiler configuration for project
com.dcx.ivkmds.csolver.test.ass doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:9
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:9 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:9 Project=com.dcx.ivkmds.csolver.test.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:9 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:9 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:9 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:9 Timer event: 67ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.application.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:9 Timer event: 95ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:9 Compiler configuration for project
com.dcx.ivkmds.csolver.test.ass has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:9&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:9 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:9 Preparing for build: not going to be incremental because no
successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:9 Timer event: 656ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:9 Timer event: 722ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:13 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:13 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13 Timer event: 4575ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:13 Types affected during build = 31&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13 Timer event: 4723ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13 Compiler configuration for project
com.dcx.ivkmds.application.test.rcs.standalone doesn't know previous state, so
assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13 ===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13 Project=com.dcx.ivkmds.application.test.rcs.standalone,
kind of build requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13 Timer event: 46ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.csolver.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13 Timer event: 82ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13 Compiler configuration for project
com.dcx.ivkmds.application.test.rcs.standalone has been read by compiler.&amp;nbsp;
Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:13 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:13 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:14 Timer event: 428ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:14 Timer event: 437ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:14 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:14 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14 Timer event: 457ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:14 Types affected during build = 1&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14 Timer event: 545ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14 Compiler configuration for project
com.dcx.ivkmds.application.test.common doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14 Project=com.dcx.ivkmds.application.test.common, kind of
build requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14 Timer event: 50ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14 Timer event: 48ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.application.test.rcs.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14 Compiler configuration for project
com.dcx.ivkmds.application.test.common has been read by compiler.&amp;nbsp;
Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:14 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:14 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:15 Timer event: 729ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:15 Timer event: 781ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:15 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:15 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15 Timer event: 837ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:15 Types affected during build = 1&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15 Timer event: 897ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15 Compiler configuration for project com.dcx.ivkmds._55_archive.test.ass
doesn't know previous state, so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15 Project=com.dcx.ivkmds._55_archive.test.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15 Timer event: 46ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.application.test.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15 Timer event: 180ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15 Compiler configuration for project
com.dcx.ivkmds._55_archive.test.ass has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:15 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:15 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:15 Timer event: 482ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:15 Timer event: 503ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:16 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:16 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16 Timer event: 667ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:16 Types affected during build = 2&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16 Timer event: 860ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16 Compiler configuration for project
com.dcx.ivkmds._50_reports.test.ass doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16 Project=com.dcx.ivkmds._50_reports.test.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16 Timer event: 108ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds._55_archive.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16 Timer event: 232ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16 Compiler configuration for project
com.dcx.ivkmds._50_reports.test.ass has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:16 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:16 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:16 Timer event: 454ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:17 Timer event: 1072ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:17 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:17 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:17 Timer event: 1166ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:17 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:17 Types affected during build = 1&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:17 Timer event: 1411ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:17 Compiler configuration for project
com.dcx.ivkmds._45_export_import.test.ass doesn't know previous state, so
assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:17
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:17 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:17 Project=com.dcx.ivkmds._45_export_import.test.ass, kind of
build requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:17 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:17 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:17 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:17 Timer event: 59ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds._50_reports.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:19 Timer event: 1771ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:19 Compiler configuration for project
com.dcx.ivkmds._45_export_import.test.ass has been read by compiler.&amp;nbsp;
Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:19&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:19 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:19 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:20 Timer event: 1012ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:20 Timer event: 1028ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:21 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:22 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 2981ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;0:23:22 Types affected during build = 28&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 4803ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 102ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds._45_export_import.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 19ms: Delete markers:
com.dcx.ivkmds._50_reports.test.ass (Finished deleting markers for
com.dcx.ivkmds._50_reports.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 239ms: Delete markers:
com.dcx.ivkmds.fwk.common.spec.trace.aspectj (Finished deleting markers for
com.dcx.ivkmds.fwk.common.spec.trace.aspectj)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 0ms: Create markers:
com.dcx.ivkmds.fwk.common.spec.trace.aspectj (Finished creating markers for
com.dcx.ivkmds.fwk.common.spec.trace.aspectj)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Created 0 markers in 2 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 240ms: Delete markers: com.dcx.ivkmds.fwk.rcs
(Finished deleting markers for com.dcx.ivkmds.fwk.rcs)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 250ms: Delete markers:
com.dcx.ivkmds._45_export_import.ass (Finished deleting markers for
com.dcx.ivkmds._45_export_import.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 257ms: Delete markers: com.dcx.ivkmds.fwk.ass
(Finished deleting markers for com.dcx.ivkmds.fwk.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 259ms: Delete markers:
com.dcx.ivkmds._45_export_import.test.ass (Finished deleting markers for
com.dcx.ivkmds._45_export_import.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 287ms: Delete markers:
com.dcx.ivkmds.application.test.rcs.standalone (Finished deleting markers for
com.dcx.ivkmds.application.test.rcs.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 0ms: Create markers:
com.dcx.ivkmds.application.test.rcs.standalone (Finished creating markers for
com.dcx.ivkmds.application.test.rcs.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Created 0 markers in 1 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 287ms: Delete markers:
com.dcx.ivkmds.common.businessobjects.persistent (Finished deleting markers for
com.dcx.ivkmds.common.businessobjects.persistent)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 294ms: Delete markers:
com.dcx.ivkmds.fwk.common.businessobjects.persistent (Finished deleting markers
for com.dcx.ivkmds.fwk.common.businessobjects.persistent)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 1ms: Create markers:
com.dcx.ivkmds.fwk.common.businessobjects.persistent (Finished creating markers
for com.dcx.ivkmds.fwk.common.businessobjects.persistent)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Created 0 markers in 6 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 298ms: Delete markers:
com.dcx.ivkmds._55_archive.test.ass (Finished deleting markers for
com.dcx.ivkmds._55_archive.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 310ms: Delete markers:
com.dcx.ivkmds.application.ass (Finished deleting markers for
com.dcx.ivkmds.application.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 315ms: Delete markers:
com.dcx.ivkmds._00_fwktest.ass (Finished deleting markers for
com.dcx.ivkmds._00_fwktest.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 317ms: Delete markers:
com.dcx.ivkmds.application.rcs.standalone (Finished deleting markers for
com.dcx.ivkmds.application.rcs.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 318ms: Delete markers: com.dcx.ivkmds.testfwk
(Finished deleting markers for com.dcx.ivkmds.testfwk)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 325ms: Delete markers:
com.dcx.ivkmds.csolver.cts (Finished deleting markers for
com.dcx.ivkmds.csolver.cts)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 329ms: Delete markers:
com.dcx.ivkmds.common.businessobjects.fwktest (Finished deleting markers for
com.dcx.ivkmds.common.businessobjects.fwktest)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 384ms: Delete markers:
com.dcx.ivkmds.fwk.test.rcs (Finished deleting markers for
com.dcx.ivkmds.fwk.test.rcs)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 0ms: Create markers: com.dcx.ivkmds.fwk.test.rcs
(Finished creating markers for com.dcx.ivkmds.fwk.test.rcs)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Created 0 markers in 0 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:22 Timer event: 401ms: Delete markers:
com.dcx.ivkmds.fwk.test.common (Finished deleting markers for
com.dcx.ivkmds.fwk.test.common)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:23 Timer event: 694ms: Delete markers:
com.dcx.ivkmds.csolver.ass (Finished deleting markers for
com.dcx.ivkmds.csolver.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:23 Timer event: 694ms: Delete markers:
com.dcx.ivkmds.csolver.cts.standalone (Finished deleting markers for com.dcx.ivkmds.csolver.cts.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:23 Timer event: 708ms: Delete markers:
com.dcx.ivkmds.fwk.common.ass.persist (Finished deleting markers for
com.dcx.ivkmds.fwk.common.ass.persist)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:23 Timer event: 703ms: Delete markers:
com.dcx.ivkmds.application.test.common (Finished deleting markers for
com.dcx.ivkmds.application.test.common)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:23 Timer event: 709ms: Delete markers:
com.dcx.ivkmds.csolver.test.cts (Finished deleting markers for
com.dcx.ivkmds.csolver.test.cts)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:23 Timer event: 710ms: Delete markers:
com.dcx.ivkmds.application.test.ass (Finished deleting markers for
com.dcx.ivkmds.application.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:23 Timer event: 716ms: Delete markers:
com.dcx.ivkmds.fwk.test.ass (Finished deleting markers for com.dcx.ivkmds.fwk.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:23 Timer event: 1296ms: Delete markers:
com.dcx.ivkmds.csolver.test.ass (Finished deleting markers for
com.dcx.ivkmds.csolver.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:26 Timer event: 3546ms: Create markers: com.dcx.ivkmds.application.rcs.standalone
(Finished creating markers for com.dcx.ivkmds.application.rcs.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:26 Created 2 markers in 9 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:29 Timer event: 7030ms: Create markers:
com.dcx.ivkmds._50_reports.test.ass (Finished creating markers for
com.dcx.ivkmds._50_reports.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:29 Created 4 markers in 1 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:31 Timer event: 8516ms: Create markers:
com.dcx.ivkmds.application.test.common (Finished creating markers for
com.dcx.ivkmds.application.test.common)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:31 Created 5 markers in 1 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:33 Timer event: 10248ms: Create markers:
com.dcx.ivkmds.csolver.cts.standalone (Finished creating markers for
com.dcx.ivkmds.csolver.cts.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:33 Created 7 markers in 17 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:35 Timer event: 12220ms: Create markers:
com.dcx.ivkmds.fwk.test.common (Finished creating markers for
com.dcx.ivkmds.fwk.test.common)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:35 Created 9 markers in 4 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:38 Timer event: 15760ms: Create markers:
com.dcx.ivkmds._55_archive.test.ass (Finished creating markers for com.dcx.ivkmds._55_archive.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:23:38 Created 14 markers in 2 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:5 Timer event: 42506ms: Create markers:
com.dcx.ivkmds.csolver.test.cts (Finished creating markers for
com.dcx.ivkmds.csolver.test.cts)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:5 Created 53 markers in 37 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:7 Timer event: 43948ms: Create markers:
com.dcx.ivkmds.fwk.common.ass.persist (Finished creating markers for
com.dcx.ivkmds.fwk.common.ass.persist)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:7 Created 55 markers in 48 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:7 Timer event: 45166ms: Create markers: com.dcx.ivkmds.fwk.rcs
(Finished creating markers for com.dcx.ivkmds.fwk.rcs)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:7 Created 57 markers in 87 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:26 Timer event: 64000ms: Create markers:
com.dcx.ivkmds.testfwk (Finished creating markers for com.dcx.ivkmds.testfwk)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:26 Created 93 markers in 45 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:29 Timer event: 65794ms: Create markers:
com.dcx.ivkmds.csolver.ass (Finished creating markers for
com.dcx.ivkmds.csolver.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:29 Created 97 markers in 87 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:34 Timer event: 71591ms: Create markers:
com.dcx.ivkmds.common.businessobjects.fwktest (Finished creating markers for
com.dcx.ivkmds.common.businessobjects.fwktest)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:34 Created 111 markers in 32 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:52 Timer event: 89930ms: Create markers:
com.dcx.ivkmds.csolver.cts (Finished creating markers for
com.dcx.ivkmds.csolver.cts)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:52 Created 167 markers in 356 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:55 Timer event: 91408ms: Create markers:
com.dcx.ivkmds.csolver.test.ass (Finished creating markers for
com.dcx.ivkmds.csolver.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:55 Created 176 markers in 31 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:55 Timer event: 92911ms: Create markers:
com.dcx.ivkmds._00_fwktest.ass (Finished creating markers for
com.dcx.ivkmds._00_fwktest.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:24:55 Created 179 markers in 4 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:25:37 Timer event: 134179ms: Create markers:
com.dcx.ivkmds.fwk.test.ass (Finished creating markers for com.dcx.ivkmds.fwk.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:25:37 Created 418 markers in 28 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:27:4 Timer event: 221604ms: Create markers:
com.dcx.ivkmds.common.businessobjects.persistent (Finished creating markers for
com.dcx.ivkmds.common.businessobjects.persistent)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:27:4 Created 1026 markers in 331 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:27:10 Timer event: 227149ms: Create markers:
com.dcx.ivkmds.application.test.ass (Finished creating markers for
com.dcx.ivkmds.application.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:27:10 Created 1097 markers in 187 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:28:45 Timer event: 322487ms: Create markers:
com.dcx.ivkmds.application.ass (Finished creating markers for
com.dcx.ivkmds.application.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:28:45 Created 2823 markers in 296 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:28:45 Timer event: 6ms: Delete markers:
com.dcx.ivkmds._55_archive.test.ass (Finished deleting markers for
com.dcx.ivkmds._55_archive.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:28:45 Timer event: 4ms: Delete markers:
com.dcx.ivkmds.fwk.common.spec.trace.aspectj (Finished deleting markers for
com.dcx.ivkmds.fwk.common.spec.trace.aspectj)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:29:39 ===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:29:39 Build kind = AUTOBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:29:39 Project=com.dcx.ivkmds.fwk.test.common, kind of build
requested=Incremental AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:29:39 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 66534ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 7ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.test.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 build: Examined delta - no source file or classpath changes
for project com.dcx.ivkmds.fwk.test.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.testfwk&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration changes
in com.dcx.ivkmds.fwk.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in org.apache.commons.collections&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in org.apache.commons.lang&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in org.hibernate&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.ibm.ebiz.fwk&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.iap.clientcontainer.plugin&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.lrt&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.persist&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.spec.error&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.spec.lrt&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.spec.trace&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.spec.time&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.cmd.ejb.client&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.error&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.jac&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.security&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.spec.perflog&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.sun.xml.bind&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.health&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.spec.trace.aspectj&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.rcs&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.businessobjects.persistent&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.rcs.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.ibm.db2.jcc&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in org.springframework&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in org.apache.commons.beanutils&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.common.businessobjects.persistent&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.common.businessobjects.application&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.csolver.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.csolver.ass.csservice&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.csolver.common.cts&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._05_product_structure.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._05_product_structure.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._10_code_base.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._10_code_base.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._15_master_data.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._15_master_data.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._20_sales_references.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._20_sales_references.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._25_dcm.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._25_dcm.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._30_central_data_transfer.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._30_central_data_transfer.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._45_export_import.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._45_export_import.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._50_reports.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._50_reports.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._35_documentation_news.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._35_documentation_news.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._40_development_doc.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._40_development_doc.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._65_test.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._65_test.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._70_configs_orders.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._70_configs_orders.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._80_transactions.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._80_transactions.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._85_administration.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._85_administration.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._90_misc.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration changes
in com.dcx.ivkmds._90_misc.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.common.ass.error&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.csolver.cts&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.csolver.cts.cscommlayer&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._55_archive.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.common.ass.persist&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.rcs&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.ibm.ebiz.fwk.eclipse&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.csolver.cts.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._45_export_import.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in org.testng.jdk15&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.ass.health.ejb.client&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 &amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Compiler configuration for project
com.dcx.ivkmds.fwk.test.common has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was []&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Resetting list of modified source files.&amp;nbsp; Was []&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 8ms: Look for source/resource changes&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 No source/resource changes found, exiting build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:30:45 Timer event: 66599ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:33:6 Timer event: 1ms: Delete markers: com.dcx.ivkmds.fwk.ass
(Finished deleting markers for com.dcx.ivkmds.fwk.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:33:6 Timer event: 0ms: Delete markers:
com.dcx.ivkmds._45_export_import.test.ass (Finished deleting markers for
com.dcx.ivkmds._45_export_import.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:33:6 Timer event: 71ms: Delete markers:
com.dcx.ivkmds._45_export_import.ass (Finished deleting markers for
com.dcx.ivkmds._45_export_import.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:33:9 Timer event: 3037ms: Create markers:
com.dcx.ivkmds._45_export_import.ass (Finished creating markers for
com.dcx.ivkmds._45_export_import.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:33:9 Created 16 markers in 428 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:33:11 Timer event: 5490ms: Create markers:
com.dcx.ivkmds._45_export_import.test.ass (Finished creating markers for
com.dcx.ivkmds._45_export_import.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:33:11 Created 65 markers in 28 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;0:33:15 Timer event: 9462ms: Create markers: com.dcx.ivkmds.fwk.ass
(Finished creating markers for com.dcx.ivkmds.fwk.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;color:navy'&gt;0:33:15 Created
162 markers in 117 files&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;11:59:58 Removed problems and tasks for project
com.dcx.ivkmds.fwk.common.spec.trace.aspectj&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;11:59:58 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:0:0 Removed problems and tasks for project
com.dcx.ivkmds.fwk.common.ass.persist&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:0:0 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:0:0 Removed problems and tasks for project
com.dcx.ivkmds.fwk.common.businessobjects.persistent&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:0:0 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:0:2 Removed problems and tasks for project
com.dcx.ivkmds.fwk.rcs&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:0:2 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:0:2 Removed problems and tasks for project
com.dcx.ivkmds.csolver.cts&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:0:3 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:0:3 Removed problems and tasks for project
com.dcx.ivkmds.common.businessobjects.persistent&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:0:5 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:0:6 Removed problems and tasks for project
com.dcx.ivkmds.common.businessobjects.fwktest&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:0:6 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:25 Removed problems and tasks for project
com.dcx.ivkmds.fwk.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:27 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:28 Removed problems and tasks for project
com.dcx.ivkmds.application.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:33 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:33 Removed problems and tasks for project
com.dcx.ivkmds.csolver.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:35 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:37 Removed problems and tasks for project
com.dcx.ivkmds._45_export_import.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:39 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:41 Removed problems and tasks for project
com.dcx.ivkmds._00_fwktest.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:41 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:41 Removed problems and tasks for project
com.dcx.ivkmds.csolver.cts.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:41 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:41 Removed problems and tasks for project
com.dcx.ivkmds.application.rcs.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:41 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:41 Removed problems and tasks for project
com.dcx.ivkmds.testfwk&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:42 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:42 Removed problems and tasks for project
com.dcx.ivkmds.fwk.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:45 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:45 Removed problems and tasks for project
com.dcx.ivkmds.fwk.test.rcs&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:45 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:45 Removed problems and tasks for project
com.dcx.ivkmds.fwk.test.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:45 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:45 Removed problems and tasks for project com.dcx.ivkmds.csolver.test.cts&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:46 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:46 Removed problems and tasks for project
com.dcx.ivkmds.application.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:51 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:51 Removed problems and tasks for project
com.dcx.ivkmds.csolver.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:51 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:51 Removed problems and tasks for project com.dcx.ivkmds.application.test.rcs.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:51 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:51 Removed problems and tasks for project
com.dcx.ivkmds.application.test.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:51 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:51 Removed problems and tasks for project
com.dcx.ivkmds._55_archive.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:51 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:51 Removed problems and tasks for project com.dcx.ivkmds._50_reports.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:51 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:51 Removed problems and tasks for project
com.dcx.ivkmds._45_export_import.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:1:51 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3818ms: Delete markers:
com.dcx.ivkmds.application.test.rcs.standalone (Finished deleting markers for
com.dcx.ivkmds.application.test.rcs.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3827ms: Delete markers:
com.dcx.ivkmds.csolver.cts (Finished deleting markers for
com.dcx.ivkmds.csolver.cts)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3835ms: Delete markers:
com.dcx.ivkmds._55_archive.test.ass (Finished deleting markers for
com.dcx.ivkmds._55_archive.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3843ms: Delete markers:
com.dcx.ivkmds.common.businessobjects.persistent (Finished deleting markers for
com.dcx.ivkmds.common.businessobjects.persistent)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3853ms: Delete markers:
com.dcx.ivkmds.fwk.common.ass.persist (Finished deleting markers for
com.dcx.ivkmds.fwk.common.ass.persist)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3861ms: Delete markers:
com.dcx.ivkmds._00_fwktest.ass (Finished deleting markers for
com.dcx.ivkmds._00_fwktest.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3868ms: Delete markers:
com.dcx.ivkmds._45_export_import.test.ass (Finished deleting markers for
com.dcx.ivkmds._45_export_import.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3876ms: Delete markers: com.dcx.ivkmds.fwk.test.ass
(Finished deleting markers for com.dcx.ivkmds.fwk.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3892ms: Delete markers:
com.dcx.ivkmds.fwk.test.common (Finished deleting markers for
com.dcx.ivkmds.fwk.test.common)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3908ms: Delete markers: com.dcx.ivkmds._45_export_import.ass
(Finished deleting markers for com.dcx.ivkmds._45_export_import.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3938ms: Delete markers:
com.dcx.ivkmds.application.ass (Finished deleting markers for
com.dcx.ivkmds.application.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3947ms: Delete markers:
com.dcx.ivkmds.csolver.test.cts (Finished deleting markers for
com.dcx.ivkmds.csolver.test.cts)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3950ms: Delete markers:
com.dcx.ivkmds._50_reports.test.ass (Finished deleting markers for
com.dcx.ivkmds._50_reports.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3952ms: Delete markers:
com.dcx.ivkmds.application.rcs.standalone (Finished deleting markers for
com.dcx.ivkmds.application.rcs.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3954ms: Delete markers:
com.dcx.ivkmds.fwk.common.spec.trace.aspectj (Finished deleting markers for
com.dcx.ivkmds.fwk.common.spec.trace.aspectj)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3961ms: Delete markers:
com.dcx.ivkmds.csolver.test.ass (Finished deleting markers for
com.dcx.ivkmds.csolver.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3961ms: Delete markers:
com.dcx.ivkmds.fwk.test.rcs (Finished deleting markers for
com.dcx.ivkmds.fwk.test.rcs)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3968ms: Delete markers:
com.dcx.ivkmds.fwk.common.businessobjects.persistent (Finished deleting markers
for com.dcx.ivkmds.fwk.common.businessobjects.persistent)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3972ms: Delete markers:
com.dcx.ivkmds.common.businessobjects.fwktest (Finished deleting markers for
com.dcx.ivkmds.common.businessobjects.fwktest)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3983ms: Delete markers: com.dcx.ivkmds.testfwk
(Finished deleting markers for com.dcx.ivkmds.testfwk)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 3988ms: Delete markers:
com.dcx.ivkmds.application.test.common (Finished deleting markers for
com.dcx.ivkmds.application.test.common)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 4010ms: Delete markers: com.dcx.ivkmds.fwk.rcs
(Finished deleting markers for com.dcx.ivkmds.fwk.rcs)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 4063ms: Delete markers:
com.dcx.ivkmds.csolver.cts.standalone (Finished deleting markers for
com.dcx.ivkmds.csolver.cts.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:0 Timer event: 4102ms: Delete markers: com.dcx.ivkmds.fwk.ass
(Finished deleting markers for com.dcx.ivkmds.fwk.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:1 Timer event: 4145ms: Delete markers:
com.dcx.ivkmds.csolver.ass (Finished deleting markers for
com.dcx.ivkmds.csolver.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:1 Timer event: 4188ms: Delete markers:
com.dcx.ivkmds.application.test.ass (Finished deleting markers for
com.dcx.ivkmds.application.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:16 Compiler configuration for project
com.dcx.ivkmds.fwk.common.spec.trace.aspectj doesn't know previous state, so
assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:16
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:16 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:16 Project=com.dcx.ivkmds.fwk.common.spec.trace.aspectj, kind
of build requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:16 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:16 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:16 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:17 Timer event: 169ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:17 Compiler configuration for project
com.dcx.ivkmds.fwk.common.spec.trace.aspectj has been read by compiler.&amp;nbsp;
Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:17&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:17 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:2:17 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:2:17 Timer event: 415ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:2:17 Timer event: 417ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:2:17 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:2:17 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:17 Timer event: 464ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:17 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:2:17 Types affected during build = 2&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:17 Timer event: 635ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:17 Timer event: 27ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.fwk.common.spec.trace.aspectj&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:58 Compiler configuration for project com.dcx.ivkmds.fwk.common.ass.persist
doesn't know previous state, so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:58
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:58 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:58 Project=com.dcx.ivkmds.fwk.common.ass.persist, kind of
build requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:58 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:58 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:58 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:58 Timer event: 112ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:58 Compiler configuration for project
com.dcx.ivkmds.fwk.common.ass.persist has been read by compiler.&amp;nbsp;
Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:58&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:2:58 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:2:58 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:1 Timer event: 3152ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:1 Timer event: 3309ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:3 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:3 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:3 Timer event: 5590ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:3 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:3 Types affected during build = 48&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:3 Timer event: 5707ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:3 Timer event: 9ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.fwk.common.ass.persist&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:3 Compiler configuration for project
com.dcx.ivkmds.fwk.common.businessobjects.persistent doesn't know previous
state, so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:3
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:3 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:3
Project=com.dcx.ivkmds.fwk.common.businessobjects.persistent, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:3 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:3 Timer event: 1ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:3 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:4 Timer event: 490ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:4 Compiler configuration for project
com.dcx.ivkmds.fwk.common.businessobjects.persistent has been read by
compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:4 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:4 Preparing for build: not going to be incremental because no
successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:4 Timer event: 376ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:4 Timer event: 379ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:4 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:4 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:4 Timer event: 426ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:4 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:4 Types affected during build = 6&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:4 Timer event: 919ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:4 Timer event: 8ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.fwk.common.businessobjects.persistent&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:8 Compiler configuration for project com.dcx.ivkmds.fwk.rcs
doesn't know previous state, so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:8
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:8 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:8 Project=com.dcx.ivkmds.fwk.rcs, kind of build requested=Full
AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:8 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:8 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:8 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:8 Timer event: 191ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:9 Compiler configuration for project com.dcx.ivkmds.fwk.rcs
has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:9&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:9 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:9 Preparing for build: not going to be incremental because no
successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:19 Timer event: 10324ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:19 Timer event: 10339ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:26 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:26 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:26 Timer event: 17625ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:26 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:26 Types affected during build = 87&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:26 Timer event: 17837ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:26 Timer event: 9ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.fwk.rcs&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:26 Compiler configuration for project
com.dcx.ivkmds.csolver.cts doesn't know previous state, so assuming EVERYTHING
has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:26
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:26 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:26 Project=com.dcx.ivkmds.csolver.cts, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:26 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:26 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:26 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:27 Timer event: 357ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:27 Compiler configuration for project
com.dcx.ivkmds.csolver.cts has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:27&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:3:27 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:27 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:38 Timer event: 11740ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:3:38 Timer event: 11884ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:4:21 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:4:23 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:23 Timer event: 56046ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:23 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:4:23 Types affected during build = 356&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:23 Timer event: 56478ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:23 Timer event: 8ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.csolver.cts&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:25 Compiler configuration for project
com.dcx.ivkmds.common.businessobjects.persistent doesn't know previous state,
so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:25
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:25 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:25 Project=com.dcx.ivkmds.common.businessobjects.persistent,
kind of build requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:25 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:25 Timer event: 1ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:25 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:30 Timer event: 5907ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:31 Compiler configuration for project
com.dcx.ivkmds.common.businessobjects.persistent has been read by
compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:31&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:4:31 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:4:31 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:4:36 Timer event: 5190ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:4:36 Timer event: 5192ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:4:53 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:5:3 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:3 Timer event: 32307ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:3 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:5:3 Types affected during build = 331&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:3 Timer event: 38641ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:3 Timer event: 20ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.common.businessobjects.persistent&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:6 Compiler configuration for project
com.dcx.ivkmds.common.businessobjects.fwktest doesn't know previous state, so
assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:6
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:6 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:6 Project=com.dcx.ivkmds.common.businessobjects.fwktest, kind
of build requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:6 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:6 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:6 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:6 Timer event: 340ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:6 Compiler configuration for project
com.dcx.ivkmds.common.businessobjects.fwktest has been read by compiler.&amp;nbsp;
Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:6&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:6 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:5:6 Preparing for build: not going to be incremental because no
successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:5:7 Timer event: 560ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:5:7 Timer event: 570ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:5:7 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:5:8 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:8 Timer event: 1139ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:8 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:5:8 Types affected during build = 32&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:8 Timer event: 1497ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:5:8 Timer event: 8ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.common.businessobjects.fwktest&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:49 Compiler configuration for project com.dcx.ivkmds.fwk.ass
doesn't know previous state, so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:49
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:49 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:49 Project=com.dcx.ivkmds.fwk.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:49 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:49 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:49 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:50 Timer event: 350ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:50 Compiler configuration for project com.dcx.ivkmds.fwk.ass
has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:50&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:50 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:6:50 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:6:54 Timer event: 3875ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:6:54 Timer event: 4018ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:6:58 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:6:58 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:58 Timer event: 8226ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:58 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:6:58 Types affected during build = 117&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:58 Timer event: 8586ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:6:58 Timer event: 8ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.fwk.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:0 Compiler configuration for project
com.dcx.ivkmds.application.ass doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:0
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:0 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:0 Project=com.dcx.ivkmds.application.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:0 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:0 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:0 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:6 Timer event: 6123ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:7 Compiler configuration for project
com.dcx.ivkmds.application.ass has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:7&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:7 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:7:7 Preparing for build: not going to be incremental because no
successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:7:14 Timer event: 8214ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:7:14 Timer event: 8246ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:7:34 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:7:34 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34 Timer event: 28032ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:7:34 Types affected during build = 296&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34 Timer event: 34187ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34 Timer event: 10ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.application.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34 Compiler configuration for project
com.dcx.ivkmds.csolver.ass doesn't know previous state, so assuming EVERYTHING
has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34 Project=com.dcx.ivkmds.csolver.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34 Builder: Tidied output folder(s), removed class files and derived
resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34 Timer event: 124ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34 Compiler configuration for project
com.dcx.ivkmds.csolver.ass has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:34 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:7:34 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:7:36 Timer event: 1850ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:7:36 Timer event: 1935ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:7:49 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:7:49 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:49 Timer event: 14870ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:49 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:7:49 Types affected during build = 87&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:49 Timer event: 15002ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:49 Timer event: 339ms: Update visualizer, xref, advice
listeners for (separate thread): com.dcx.ivkmds.csolver.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:55 Compiler configuration for project
com.dcx.ivkmds._45_export_import.ass doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:55
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:55 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:55 Project=com.dcx.ivkmds._45_export_import.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:55 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:55 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:55 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:55 Timer event: 158ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:55 Compiler configuration for project com.dcx.ivkmds._45_export_import.ass
has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:55&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:7:55 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:7:55 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:2 Timer event: 6934ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:2 Timer event: 6952ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:20 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:20 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:20 Timer event: 24853ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:20 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:20 Types affected during build = 428&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:20 Timer event: 25059ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:20 Timer event: 7ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds._45_export_import.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Compiler configuration for project
com.dcx.ivkmds._00_fwktest.ass doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 ===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Project=com.dcx.ivkmds._00_fwktest.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Timer event: 66ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Compiler configuration for project
com.dcx.ivkmds._00_fwktest.ass has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:35 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:35 Timer event: 344ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:35 Timer event: 430ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:35 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:35 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Timer event: 864ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:35 Types affected during build = 4&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Timer event: 932ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Compiler configuration for project
com.dcx.ivkmds.csolver.cts.standalone doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 ===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Project=com.dcx.ivkmds.csolver.cts.standalone, kind of
build requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:35 Timer event: 9ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds._00_fwktest.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:36 Timer event: 172ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:36 Compiler configuration for project
com.dcx.ivkmds.csolver.cts.standalone has been read by compiler.&amp;nbsp;
Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:36&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:36 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:36 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:36 Timer event: 632ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:36 Timer event: 643ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:37 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:37 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:37 Timer event: 1297ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:37 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:37 Types affected during build = 17&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:37 Timer event: 1472ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:37 Timer event: 9ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.csolver.cts.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:37 Compiler configuration for project
com.dcx.ivkmds.application.rcs.standalone doesn't know previous state, so
assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:37
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:37 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:37 Project=com.dcx.ivkmds.application.rcs.standalone, kind of
build requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:37 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:37 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:37 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:38 Timer event: 235ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:38 Compiler configuration for project
com.dcx.ivkmds.application.rcs.standalone has been read by compiler.&amp;nbsp;
Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:38&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:38 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:38 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:38 Timer event: 702ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:38 Timer event: 703ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:38 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:38 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:38 Timer event: 946ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:38 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:38 Types affected during build = 9&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:39 Timer event: 1188ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:39 Timer event: 8ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.application.rcs.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:39 Compiler configuration for project com.dcx.ivkmds.testfwk
doesn't know previous state, so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:39
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:39 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:39 Project=com.dcx.ivkmds.testfwk, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:39 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:39 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:39 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:39 Timer event: 623ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:39 Compiler configuration for project com.dcx.ivkmds.testfwk
has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:39&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:39 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:39 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:44 Timer event: 4970ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:45 Timer event: 5235ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:47 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:47 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:47 Timer event: 7946ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:47 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:47 Types affected during build = 45&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:47 Timer event: 8629ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:47 Timer event: 8ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.testfwk&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:47 Compiler configuration for project com.dcx.ivkmds.fwk.test.ass
doesn't know previous state, so assuming EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:47
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:47 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:47 Project=com.dcx.ivkmds.fwk.test.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:47 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:47 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:47 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:48 Timer event: 633ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:48 Compiler configuration for project
com.dcx.ivkmds.fwk.test.ass has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:48&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED, CLASSPATH_CHANGED,
INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:8:48 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:48 Preparing for build: not going to be incremental because
no successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:50 Timer event: 1564ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:8:50 Timer event: 1701ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:0 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:0 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Timer event: 11865ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:0 Types affected during build = 28&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Timer event: 12538ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Compiler configuration for project
com.dcx.ivkmds.fwk.test.rcs doesn't know previous state, so assuming EVERYTHING
has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:
9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Timer event: 8ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.fwk.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Project=com.dcx.ivkmds.fwk.test.rcs, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Timer event: 42ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Compiler configuration for project
com.dcx.ivkmds.fwk.test.rcs has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:0 Preparing for build: not going to be incremental because no
successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:0 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:0 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Timer event: 113ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:0 Types affected during build = 0&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Timer event: 162ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Compiler configuration for project
com.dcx.ivkmds.fwk.test.common doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 ===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Project=com.dcx.ivkmds.fwk.test.common, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Timer event: 8ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.fwk.test.rcs&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Timer event: 122ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Compiler configuration for project
com.dcx.ivkmds.fwk.test.common has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:0 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:0 Preparing for build: not going to be incremental because no
successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:1 Timer event: 433ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:1 Timer event: 469ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:1 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:1 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:1 Timer event: 1137ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:1 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:1 Types affected during build = 6&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:1 Timer event: 1291ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:1 Timer event: 8ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.fwk.test.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:1 Compiler configuration for project
com.dcx.ivkmds.csolver.test.cts doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:1
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:1 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:1 Project=com.dcx.ivkmds.csolver.test.cts, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:1 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:1 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:1 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:3 Timer event: 1183ms: Pre compile&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:3 Compiler configuration for project
com.dcx.ivkmds.csolver.test.cts has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was
[PROJECTSOURCEFILES_CHANGED, JAVAOPTIONS_CHANGED, ASPECTPATH_CHANGED,
CLASSPATH_CHANGED, INPATH_CHANGED, NONSTANDARDOPTIONS_CHANGED, OUTJAR_CHANGED,
PROJECTSOURCERESOURCES_CHANGED, OUTPUTDESTINATIONS_CHANGED, INJARS_CHANGED]&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:3 Resetting list of modified source files.&amp;nbsp; Was null&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:3 Preparing for build: not going to be incremental because no
successful previous full build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:4 Timer event: 1638ms: Time to first compiled message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:4 Timer event: 1655ms: Time to first woven message&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:6 AspectJ reports build successful, build was: FULL&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:7 AJDE Callback: finish. Was full build: true&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:7 Timer event: 4018ms: Total time spent in AJDE&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:7 Timer event: 0ms: Refresh after build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=green face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:green'&gt;12:9:7 Types affected during build = 37&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:7 Timer event: 5214ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:7 Timer event: 8ms: Update visualizer, xref, advice listeners
for (separate thread): com.dcx.ivkmds.csolver.test.cts&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:9 Timer event: 129ms: Delete markers:
com.dcx.ivkmds.fwk.common.spec.trace.aspectj (Finished deleting markers for
com.dcx.ivkmds.fwk.common.spec.trace.aspectj)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:9 Timer event: 0ms: Create markers:
com.dcx.ivkmds.fwk.common.spec.trace.aspectj (Finished creating markers for
com.dcx.ivkmds.fwk.common.spec.trace.aspectj)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:9 Created 0 markers in 2 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:9 Timer event: 154ms: Delete markers:
com.dcx.ivkmds.application.rcs.standalone (Finished deleting markers for
com.dcx.ivkmds.application.rcs.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:9 Timer event: 154ms: Delete markers:
com.dcx.ivkmds.common.businessobjects.fwktest (Finished deleting markers for
com.dcx.ivkmds.common.businessobjects.fwktest)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:9 Timer event: 159ms: Delete markers:
com.dcx.ivkmds.csolver.cts.standalone (Finished deleting markers for
com.dcx.ivkmds.csolver.cts.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:9 Timer event: 164ms: Delete markers: com.dcx.ivkmds.fwk.rcs
(Finished deleting markers for com.dcx.ivkmds.fwk.rcs)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:9 Timer event: 164ms: Delete markers:
com.dcx.ivkmds.csolver.test.cts (Finished deleting markers for
com.dcx.ivkmds.csolver.test.cts)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:9 Timer event: 171ms: Delete markers:
com.dcx.ivkmds._45_export_import.ass (Finished deleting markers for
com.dcx.ivkmds._45_export_import.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:9 Timer event: 179ms: Delete markers:
com.dcx.ivkmds.application.ass (Finished deleting markers for com.dcx.ivkmds.application.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:9 Timer event: 223ms: Delete markers: com.dcx.ivkmds.testfwk
(Finished deleting markers for com.dcx.ivkmds.testfwk)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:9 Timer event: 228ms: Delete markers:
com.dcx.ivkmds.csolver.cts (Finished deleting markers for com.dcx.ivkmds.csolver.cts)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:9 Timer event: 248ms: Delete markers:
com.dcx.ivkmds.csolver.ass (Finished deleting markers for
com.dcx.ivkmds.csolver.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:10 Timer event: 985ms: Create markers:
com.dcx.ivkmds.application.rcs.standalone (Finished creating markers for
com.dcx.ivkmds.application.rcs.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:10 Created 2 markers in 9 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:13 Timer event: 3645ms: Create markers: com.dcx.ivkmds.csolver.cts.standalone
(Finished creating markers for com.dcx.ivkmds.csolver.cts.standalone)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:13 Created 7 markers in 17 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:13 Timer event: 515ms: Delete markers:
com.dcx.ivkmds.fwk.test.rcs (Finished deleting markers for
com.dcx.ivkmds.fwk.test.rcs)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:13 Timer event: 0ms: Create markers:
com.dcx.ivkmds.fwk.test.rcs (Finished creating markers for
com.dcx.ivkmds.fwk.test.rcs)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:13 Created 0 markers in 0 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:13 Timer event: 519ms: Delete markers:
com.dcx.ivkmds.fwk.common.ass.persist (Finished deleting markers for
com.dcx.ivkmds.fwk.common.ass.persist)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:13 Timer event: 579ms: Delete markers:
com.dcx.ivkmds.fwk.test.common (Finished deleting markers for
com.dcx.ivkmds.fwk.test.common)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:13 Timer event: 580ms: Delete markers: com.dcx.ivkmds.common.businessobjects.persistent
(Finished deleting markers for
com.dcx.ivkmds.common.businessobjects.persistent)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:13 Timer event: 583ms: Delete markers:
com.dcx.ivkmds._00_fwktest.ass (Finished deleting markers for
com.dcx.ivkmds._00_fwktest.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:13 Timer event: 586ms: Delete markers: com.dcx.ivkmds.fwk.ass
(Finished deleting markers for com.dcx.ivkmds.fwk.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:13 Timer event: 589ms: Delete markers:
com.dcx.ivkmds.fwk.test.ass (Finished deleting markers for
com.dcx.ivkmds.fwk.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:19 Timer event: 9976ms: Create markers:
com.dcx.ivkmds._45_export_import.ass (Finished creating markers for
com.dcx.ivkmds._45_export_import.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:19 Created 16 markers in 428 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:19 Timer event: 6127ms: Create markers:
com.dcx.ivkmds.fwk.test.common (Finished creating markers for
com.dcx.ivkmds.fwk.test.common)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:19 Created 9 markers in 4 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:40 Timer event: 30674ms: Create markers:
com.dcx.ivkmds.csolver.test.cts (Finished creating markers for
com.dcx.ivkmds.csolver.test.cts)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:40 Created 53 markers in 37 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:42 Timer event: 32895ms: Create markers:
com.dcx.ivkmds.fwk.rcs (Finished creating markers for com.dcx.ivkmds.fwk.rcs)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:42 Created 57 markers in 87 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:45 Timer event: 31789ms: Create markers:
com.dcx.ivkmds.fwk.common.ass.persist (Finished creating markers for
com.dcx.ivkmds.fwk.common.ass.persist)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:9:45 Created 55 markers in 48 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:10:0 Timer event: 51121ms: Create markers: com.dcx.ivkmds.testfwk
(Finished creating markers for com.dcx.ivkmds.testfwk)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:10:0 Created 93 markers in 45 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:10:4 Timer event: 55150ms: Create markers:
com.dcx.ivkmds.csolver.ass (Finished creating markers for
com.dcx.ivkmds.csolver.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:10:4 Created 97 markers in 87 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:10:11 Timer event: 61790ms: Create markers:
com.dcx.ivkmds.common.businessobjects.fwktest (Finished creating markers for
com.dcx.ivkmds.common.businessobjects.fwktest)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:10:11 Created 111 markers in 32 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:10:30 Timer event: 76834ms: Create markers:
com.dcx.ivkmds.fwk.ass (Finished creating markers for com.dcx.ivkmds.fwk.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:10:30 Created 162 markers in 117 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:10:35 Timer event: 85515ms: Create markers:
com.dcx.ivkmds.csolver.cts (Finished creating markers for
com.dcx.ivkmds.csolver.cts)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:10:35 Created 167 markers in 356 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:10:37 Timer event: 83568ms: Create markers:
com.dcx.ivkmds._00_fwktest.ass (Finished creating markers for
com.dcx.ivkmds._00_fwktest.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:10:37 Created 179 markers in 4 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:11:11 Timer event: 117407ms: Create markers:
com.dcx.ivkmds.fwk.test.ass (Finished creating markers for
com.dcx.ivkmds.fwk.test.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:11:11 Created 418 markers in 28 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:12:1 Timer event: 167988ms: Create markers:
com.dcx.ivkmds.common.businessobjects.persistent (Finished creating markers for
com.dcx.ivkmds.common.businessobjects.persistent)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:12:1 Created 1026 markers in 331 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:14 Timer event: 245166ms: Create markers:
com.dcx.ivkmds.application.ass (Finished creating markers for
com.dcx.ivkmds.application.ass)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:14 Created 2823 markers in 296 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:28 Timer event: 0ms: Delete markers:
com.dcx.ivkmds.fwk.common.businessobjects.persistent (Finished deleting markers
for com.dcx.ivkmds.fwk.common.businessobjects.persistent)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:28 Timer event: 1ms: Create markers:
com.dcx.ivkmds.fwk.common.businessobjects.persistent (Finished creating markers
for com.dcx.ivkmds.fwk.common.businessobjects.persistent)&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:28 Created 0 markers in 6 files&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:34 ===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:34 Build kind = AUTOBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:34 Project=com.dcx.ivkmds.fwk.test.common, kind of build
requested=Incremental AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:34 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 1424ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.test.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 build: Examined delta - no source file or classpath
changes for project com.dcx.ivkmds.fwk.test.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.testfwk&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in org.apache.commons.collections&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in org.apache.commons.lang&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in org.hibernate&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.ibm.ebiz.fwk&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.iap.clientcontainer.plugin&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.lrt&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.persist&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.spec.error&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.spec.lrt&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.spec.trace&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.spec.time&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.cmd.ejb.client&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.error&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.jac&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.security&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.spec.perflog&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.sun.xml.bind&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.ass.health&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.spec.trace.aspectj&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.rcs&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.common.businessobjects.persistent&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.rcs.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.ibm.db2.jcc&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in org.springframework&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in org.apache.commons.beanutils&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.common.businessobjects.persistent&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.common.businessobjects.application&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.common&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.csolver.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.csolver.ass.csservice&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.csolver.common.cts&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._05_product_structure.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._05_product_structure.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._10_code_base.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._10_code_base.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._15_master_data.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._15_master_data.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._20_sales_references.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._20_sales_references.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._25_dcm.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._25_dcm.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._30_central_data_transfer.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._30_central_data_transfer.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._45_export_import.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._45_export_import.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._50_reports.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._50_reports.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._35_documentation_news.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._35_documentation_news.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._40_development_doc.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._40_development_doc.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._65_test.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._65_test.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._70_configs_orders.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._70_configs_orders.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._80_transactions.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._80_transactions.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._85_administration.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._85_administration.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._90_misc.common.ass.cmd&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._90_misc.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.common.ass.error&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.csolver.cts&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.csolver.cts.cscommlayer&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._55_archive.common.ass.usecase&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.common.ass.persist&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.application.rcs&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.ibm.ebiz.fwk.eclipse&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.csolver.cts.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.standalone&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds._45_export_import.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in org.testng.jdk15&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.test.ass&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Looking for and marking configuration
changes in com.dcx.ivkmds.fwk.ass.health.ejb.client&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 &amp;nbsp;&amp;nbsp; Configuration changes found: false&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Compiler configuration for project
com.dcx.ivkmds.fwk.test.common has been read by compiler.&amp;nbsp; Resetting.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration was []&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Resetting list of modified source files.&amp;nbsp; Was []&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 1ms: Look for source/resource changes&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 No source/resource changes found, exiting build&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 1501ms: Total time spent in AJBuilder.build()&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Compiler configuration for project
com.dcx.ivkmds.application.test.ass doesn't know previous state, so assuming
EVERYTHING has changed.&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36
===========================================================================================&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Build kind = FULLBUILD&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Project=com.dcx.ivkmds.application.test.ass, kind of build
requested=Full AspectJ compilation&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Flush included source file cache&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Timer event: 0ms: Check delta&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='text-autospace:none'&gt;&lt;font size=2 color=navy face=&quot;Courier New&quot;&gt;&lt;span style='font-size:10.0pt;font-family:&quot;Courier New&quot;;
color:navy'&gt;12:13:36 Builder: Tidied output folder(s), removed class files and
derived resources&lt;/span&gt;&lt;/font&gt;&lt;font size=1 face=&quot;Segoe UI&quot;&gt;&lt;span style='font-size:9.0pt;font-family:&quot;Segoe UI&quot;'&gt;&lt;o:p&gt;&lt;/o