<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://unkrig.de/w/index.php?action=history&amp;feed=atom&amp;title=Subclipse.unkrig.de</id>
	<title>Subclipse.unkrig.de - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://unkrig.de/w/index.php?action=history&amp;feed=atom&amp;title=Subclipse.unkrig.de"/>
	<link rel="alternate" type="text/html" href="https://unkrig.de/w/index.php?title=Subclipse.unkrig.de&amp;action=history"/>
	<updated>2026-05-04T16:57:22Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://unkrig.de/w/index.php?title=Subclipse.unkrig.de&amp;diff=36&amp;oldid=prev</id>
		<title>Aunkrig: Created page with &quot;== Introduction ==  This ECLIPSE plug-in adds an additional ANT task &#039;de.unkrig.subclipse.svn&#039; which is available in ANT builds which have the option &#039;Run in the same JRE as the workspace&#039; set.  The ANT task uses the SVN client that is provided by the SUBCLIPSE plug-in. Thus no configuration is required, because it is re-used from SUBCLIPSE.  == Download and Installation ==  Within ECLIPSE, download and install the feature from the update site   http://subclipse.unkrig.d...&quot;</title>
		<link rel="alternate" type="text/html" href="https://unkrig.de/w/index.php?title=Subclipse.unkrig.de&amp;diff=36&amp;oldid=prev"/>
		<updated>2024-05-01T19:22:42Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;== Introduction ==  This ECLIPSE plug-in adds an additional ANT task &amp;#039;de.unkrig.subclipse.svn&amp;#039; which is available in ANT builds which have the option &amp;#039;Run in the same JRE as the workspace&amp;#039; set.  The ANT task uses the SVN client that is provided by the SUBCLIPSE plug-in. Thus no configuration is required, because it is re-used from SUBCLIPSE.  == Download and Installation ==  Within ECLIPSE, download and install the feature from the update site   http://subclipse.unkrig.d...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
This ECLIPSE plug-in adds an additional ANT task &amp;#039;de.unkrig.subclipse.svn&amp;#039; which is available in ANT builds which have the option &amp;#039;Run in the same JRE as the workspace&amp;#039; set.&lt;br /&gt;
&lt;br /&gt;
The ANT task uses the SVN client that is provided by the SUBCLIPSE plug-in. Thus no configuration is required, because it is re-used from SUBCLIPSE.&lt;br /&gt;
&lt;br /&gt;
== Download and Installation ==&lt;br /&gt;
&lt;br /&gt;
Within ECLIPSE, download and install the feature from the update site&lt;br /&gt;
&lt;br /&gt;
 http://subclipse.unkrig.de/update&lt;br /&gt;
&lt;br /&gt;
The change log is available [http://subclipse.unkrig.de/changelog.txt here].&lt;br /&gt;
&lt;br /&gt;
== Task Documentation ==&lt;br /&gt;
&lt;br /&gt;
: [http://subclipse.unkrig.de/antdoc/tasks/de.unkrig.subclipse.svn.html &amp;lt;code&amp;gt;&amp;lt;de.unkrig.subclipse.svn&amp;gt;&amp;lt;/code&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
Tagging projects in SVN:&lt;br /&gt;
&lt;br /&gt;
 &amp;amp;lt;!-- Verify that ANT is running in the same JVM as ECLIPSE. --&amp;gt;&lt;br /&gt;
 &amp;lt;fail&lt;br /&gt;
     unless=&amp;quot;eclipse.running&amp;quot;&lt;br /&gt;
     message=&amp;quot;Please activate the ECLIPSE external tool configuration option &amp;#039;Run in the same JRE as the workspace&amp;#039; and re-run.&amp;quot;&lt;br /&gt;
 /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 &amp;amp;lt;!-- Verify that the &amp;#039;de.unkrig.subclipse&amp;#039; plugin is available. --&amp;gt;&lt;br /&gt;
 &amp;lt;fail message=&amp;quot;Please install the &amp;#039;de.unkrig.subclipse&amp;#039; ECLIPSE feature and re-run.&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;condition&amp;gt;&amp;lt;not&amp;gt;&amp;lt;typefound name=&amp;quot;de.unkrig.subclipse.svn&amp;quot; /&amp;gt;&amp;lt;/not&amp;gt;&amp;lt;/condition&amp;gt;&lt;br /&gt;
 &amp;lt;/fail&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;property name=&amp;quot;d&amp;quot; value=&amp;quot;http://svn.acme.com/svn/MyRepo/tags/${tag}&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;de.unkrig.subclipse.svn&amp;gt;&lt;br /&gt;
     &amp;lt;mkdir                          url=&amp;quot;${d}&amp;quot;/&amp;gt;&lt;br /&gt;
     &amp;lt;copy srcpath=&amp;quot;.&amp;quot;           desturl=&amp;quot;${d}&amp;quot;/&amp;gt;&lt;br /&gt;
     &amp;lt;copy srcpath=&amp;quot;../project2&amp;quot; desturl=&amp;quot;${d}&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;/de.unkrig.subclipse.svn&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you like loading ANT tasks in separate XML namespaces, you can alternatively write:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;&amp;#039;&amp;#039;some-enclosing-tag-e-g-project-or-target&amp;#039;&amp;#039; &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;xmlns:unkrig=&amp;quot;antlib:de.unkrig.subclipse&amp;quot;&amp;lt;/font&amp;gt;&amp;gt;&lt;br /&gt;
     ...&lt;br /&gt;
     &amp;lt;!-- Verify that ANT is running in the same JVM as ECLIPSE. --&amp;gt;&lt;br /&gt;
     &amp;lt;fail&lt;br /&gt;
         unless=&amp;quot;eclipse.running&amp;quot;&lt;br /&gt;
         message=&amp;quot;Please activate the ECLIPSE external tool configuration option &amp;#039;Run in the same JRE as the workspace&amp;#039; and re-run.&amp;quot;&lt;br /&gt;
     /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
     &amp;lt;!-- Verify that the &amp;#039;de.unkrig.subclipse&amp;#039; plugin is available. --&amp;gt;&lt;br /&gt;
     &amp;lt;fail message=&amp;quot;Please install the &amp;#039;de.unkrig.subclipse&amp;#039; ECLIPSE feature and re-run.&amp;quot;&amp;gt;&lt;br /&gt;
         &amp;lt;condition&amp;gt;&amp;lt;not&amp;gt;&amp;lt;typefound &amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;uri=&amp;quot;antlib:de.unkrig.subclipse&amp;quot; name=&amp;quot;svn&amp;quot;&amp;lt;/font&amp;gt; /&amp;gt;&amp;lt;/not&amp;gt;&amp;lt;/condition&amp;gt;&lt;br /&gt;
     &amp;lt;/fail&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
     &amp;lt;&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt;unkrig:svn&amp;lt;/font&amp;gt;&amp;gt;...&lt;br /&gt;
&lt;br /&gt;
, where &amp;quot;&amp;lt;code&amp;gt;unkrig&amp;lt;/code&amp;gt;&amp;quot; is the (arbitrary) XML namespace prefix.&lt;br /&gt;
&lt;br /&gt;
== License ==&lt;br /&gt;
&lt;br /&gt;
SUBCLIPSE.UNKRIG.DE is published under the &amp;quot;[[New BSD License]]&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Source Code ==&lt;br /&gt;
&lt;br /&gt;
Source code is available via SVN on&lt;br /&gt;
&lt;br /&gt;
:https://svn.code.sf.net/p/loggifier/code&lt;br /&gt;
&lt;br /&gt;
. From that repository, check out the projects&lt;br /&gt;
*de.unkrig.checkstyle-configuration&lt;br /&gt;
*de.unkrig.commons.nullanalysis&lt;br /&gt;
*de.unkrig.subclipse_dist&lt;br /&gt;
*de.unkrig.subclipse.ant.tasks&lt;br /&gt;
*de.unkrig.subclipse.branding&lt;br /&gt;
*de.unkrig.subclipse.core&lt;br /&gt;
*org.apache.ant-1.8.4&lt;br /&gt;
, or, if you are using ECLIPSE, just import https://svn.code.sf.net/p/loggifier/code/trunk/de.unkrig.subclipse_dist/projectSet.psf.&lt;br /&gt;
&lt;br /&gt;
== Contact ==&lt;br /&gt;
&lt;br /&gt;
For bugs, improvements, complaints, or any other kind of feedback, send email to [mailto:arno@subclipse.unkrig.de arno@subclipse.unkrig.de].&lt;/div&gt;</summary>
		<author><name>Aunkrig</name></author>
	</entry>
</feed>