Editing Subclipse.unkrig.de

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
<meta name="keywords" content="java, eclipse, subclipse, subversion, svn, plug-in, plugin"></meta>
= Introduction =
<meta name="description" content="An ECLIPSE plug-in that adds an ANT task that uses the SVN client that is provided by the SUBCLIPSE plug-in"></meta>
== Introduction ==


This ECLIPSE plug-in adds an additional ANT task 'de.unkrig.subclipse.svn' which is available in ANT builds which have the option 'Run in the same JRE as the workspace' set.
This ECLIPSE plug-in adds an additional ANT task 'de.unkrig.subclipse.svn' which is available in ANT builds which have the option 'Run in the same JRE as the workspace' set.
Line 7: Line 5:
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.
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 ==
= Download and Installation =


Within ECLIPSE, download and install the feature from the update site
Within ECLIPSE, download and install the feature from the update site
Line 13: Line 11:
  http://subclipse.unkrig.de/update
  http://subclipse.unkrig.de/update


The change log is available [http://subclipse.unkrig.de/changelog.txt here].
= ANT task description =


== Task Documentation ==
== ANT task <de.unkrig.subclipse.svn> ==


: [http://subclipse.unkrig.de/antdoc/tasks/de.unkrig.subclipse.svn.html <code><de.unkrig.subclipse.svn></code>]
Executes a series of SVN commands


== Examples ==
=== Subelements ===


Tagging projects in SVN:
==== <addDirectory> ====
(Not yet implemented.)


&lt;!-- Verify that ANT is running in the same JVM as ECLIPSE. -->
==== <addFile> ====
<fail
(Not yet implemented.)
    unless="eclipse.running"
    message="Please activate the ECLIPSE external tool configuration option 'Run in the same JRE as the workspace' and re-run."
/>
&lt;!-- Verify that the 'de.unkrig.subclipse' plugin is available. -->
<fail message="Please install the 'de.unkrig.subclipse' ECLIPSE feature and re-run.">
    <condition><not><typefound name="de.unkrig.subclipse.svn" /></not></condition>
</fail>
<property name="d" value="http://svn.acme.com/svn/MyRepo/tags/${tag}"/>
<de.unkrig.subclipse.svn>
    <mkdir                          url="${d}"/>
    <copy srcpath="."          desturl="${d}"/>
    <copy srcpath="../project2" desturl="${d}"/>
</de.unkrig.subclipse.svn>


If you like loading ANT tasks in separate XML namespaces, you can alternatively write:
==== <addKeywords> ====
(Not yet implemented.)


<''some-enclosing-tag-e-g-project-or-target'' <font color="red">xmlns:unkrig="antlib:de.unkrig.subclipse"</font>>
==== <annotate> ====
    ...
(Not yet implemented.)
    <!-- Verify that ANT is running in the same JVM as ECLIPSE. -->
    <fail
        unless="eclipse.running"
        message="Please activate the ECLIPSE external tool configuration option 'Run in the same JRE as the workspace' and re-run."
    />
    <!-- Verify that the 'de.unkrig.subclipse' plugin is available. -->
    <fail message="Please install the 'de.unkrig.subclipse' ECLIPSE feature and re-run.">
        <condition><not><typefound <font color="red">uri="antlib:de.unkrig.subclipse" name="svn"</font> /></not></condition>
    </fail>
    <<font color="red">unkrig:svn</font>>...


, where "<code>unkrig</code>" is the (arbitrary) XML namespace prefix.
==== <checkout> ====
(Not yet implemented.)


== License ==
==== <commit> ====
(Not yet implemented.)


SUBCLIPSE.UNKRIG.DE is published under the "[[New BSD License]]".
==== <copy> ====
'''Attributes:'''
;srcUrl
;destUrl
;srcPath
;destPath
;message
;revision
;pegRevision
;copyAsChild
;makeParents
 
'''Subelements:'''
;Resource collection : <fileset> or <dirset>
 
==== <createPatch> ====
(Not yet implemented.)
 
==== <createRepository> ====
(Not yet implemented.)
 
==== <diff> ====
(Not yet implemented.)
 
==== <diffSummarize> ====
(Not yet implemented.)
 
==== <getProperties> ====
(Not yet implemented.)
 
==== <getRevProperties> ====
(Not yet implemented.)
 
==== <lock> ====
(Not yet implemented.)
 
==== <merge> ====
(Not yet implemented.)
 
==== <mkdir> ====
'''Attributes:'''
;url
;message
 
==== <move> ====
(Not yet implemented.)
 
==== <relocate> ====
(Not yet implemented.)
 
==== <remove> ====
(Not yet implemented.)
 
==== <revert> ====
(Not yet implemented.)
 
==== <unlock> ====
(Not yet implemented.)


== Source Code ==
==== <update> ====
(Not yet implemented.)


Source code is available via SVN on
= License =


:https://svn.code.sf.net/p/loggifier/code
SUBCLIPSE.UNKRIG.DE is published under the "[[New BSD License]]".


. From that repository, check out the projects
= Source Code =
*de.unkrig.checkstyle-configuration
*de.unkrig.commons.nullanalysis
*de.unkrig.subclipse_dist
*de.unkrig.subclipse.ant.tasks
*de.unkrig.subclipse.branding
*de.unkrig.subclipse.core
*org.apache.ant-1.8.4
, or, if you are using ECLIPSE, just import https://svn.code.sf.net/p/loggifier/code/trunk/de.unkrig.subclipse_dist/projectSet.psf.


== Contact ==
Source code is available via SVN on


For bugs, improvements, complaints, or any other kind of feedback, send email to [mailto:arno@subclipse.unkrig.de arno@subclipse.unkrig.de].
:https://svn.code.sf.net/p/cvstools/code
Please note that all contributions to unkrig.de may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Unkrig.de:Copyrights for details). Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)