<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<!-- MHonArc v2.6.10 -->
	<channel>
		<title>ajdt-dev</title>
		<link>http://dev.eclipse.org/mhonarc/lists/ajdt-dev/maillist.html</link>
		<description>ajdt-dev</description>
		<language>en-us</language>
		<pubDate>Fri, 03 May 2013 17:09:46 GMT</pubDate>
		<lastBuildDate>Fri, 03 May 2013 17:09:46 GMT</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MHonArc RSS 2.0 RCFile</generator>
		<managingEditor>webmaster@eclipse.org (Webmaster)</managingEditor>
		<webMaster>webmaster@eclipse.org (Webmaster)</webMaster>
		<image>
			<title>ajdt-dev</title>
			<url>http://www.eclipse.org/eclipse.org-common/themes/Phoenix/images/eclipse_home_header.jpg</url>
			<link>http://dev.eclipse.org/mhonarc/lists/ajdt-dev/maillist.html</link>
		</image>
 

	<item>
		<title>[ajdt-dev] Project meta data is out of date for tools.ajdt</title>
		<link>http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01639.html</link>
		<description>Andrew, Projects are required to keep meta data up to date using the MyFoundation Portal (http://portal.eclipse.org/). The following problems were found with this project's meta-data: * The date for release &amp;quot;2.2.2&amp;quot; is in the past, but the release is not ma...</description>
		<content:encoded><![CDATA[<pre>Andrew,
Projects are required to keep meta data up to date using the MyFoundation
Portal (<a  href="http://portal.eclipse.org/">http://portal.eclipse.org/</a>).  The following problems were found
with this project's meta-data:

* The date for release &quot;2.2.2&quot; is in the past, but the release is not
marked as completed. If it is completed, it should be marked as completed;
if it has been postponed, it should be given a new target date.
* There is no next/future release of this project. All Eclipse projects
must have a &quot;next release&quot; planned and scheduled.


</pre>]]></content:encoded>
		<pubDate>Fri, 05 Apr 2013 04:00:23 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01639.html</guid>
		<author>emo@xxxxxxx (portal on behalf of emo)</author>
	</item>


	<item>
		<title>[ajdt-dev] m2e connector and post-compilation weaving</title>
		<link>http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01638.html</link>
		<description>Hi !I currently have a Maven project that uses post-compilation weaving (aka binary weaving).When building with Maven, everything works as expected.When building with Eclipse, nothing seems to be weaved. I&amp;#39;m using Spring&amp;#39;s &amp;quot;AbstractTransactionAspect&amp;quot; aspec...</description>
		<content:encoded><![CDATA[<div dir="ltr">Hi !<div><br></div><div>I currently have a Maven project that uses post-compilation weaving (aka binary weaving).</div><div>When building with Maven, everything works as expected.</div><div>When building with Eclipse, nothing seems to be weaved.</div>

<div><br></div><div>I&#39;m using Spring&#39;s &quot;AbstractTransactionAspect&quot; aspect in conjunction with the @Transactional annotation for my tests.<br></div><div><br></div><div>=========<br></div><div><div>public class MyClass&#xC2;</div>

<div>{</div><div>&#xC2; &#xC2; @Transactional</div><div>&#xC2; &#xC2; public void doTransactionStuffWithAnnotation()</div><div>&#xC2; &#xC2; {</div><div>&#xC2; &#xC2; <span class="" style="white-space:pre">	</span>TransactionAspectSupport.currentTransactionStatus();</div>

<div>&#xC2; &#xC2; }</div><div>&#xC2; &#xC2;&#xC2;</div><div>&#xC2; &#xC2; public void doTransactionStuffWithoutAnnotation()</div><div>&#xC2; &#xC2; {</div><div>&#xC2; &#xC2; <span class="" style="white-space:pre">	</span>TransactionAspectSupport.currentTransactionStatus(); &#xC2; &#xC2;<span class="" style="white-space:pre">	</span></div>

<div>&#xC2; &#xC2; }</div><div>}</div></div><div>=========<br></div><div><br></div><div style>And the two unit tests :</div><div style><br></div><div style>=========<br></div><div style><div><span class="" style="white-space:pre">	</span>@Test</div>

<div><span class="" style="white-space:pre">	</span>public void withJavaAnnotation() // &lt;-- Fails !</div><div><span class="" style="white-space:pre">	</span>{</div><div><span class="" style="white-space:pre">		</span>new MyClass().doTransactionStuffWithAnnotation();</div>

<div><span class="" style="white-space:pre">	</span>}</div><div><span class="" style="white-space:pre">	</span></div><div><span class="" style="white-space:pre">	</span>@Test(expected = NoTransactionException.class)</div>

<div><span class="" style="white-space:pre">	</span>public void withoutJavaAnnotation()</div><div><span class="" style="white-space:pre">	</span>{</div><div><span class="" style="white-space:pre">		</span>new MyClass().doTransactionStuffWithoutAnnotation();</div>

<div><span class="" style="white-space:pre">	</span>}</div><div>=========<br></div><div><br></div><div style>withJavaAnnotation fails with a NoTransactionException is thrown since that is what TransactionAspectSupport.currentTransactionStatus() throws when the @Transactional method is not weaved.</div>

</div><div><div><br></div><div style>Here is my pom.xml &lt;build&gt; section:</div><div style><br></div><div style>=========<br></div><div style><div style><span style="white-space:pre">	&lt;build&gt;</span><br></div><div>

<span class="" style="white-space:pre">		</span>&lt;plugins&gt;</div><div><span class="" style="white-space:pre">			</span>&lt;plugin&gt;</div><div><span class="" style="white-space:pre">				</span>&lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt;</div>

<div><span class="" style="white-space:pre">				</span>&lt;artifactId&gt;aspectj-maven-plugin&lt;/artifactId&gt;</div><div><span class="" style="white-space:pre">				</span>&lt;version&gt;1.4&lt;/version&gt;</div><div><span class="" style="white-space:pre">				</span>&lt;configuration&gt;</div>

<div><span class="" style="white-space:pre">					</span>&lt;forceAjcCompile&gt;true&lt;/forceAjcCompile&gt;</div><div><span class="" style="white-space:pre">					</span>&lt;source&gt;1.6&lt;/source&gt;</div><div><span class="" style="white-space:pre">					</span>&lt;target&gt;1.6&lt;/target&gt;</div>

<div><span class="" style="white-space:pre">					</span>&lt;showWeaveInfo&gt;true&lt;/showWeaveInfo&gt;</div><div><span class="" style="white-space:pre">					</span>&lt;verbose&gt;true&lt;/verbose&gt;</div><div><span class="" style="white-space:pre">					</span>&lt;sources /&gt;</div>

<div><span class="" style="white-space:pre">					</span>&lt;aspectLibraries&gt;</div><div><span class="" style="white-space:pre">						</span>&lt;aspectLibrary&gt;</div><div><span class="" style="white-space:pre">							</span>&lt;groupId&gt;org.springframework&lt;/groupId&gt;</div>

<div><span class="" style="white-space:pre">							</span>&lt;artifactId&gt;spring-aspects&lt;/artifactId&gt;</div><div><span class="" style="white-space:pre">						</span>&lt;/aspectLibrary&gt;</div><div><span class="" style="white-space:pre">					</span>&lt;/aspectLibraries&gt;</div>

<div><span class="" style="white-space:pre">				</span>&lt;/configuration&gt;</div><div><span class="" style="white-space:pre">				</span>&lt;executions&gt;</div><div><span class="" style="white-space:pre">					</span>&lt;execution&gt;</div>

<div><span class="" style="white-space:pre">						</span>&lt;id&gt;compile&lt;/id&gt;</div><div><span class="" style="white-space:pre">						</span>&lt;configuration&gt;</div><div><span class="" style="white-space:pre">							</span>&lt;weaveDirectories&gt;</div>

<div><span class="" style="white-space:pre">								</span>&lt;weaveDirectory&gt;</div><div><span class="" style="white-space:pre">									</span>${project.build.outputDirectory}</div><div><span class="" style="white-space:pre">								</span>&lt;/weaveDirectory&gt;</div>

<div><span class="" style="white-space:pre">							</span>&lt;/weaveDirectories&gt;</div><div><span class="" style="white-space:pre">						</span>&lt;/configuration&gt;</div><div><span class="" style="white-space:pre">						</span>&lt;phase&gt;process-classes&lt;/phase&gt;</div>

<div><span class="" style="white-space:pre">						</span>&lt;goals&gt;</div><div><span class="" style="white-space:pre">							</span>&lt;goal&gt;compile&lt;/goal&gt;</div><div><span class="" style="white-space:pre">						</span>&lt;/goals&gt;</div>

<div><span class="" style="white-space:pre">					</span>&lt;/execution&gt;</div><div><span class="" style="white-space:pre">					</span>&lt;execution&gt;</div><div><span class="" style="white-space:pre">						</span>&lt;id&gt;test-compile&lt;/id&gt;</div>

<div><span class="" style="white-space:pre">						</span>&lt;configuration&gt;</div><div><span class="" style="white-space:pre">							</span>&lt;weaveDirectories&gt;</div><div><span class="" style="white-space:pre">								</span>&lt;weaveDirectory&gt;</div>

<div><span class="" style="white-space:pre">									</span>${project.build.testOutputDirectory}</div><div><span class="" style="white-space:pre">								</span>&lt;/weaveDirectory&gt;</div><div><span class="" style="white-space:pre">							</span>&lt;/weaveDirectories&gt;</div>

<div><span class="" style="white-space:pre">						</span>&lt;/configuration&gt;</div><div><span class="" style="white-space:pre">						</span>&lt;phase&gt;process-test-classes&lt;/phase&gt;</div><div><span class="" style="white-space:pre">						</span>&lt;goals&gt;</div>

<div><span class="" style="white-space:pre">							</span>&lt;goal&gt;test-compile&lt;/goal&gt;</div><div><span class="" style="white-space:pre">						</span>&lt;/goals&gt;</div><div><span class="" style="white-space:pre">					</span>&lt;/execution&gt;</div>

<div><span class="" style="white-space:pre">				</span>&lt;/executions&gt;</div><div><span class="" style="white-space:pre">			</span>&lt;/plugin&gt;</div><div><span class="" style="white-space:pre">		</span>&lt;/plugins&gt;</div>

<div><span class="" style="white-space:pre">	</span>&lt;/build&gt;</div></div><div style>=========<br></div><div style><br></div><div style>As you can see, I use aspectj-maven-plugin&#39;s &quot;weaveDirectory&quot; with a &lt;sources /&gt; and a &lt;forceAjcCompile&gt;true&lt;/forceAjcCompile&gt; to ignore all sources, force compilation despite there being &quot;no sources&quot; and then set the -inpath (via weaveDirectory) to the project&#39;s output directories (target/classes and target/test-classes).</div>

<div style><br></div><div style>I add spring-aspects to the projects aspectpath (via &lt;aspectLibraries&gt;)</div><div style><br></div><div style>Here is the parameter file created by aspectj-maven-plugin</div><div style>

<br></div><div style>=========</div><div style><div>-encoding</div><div>UTF-8</div><div>-showWeaveInfo</div><div>-source</div><div>1.6</div><div>-target</div><div>1.6</div><div>-verbose</div><div>-classpath</div><div>THE_CLASSPATH</div>

<div>-inpath</div><div>PATH_TO_PROJECT\test-ctw\target\classes</div><div>-aspectpath</div><div>PATH_TO_M2REPOSITORY\.m2\repository\org\springframework\spring-aspects\3.2.1.RELEASE\spring-aspects-3.2.1.RELEASE.jar</div><div>

-d</div><div>PATH_TO_PROJECT\test-ctw\target\classes</div></div><div>=========<br></div><div><br></div><div style>(I&#39;ve removed the classpath as it was rather large, let me know if it could be useful)</div><div><br></div>

<div style>Note using compile time weaving (not post-compilation weaving) works as expected and load-time weaving works as well (both in Eclipse and Maven). Sadly, these two options cannot be used for this project.</div>
<div>
<br></div><div style>With that information, here are my questions:</div><div><br></div><div><div>- Does the AJDT m2e connector support post-compilation weaving?</div><div><br></div><div style>- Do I have to add something within the Eclipse project properties, under &quot;AspectJ build&quot; &gt; &quot;Inpath&quot;? (aspectpath is filled with spring-aspects but there is nothing under the Inpath tab)</div>

<div><br></div><div>- What is the recommended configuration to use post-compilation weaving in Eclipse based on a Maven configuration?</div></div><div><br></div><div style>- Could I perhaps use a lifecycle mapping to solve my problem?</div>

<div><br></div><div style>Thank you very much for your time,</div><div style>Guillaume Simard</div></div></div>
]]></content:encoded>
		<pubDate>Mon, 11 Mar 2013 20:40:54 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01638.html</guid>
		<author>guisim@xxxxxxx (Guillaume Simard)</author>
	</item>


	<item>
		<title>[ajdt-dev] AspectJ 1.7.2 and AJDT 2.2.2 released</title>
		<link>http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01637.html</link>
		<description>AspectJ&amp;#xA0;1.7.2&amp;#xA0;has been released. The short list of issues addressed is accessible in the readme: http://eclipse.org/aspectj/doc/released/README-172.html There is one important issue addressed related to the handling of weak references when building large p...</description>
		<content:encoded><![CDATA[<div dir="ltr"><div class="gmail_default" style="font-family:&#39;trebuchet ms&#39;,sans-serif;font-size:small"><span class="" style="background-color:rgb(255,255,204);font-family:arial,sans-serif;font-size:12.800000190734863px">AspectJ</span><span style="font-family:arial,sans-serif;font-size:12.800000190734863px">&#xA0;</span><span class="" style="background-color:rgb(255,255,204);font-family:arial,sans-serif;font-size:12.800000190734863px">1</span><span style="font-family:arial,sans-serif;font-size:12.800000190734863px">.7.2</span><span style="font-family:arial,sans-serif;font-size:12.800000190734863px">&#xA0;has been released</span><span style="font-family:arial,sans-serif;font-size:12.800000190734863px">. The short list of issues addressed is accessible in</span><br style="font-family:arial,sans-serif;font-size:12.800000190734863px">
<span style="font-family:arial,sans-serif;font-size:12.800000190734863px">the readme:</span><br style="font-family:arial,sans-serif;font-size:12.800000190734863px"><br style="font-family:arial,sans-serif;font-size:12.800000190734863px">
<a href="http://eclipse.org/aspectj/doc/released/README-172.html" target="_blank" style="font-family:arial,sans-serif;font-size:12.800000190734863px">http://eclipse.org/<span class="" style="background-color:rgb(255,255,204);color:rgb(34,34,34)">aspectj</span>/doc/released/README-172.html</a><br style="font-family:arial,sans-serif;font-size:12.800000190734863px">
<br></div><div class="gmail_default"><font face="arial, sans-serif">There is one important issue addressed related to the handling of weak references when building large projects that use generics. If you were seeing some intermittent failures when building large projects it is definitely worth trying out this release.</font></div>
<div class="gmail_default"><span style="font-size:12.800000190734863px;font-family:arial,sans-serif">The download is here:</span></div><div class="gmail_default"><br style="font-size:12.800000190734863px;font-family:arial,sans-serif">
<a href="http://eclipse.org/aspectj/downloads.php" target="_blank" style="font-size:12.800000190734863px;font-family:arial,sans-serif">http://eclipse.org/<span class="" style="background-color:rgb(255,255,204);color:rgb(34,34,34)">aspectj</span>/downloads.php</a><br style="font-size:12.800000190734863px;font-family:arial,sans-serif">
</div><div class="gmail_default"><font face="arial, sans-serif"><br></font></div><div class="gmail_default"><font face="arial, sans-serif">It is even in maven central already !!!</font><br></div><div class="gmail_default">
<font face="arial, sans-serif"><br></font></div><div class="gmail_default">AJDT 2.2.2 has also been released and contains AspectJ 1.7.2:</div><div class="gmail_default"><a href="http://www.eclipse.org/ajdt/whatsnew222">http://www.eclipse.org/ajdt/whatsnew222</a></div>
<div class="gmail_default"><br></div><div class="gmail_default">The AJDT update site for Eclipse 3.8/4.2 users is:</div><div class="gmail_default"><a href="http://download.eclipse.org/tools/ajdt/42/update">http://download.eclipse.org/tools/ajdt/42/update</a><br>
</div><div class="gmail_default"><br></div><div class="gmail_default" style>For AJDT builds for other eclipse releases (including eclipse 4.3), see the AJDT downloads page:</div><div class="gmail_default" style><a href="http://eclipse.org/ajdt/downloads/">http://eclipse.org/ajdt/downloads/</a></div>
<div class="gmail_default"><br><span style="font-family:arial,sans-serif;font-size:12.800000190734863px">Enjoy!</span><br style="font-family:arial,sans-serif;font-size:12.800000190734863px"><span class="" style="font-family:arial,sans-serif;font-size:12.800000190734863px;background-color:rgb(255,255,204)">AspectJ+AJDT</span><span style="font-family:arial,sans-serif;font-size:12.800000190734863px">&#xA0;Team</span><br>
</div></div>
]]></content:encoded>
		<pubDate>Mon, 25 Feb 2013 21:20:34 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01637.html</guid>
		<author>andrew.clement@xxxxxxx (Andy Clement)</author>
	</item>


	<item>
		<title>[ajdt-dev] Project meta data is out of date for tools.ajdt</title>
		<link>http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01636.html</link>
		<description>Andrew, Projects are required to keep meta data up to date using the MyFoundation Portal (http://portal.eclipse.org/). The following problems were found with this project's meta-data: * The date for release &amp;quot;2.2.2&amp;quot; is in the past, but the release is not ma...</description>
		<content:encoded><![CDATA[<pre>Andrew,
Projects are required to keep meta data up to date using the MyFoundation
Portal (<a  href="http://portal.eclipse.org/">http://portal.eclipse.org/</a>).  The following problems were found
with this project's meta-data:

* The date for release &quot;2.2.2&quot; is in the past, but the release is not
marked as completed. If it is completed, it should be marked as completed;
if it has been postponed, it should be given a new target date.
* There is no next/future release of this project. All Eclipse projects
must have a &quot;next release&quot; planned and scheduled.


</pre>]]></content:encoded>
		<pubDate>Sat, 05 Jan 2013 05:00:15 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01636.html</guid>
		<author>emo@xxxxxxx (portal on behalf of emo)</author>
	</item>


	<item>
		<title>[ajdt-dev] AJDT 2.2.1 released!</title>
		<link>http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01635.html</link>
		<description>Hi all, The AJDT team is proud to release AJDT 2.2.1, which includes bug fixes for refactoring support as well as other fixes. This version contains AspectJ 1.7.2.20120920133900, which is AspectJ 1.7.1 plus a few extra bug fixes. AJDT 2.2.1 has only been r...</description>
		<content:encoded><![CDATA[<pre>Hi all,

The AJDT team is proud to release AJDT 2.2.1, which includes bug fixes
for refactoring support as well as other fixes.  This version contains
AspectJ 1.7.2.20120920133900, which is AspectJ 1.7.1 plus a few extra
bug fixes.

AJDT 2.2.1 has only been released on the e42 stream and can be used in
any Eclipse 4.2.x and 3.8.x install from the following update site:

<a  href="http://download.eclipse.org/tools/ajdt/42/update">http://download.eclipse.org/tools/ajdt/42/update</a>

Read the details on the new and noteworthy page:
<a  href="http://www.eclipse.org/ajdt/whatsnew221/">http://www.eclipse.org/ajdt/whatsnew221/</a>

Please send feedback to one of these mailing lists, or raise a
bugzilla: <a  href="http://bugs.eclipse.org/">http://bugs.eclipse.org/</a>

Thanks,
Andrew

</pre>]]></content:encoded>
		<pubDate>Mon, 24 Sep 2012 03:35:47 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01635.html</guid>
		<author>andrew@xxxxxxx (Andrew Eisenberg)</author>
	</item>


	<item>
		<title>[ajdt-dev] Project meta data is out of date for tools.ajdt</title>
		<link>http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01634.html</link>
		<description>Andrew, Projects are required to keep meta data up to date using the MyFoundation Portal (http://portal.eclipse.org/). The following problems were found with this project's meta-data: * The date for release &amp;quot;2.2.0&amp;quot; is in the past, but the release is not ma...</description>
		<content:encoded><![CDATA[<pre>Andrew,
Projects are required to keep meta data up to date using the MyFoundation
Portal (<a  href="http://portal.eclipse.org/">http://portal.eclipse.org/</a>).  The following problems were found
with this project's meta-data:

* The date for release &quot;2.2.0&quot; is in the past, but the release is not
marked as completed. If it is completed, it should be marked as completed;
if it has been postponed, it should be given a new target date.
* There is no next/future release of this project. All Eclipse projects
must have a &quot;next release&quot; planned and scheduled.


</pre>]]></content:encoded>
		<pubDate>Wed, 05 Sep 2012 04:00:18 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01634.html</guid>
		<author>emo@xxxxxxx (portal on behalf of emo)</author>
	</item>


	<item>
		<title>[ajdt-dev] AJDT 2.2.0 released!</title>
		<link>http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01633.html</link>
		<description>The AJDT team is proud to announce the release of AJDT 2.2.0. The major components of this release are AspectJ 1.7.0 support, Eclipse Juno support, and migration of the source code to git. You can find the New and Noteworthy here: http://www.eclipse.org/aj...</description>
		<content:encoded><![CDATA[<pre>The AJDT team is proud to announce the release of AJDT 2.2.0.  The
major components of this release are AspectJ 1.7.0 support, Eclipse
Juno support, and migration of the source code to git.

You can find the New and Noteworthy here:

<a  href="http://www.eclipse.org/ajdt/whatsnew220">http://www.eclipse.org/ajdt/whatsnew220</a>

The Eclipse update sites are here for Juno and Indigo respectively:
<a  href="http://download.eclipse.org/tools/ajdt/42/update">http://download.eclipse.org/tools/ajdt/42/update</a>
<a  href="http://download.eclipse.org/tools/ajdt/37/update">http://download.eclipse.org/tools/ajdt/37/update</a>

Thanks everyone for trying out development snapshots and raising
bugzilla issues.  Please keep the feedback coming!

Andrew

</pre>]]></content:encoded>
		<pubDate>Thu, 05 Jul 2012 18:33:40 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01633.html</guid>
		<author>andrew@xxxxxxx (Andrew Eisenberg)</author>
	</item>
	<item>
		<title>Re: [ajdt-dev] AJDT 2.2.0 and Eclipse Juno compliancy ?</title>
		<link>http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01632.html</link>
		<description> Hi everybody,   I read on different pages related to AJDT (http://www.eclipse.org/projects/project.php?id=tools.ajdt and http://www.eclipse.org/projects/project-plan.php?projectid=tools.ajdt) that a 2.2.0 release of AJDT is planned, in order to provide a ...</description>
		<content:encoded><![CDATA[<table width="100%"><tr><td style="a:link { color: blue } a:visited { color: purple } ">


<div class="WordSection1">
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D">Ok thanks a lot for this information ;)<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"><o:p>&nbsp;</o:p></span></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="color:#1F497D"><img width="128" height="7" id="Picture_x0020_1" src="" alt="Description: blue_strip"></span><span lang="FR" style="color:#1F497D"><br>
</span><b><span lang="FR" style="font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;color:black">Antoine Neveux<br>
</span></b><span lang="FR" style="font-size:8.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;color:black"><a href="mailto:antoine.neveux@xxxxxxxx">antoine.neveux@xxxxxxxx</a></span><b><span lang="FR" style="font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;color:black">
<br>
</span></b><span lang="FR" style="font-size:8.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;color:black">&#43;33&nbsp;320&nbsp;608 487</span><span lang="FR" style="font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;;color:black"><o:p></o:p></span></p>
<p class="MsoNormal"><span lang="FR" style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"><o:p>&nbsp;</o:p></span></p>
<p class="MsoNormal"><b><span style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;">From:</span></b><span style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;"> ajdt-dev-bounces@xxxxxxxxxxx [mailto:ajdt-dev-bounces@xxxxxxxxxxx]
<b>On Behalf Of </b>Andrew Eisenberg<br>
<b>Sent:</b> 04 July 2012 16:16<br>
<b>To:</b> ajdt-dev@xxxxxxxxxxx<br>
<b>Subject:</b> Re: [ajdt-dev] AJDT 2.2.0 and Eclipse Juno compliancy ?<o:p></o:p></span></p>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<p class="MsoNormal" style="margin-bottom:12.0pt">We will be releasing AJDT 2.2.0 om Thursday.&nbsp; We have just a bit of testing to do.&nbsp; Until then, you can grab the bits from here:<br>
<br>
<a href="http://download.eclipse.org/tools/ajdt/42/dev/update/">http://download.eclipse.org/tools/ajdt/42/dev/update/</a><br>
<br>
It's likely that the plugins on this update site will be the same that get released.<o:p></o:p></p>
<div>
<p class="MsoNormal">On Wed, Jul 4, 2012 at 3:12 AM, Neveux Antoine &lt;<a href="mailto:antoine.neveux@xxxxxxxx" target="_blank">antoine.neveux@xxxxxxxx</a>&gt; wrote:<o:p></o:p></p>
<div>
<div>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">Hi everybody,<o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">&nbsp;<o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">I read on different pages related to AJDT (<a href="http://www.eclipse.org/projects/project.php?id=tools.ajdt" target="_blank">http://www.eclipse.org/projects/project.php?id=tools.ajdt</a>
 and <a href="http://www.eclipse.org/projects/project-plan.php?projectid=tools.ajdt" target="_blank">
http://www.eclipse.org/projects/project-plan.php?projectid=tools.ajdt</a>) that a 2.2.0 release of AJDT is planned, in order to provide a new version compliant with Eclipse Juno. Sadly, I can&#8217;t find any information about a release date. As I&#8217;m working on a
 project which depends on AJDT, I&#8217;d like to find this information in order to plan a new release with Eclipse Juno compliancy.<o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">&nbsp;<o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">Thanks a lot for your attention and your information about this ;)<o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><br>
<b><span style="font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;">Antoine Neveux</span></b><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">&nbsp;<o:p></o:p></p>
</div>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<div class="MsoNormal" align="center" style="text-align:center">
<hr size="2" width="100%" align="center">
</div>
<p class="MsoNormal"><span style="font-size:7.5pt;font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:gray"><br>
Ce message et les pi&#xE8;ces jointes sont confidentiels et r&#xE9;serv&#xE9;s &#xE0; l'usage exclusif de ses destinataires. Il peut &#xE9;galement &#xEA;tre prot&#xE9;g&#xE9; par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir imm&#xE9;diatement l'exp&#xE9;diteur et de le
 d&#xE9;truire. L'int&#xE9;grit&#xE9; du message ne pouvant &#xEA;tre assur&#xE9;e sur Internet, la responsabilit&#xE9; d'Atos ne pourra &#xEA;tre recherch&#xE9;e quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'exp&#xE9;diteur
 ne donne aucune garantie &#xE0; cet &#xE9;gard et sa responsabilit&#xE9; ne saurait &#xEA;tre recherch&#xE9;e pour tout dommage r&#xE9;sultant d'un virus transmis.<br>
<br>
This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet,
 the Atos liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from
 any virus transmitted.</span><o:p></o:p></p>
</div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><br>
_______________________________________________<br>
ajdt-dev mailing list<br>
<a href="mailto:ajdt-dev@xxxxxxxxxxx">ajdt-dev@xxxxxxxxxxx</a><br>
<a href="https://dev.eclipse.org/mailman/listinfo/ajdt-dev" target="_blank">https://dev.eclipse.org/mailman/listinfo/ajdt-dev</a><o:p></o:p></p>
</div>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
</div>
<br>
<hr>
<font face="Arial" color="Gray" size="1"><br>
Ce message et les pi&#xE8;ces jointes sont confidentiels et r&#xE9;serv&#xE9;s &#xE0; l'usage exclusif de ses destinataires. Il peut &#xE9;galement &#xEA;tre prot&#xE9;g&#xE9; par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir imm&#xE9;diatement l'exp&#xE9;diteur et de le
 d&#xE9;truire. L'int&#xE9;grit&#xE9; du message ne pouvant &#xEA;tre assur&#xE9;e sur Internet, la responsabilit&#xE9; d'Atos ne pourra &#xEA;tre recherch&#xE9;e quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'exp&#xE9;diteur
 ne donne aucune garantie &#xE0; cet &#xE9;gard et sa responsabilit&#xE9; ne saurait &#xEA;tre recherch&#xE9;e pour tout dommage r&#xE9;sultant d'un virus transmis.<br>
<br>
This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet,
 the Atos liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from
 any virus transmitted.<br>
</font>


</td></tr></table><p><a href="gifOtieOyNcCg.gif" ><img src="gifOtieOyNcCg.gif" alt="GIF image"></a></p>
]]></content:encoded>
		<pubDate>Thu, 05 Jul 2012 14:50:04 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01632.html</guid>
		<author>antoine.neveux@xxxxxxx (Neveux Antoine)</author>
	</item>
	<item>
		<title>[ajdt-dev] Project meta data is out of date for tools.ajdt</title>
		<link>http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01631.html</link>
		<description>Andrew, Projects are required to keep meta data up to date using the MyFoundation Portal (http://portal.eclipse.org/). The following problems were found with this project's meta-data: * The date for release &amp;quot;2.2.0&amp;quot; is in the past, but the release is not ma...</description>
		<content:encoded><![CDATA[<pre>Andrew,
Projects are required to keep meta data up to date using the MyFoundation
Portal (<a  href="http://portal.eclipse.org/">http://portal.eclipse.org/</a>).  The following problems were found
with this project's meta-data:

* The date for release &quot;2.2.0&quot; is in the past, but the release is not
marked as completed. If it is completed, it should be marked as completed;
if it has been postponed, it should be given a new target date.
* There is no next/future release of this project. All Eclipse projects
must have a &quot;next release&quot; planned and scheduled.


</pre>]]></content:encoded>
		<pubDate>Thu, 05 Jul 2012 04:00:19 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01631.html</guid>
		<author>emo@xxxxxxx (portal on behalf of emo)</author>
	</item>


	<item>
		<title>Re: [ajdt-dev] AJDT 2.2.0 and Eclipse Juno compliancy ?</title>
		<link>http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01630.html</link>
		<description> </description>
		<content:encoded><![CDATA[We will be releasing AJDT 2.2.0 om Thursday.&#xA0; We have just a bit of testing to do.&#xA0; Until then, you can grab the bits from here:<br><br><a href="http://download.eclipse.org/tools/ajdt/42/dev/update/">http://download.eclipse.org/tools/ajdt/42/dev/update/</a><br>
<br>It&#39;s likely that the plugins on this update site will be the same that get released.<br><br><div class="gmail_quote">On Wed, Jul 4, 2012 at 3:12 AM, Neveux Antoine <span dir="ltr">&lt;<a href="mailto:antoine.neveux@xxxxxxxx" target="_blank">antoine.neveux@xxxxxxxx</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">




<div link="blue" vlink="purple" lang="EN-US">
<div>
<p class="MsoNormal">Hi everybody,<u></u><u></u></p>
<p class="MsoNormal"><u></u>&#xA0;<u></u></p>
<p class="MsoNormal">I read on different pages related to AJDT (<a href="http://www.eclipse.org/projects/project.php?id=tools.ajdt" target="_blank">http://www.eclipse.org/projects/project.php?id=tools.ajdt</a> and
<a href="http://www.eclipse.org/projects/project-plan.php?projectid=tools.ajdt" target="_blank">http://www.eclipse.org/projects/project-plan.php?projectid=tools.ajdt</a>) that a 2.2.0 release of AJDT is planned, in order to provide a new version compliant with Eclipse Juno.
 Sadly, I can&#x2019;t find any information about a release date. As I&#x2019;m working on a project which depends on AJDT, I&#x2019;d like to find this information in order to plan a new release with Eclipse Juno compliancy.<u></u><u></u></p>

<p class="MsoNormal"><u></u>&#xA0;<u></u></p>
<p class="MsoNormal">Thanks a lot for your attention and your information about this ;)<u></u><u></u></p>
<p class="MsoNormal"><span style="font-size:12.0pt;font-family:&quot;Times New Roman&quot;,&quot;serif&quot;"><img src="" alt="Description: blue_strip" height="7" border="0" width="128"><br>
</span><b><span style="font-size:9.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;">Antoine Neveux</span></b><span style="font-size:8.0pt;font-family:&quot;Verdana&quot;,&quot;sans-serif&quot;"><u></u><u></u></span></p>

<p class="MsoNormal"><u></u>&#xA0;<u></u></p>
</div>
<br>
<hr>
<font color="Gray" face="Arial" size="1"><br>
Ce message et les pi&#xE8;ces jointes sont confidentiels et r&#xE9;serv&#xE9;s &#xE0; l&#39;usage exclusif de ses destinataires. Il peut &#xE9;galement &#xEA;tre prot&#xE9;g&#xE9; par le secret professionnel. Si vous recevez ce message par erreur, merci d&#39;en avertir imm&#xE9;diatement l&#39;exp&#xE9;diteur et de le
 d&#xE9;truire. L&#39;int&#xE9;grit&#xE9; du message ne pouvant &#xEA;tre assur&#xE9;e sur Internet, la responsabilit&#xE9; d&#39;Atos ne pourra &#xEA;tre recherch&#xE9;e quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l&#39;exp&#xE9;diteur
 ne donne aucune garantie &#xE0; cet &#xE9;gard et sa responsabilit&#xE9; ne saurait &#xEA;tre recherch&#xE9;e pour tout dommage r&#xE9;sultant d&#39;un virus transmis.<br>
<br>
This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet,
 the Atos liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from
 any virus transmitted.<br>
</font>
</div>

<br>_______________________________________________<br>
ajdt-dev mailing list<br>
<a href="mailto:ajdt-dev@xxxxxxxxxxx">ajdt-dev@xxxxxxxxxxx</a><br>
<a href="https://dev.eclipse.org/mailman/listinfo/ajdt-dev" target="_blank">https://dev.eclipse.org/mailman/listinfo/ajdt-dev</a><br>
<br></blockquote></div><br>
]]></content:encoded>
		<pubDate>Wed, 04 Jul 2012 14:15:43 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/ajdt-dev/msg01630.html</guid>
		<author>andrew@xxxxxxx (Andrew Eisenberg)</author>
	</item>

 
	</channel>
	</rss>
<!-- MHonArc v2.6.10 -->
