My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Last 30 days

  • Dec 03, 2009
    issue 17 (the task name is not unique ) reported by rosenberg.leon   -   Hi, I know you won't love to here it, but there is already an svn task defined by the svnant project. I loved the simplicity of your task and included it in our (opensource) build system, but had name conflicts with the svnant task we are using for checking-out and commiting the ivy-repository. I've patched the downloaded version to listen to svntask instead of svn, but maybe you should consider renaming the task in your trunk, since svnant was first to name a task svn (to my knowledge). Anyway, thanx for great job.
    Hi, I know you won't love to here it, but there is already an svn task defined by the svnant project. I loved the simplicity of your task and included it in our (opensource) build system, but had name conflicts with the svnant task we are using for checking-out and commiting the ivy-repository. I've patched the downloaded version to listen to svntask instead of svn, but maybe you should consider renaming the task in your trunk, since svnant was first to name a task svn (to my knowledge). Anyway, thanx for great job.

Earlier this year

  • Aug 24, 2009
    issue 16 (How to Install ?) Status changed by latchkey   -   the issue tracker isn't a forum for discussions.
    Status: Invalid
    the issue tracker isn't a forum for discussions.
    Status: Invalid
  • Aug 24, 2009
    issue 16 (How to Install ?) reported by john.telford.com   -   How do I install svntask? Thanks ...John@johntelford.com
    How do I install svntask? Thanks ...John@johntelford.com
  • Jul 30, 2009
    issue 15 (Patch for svn info) Status changed by latchkey   -   Thank you for the patch. I'm actually (slowly) working on a new version of svntask that allows for handling repository paths of all types (local, svn://, http:// and across all of the various commands so I'm going to close this as a wont fix for now. Feel free to maintain your own solution until I get a chance to finish up my code.
    Status: WontFix
    Thank you for the patch. I'm actually (slowly) working on a new version of svntask that allows for handling repository paths of all types (local, svn://, http:// and across all of the various commands so I'm going to close this as a wont fix for now. Feel free to maintain your own solution until I get a chance to finish up my code.
    Status: WontFix
  • Jul 28, 2009
    issue 15 (Patch for svn info) commented on by armin.bruckhoff   -   Hi again, forgot to add a small usage sample :-) <svn> <info remoteRepoURL="http://svntask.googlecode.com/svn/trunk" revisionProperty="revisionVersion" committedRevisionProperty="lastChangedRevision" /> </svn> <echo message="Last change: ${lastChangedRevision}"/>
    Hi again, forgot to add a small usage sample :-) <svn> <info remoteRepoURL="http://svntask.googlecode.com/svn/trunk" revisionProperty="revisionVersion" committedRevisionProperty="lastChangedRevision" /> </svn> <echo message="Last change: ${lastChangedRevision}"/>
  • Jul 28, 2009
    issue 15 (Patch for svn info) reported by armin.bruckhoff   -   Hi Jon, The attached patch adds a new parameter remoteRepoURL to implement the svn info command with a URL as parameter. Thus the ant-script does not need to be run in a working-copy. Best regards Armin
    Hi Jon, The attached patch adds a new parameter remoteRepoURL to implement the svn info command with a URL as parameter. Thus the ant-script does not need to be run in a working-copy. Best regards Armin
  • Jul 10, 2009
    issue 14 (improve documentation) commented on by hendrikwill   -   I put up some ant examples using svntask on my recently launched blog http://imwill.com/svntask-examples-for-apache-ant/
    I put up some ant examples using svntask on my recently launched blog http://imwill.com/svntask-examples-for-apache-ant/
  • Jul 10, 2009
    issue 13 (User authentication needs to be added to the core system) commented on by hendrikwill   -   I put up some ant examples using svntask on my recently launched blog http://imwill.com/svntask-examples-for-apache-ant/
    I put up some ant examples using svntask on my recently launched blog http://imwill.com/svntask-examples-for-apache-ant/
  • Jul 10, 2009
    issue 14 (improve documentation) reported by latchkey   -   Each task should be documented in the wiki with a usage example and a list of each of the available properties.
    Each task should be documented in the wiki with a usage example and a list of each of the available properties.
  • Jul 10, 2009
    issue 13 (User authentication needs to be added to the core system) Summary changed by latchkey   -  
    Summary: User authentication needs to be added to the core system
    Summary: User authentication needs to be added to the core system
  • Jul 10, 2009
    issue 13 (Documentation Examples) Status changed by latchkey   -  
    Status: Accepted
    Status: Accepted
  • Jul 10, 2009
    issue 13 (Documentation Examples) commented on by hendrikwill   -   If anyone has the same problems with commiting like me here is the .jar until your next update.
    If anyone has the same problems with commiting like me here is the .jar until your next update.
  • Jul 10, 2009
    issue 13 (Documentation Examples) commented on by latchkey   -   Thanks for doing the test and glad it works for you now. I'll see about making username/password a more generic set of attributes depending on how many of the commands will require it.
    Thanks for doing the test and glad it works for you now. I'll see about making username/password a more generic set of attributes depending on how many of the commands will require it.
  • Jul 10, 2009
    issue 13 (Documentation Examples) commented on by hendrikwill   -   Yep, it seems to be a bug. I added the auth manager to Commit.java(attachment). Now it works for me. ant code: <svn> <commit path="/projectdir/test.txt" commitMessage="Testing" force="true" username="user" password="pass" /> </svn>
    Yep, it seems to be a bug. I added the auth manager to Commit.java(attachment). Now it works for me. ant code: <svn> <commit path="/projectdir/test.txt" commitMessage="Testing" force="true" username="user" password="pass" /> </svn>
  • Jul 09, 2009
    issue 13 (Documentation Examples) commented on by latchkey   -   I think you may have found a bug. Try coping the username/password/auth lines out of Ls.java and into Commit.java and letting me know if it works.
    I think you may have found a bug. Try coping the username/password/auth lines out of Ls.java and into Commit.java and letting me know if it works.
  • Jul 09, 2009
    issue 13 (Documentation Examples) commented on by hendrikwill   -   Thanks for your quick reply. I searched through alle the .java source files and found out what parameters I can use for the commands. I think a raw list of parameters and a short summary of the commands would help some people to get started with svntask. When I try to commit some file I get an error. Update and and info works pretty good. ant code: <svn> <ls repository="http://192.168.0.254 path="/svn/dir/project" username="user" password="pass" /> <commit path="/projectdir/test.txt" commitMessage="Testing" /> </svn> error msg: svn: Authentication required for '<...> Write access requires a password
    Thanks for your quick reply. I searched through alle the .java source files and found out what parameters I can use for the commands. I think a raw list of parameters and a short summary of the commands would help some people to get started with svntask. When I try to commit some file I get an error. Update and and info works pretty good. ant code: <svn> <ls repository="http://192.168.0.254 path="/svn/dir/project" username="user" password="pass" /> <commit path="/projectdir/test.txt" commitMessage="Testing" /> </svn> error msg: svn: Authentication required for '<...> Write access requires a password
  • Jul 09, 2009
    issue 13 (Documentation Examples) commented on by latchkey   -   Yes, more documentation is always nice. I'll try to see what I can come up with. You say you tried something, but you don't give any indication if there was a failure or not or even what it was.
    Yes, more documentation is always nice. I'll try to see what I can come up with. You say you tried something, but you don't give any indication if there was a failure or not or even what it was.
  • Jul 09, 2009
    issue 13 (Documentation Examples) reported by hendrikwill   -   Hi, it would be great if you could give some more examples how to use svntask. I'm still trying to figure out how it works. This is what I tried: <svn> <ls repository="http://192.168.0.254 path="/svn/dir/project1" username="name" password="pass" /> </svn> Thanks in advance. Hendrik
    Hi, it would be great if you could give some more examples how to use svntask. I'm still trying to figure out how it works. This is what I tried: <svn> <ls repository="http://192.168.0.254 path="/svn/dir/project1" username="name" password="pass" /> </svn> Thanks in advance. Hendrik
  • Jun 27, 2009
    Foo Wiki page deleted by latchkey
  • Jun 27, 2009
    Foo (One-sentence summary of this page.) Wiki page added by latchkey
  • Jun 25, 2009
    svntask-1.0.7.zip (Release 1.0.7) file uploaded by latchkey   -  
    Labels: Featured
    Labels: Featured
  • Jun 25, 2009
    r25 (set the source/target for javac to be 1.5 ) committed by latchkey   -   set the source/target for javac to be 1.5
    set the source/target for javac to be 1.5
  • Jun 25, 2009
    issue 11 (version 1.0.5 throwing an exception) Status changed by latchkey   -  
    Status: Fixed
    Status: Fixed
  • Jun 25, 2009
    issue 11 (version 1.0.5 throwing an exception) commented on by latchkey   -   I just uploaded 1.0.6. let me know if it works for you. thanks.
    I just uploaded 1.0.6. let me know if it works for you. thanks.
  • Jun 25, 2009
    svntask-1.0.6.zip (Release 1.0.6) file uploaded by latchkey   -  
    Labels: Featured
    Labels: Featured
  • Jun 25, 2009
    issue 12 (log task patch) Status changed by latchkey   -  
    Status: Fixed
    Status: Fixed
  • Jun 25, 2009
    r24 (http://code.google.com/p/svntask/issues/detail?id=12 adds t...) committed by latchkey   -   http://code.google.com/p/svntask/issues/detail?id=12 adds the log command and sets a property for the update command.
    http://code.google.com/p/svntask/issues/detail?id=12 adds the log command and sets a property for the update command.
  • Jun 25, 2009
    issue 12 (log task patch) reported by voidstar   -   attaching patch for adding svn log capability to svntask.
    attaching patch for adding svn log capability to svntask.
  • Jun 22, 2009
    issue 11 (version 1.0.5 throwing an exception) commented on by r...@rf-consulting.com   -   Enjoy your vacation. 1.0.4 is working - so far. I'll do some more testing and see what I can find out.
    Enjoy your vacation. 1.0.4 is working - so far. I'll do some more testing and see what I can find out.
  • Jun 22, 2009
    issue 11 (version 1.0.5 throwing an exception) Status changed by latchkey   -   someone else reported something like this. i'm on vacation right now, so i can't do this for you. so, do me a favor and try downloading a new copy of svnkit.jar from http://svnkit.com. then try with that version and let me know if that helps. also, which version of the jvm are you using? try with jdk 1.6 as well.
    Status: Accepted
    someone else reported something like this. i'm on vacation right now, so i can't do this for you. so, do me a favor and try downloading a new copy of svnkit.jar from http://svnkit.com. then try with that version and let me know if that helps. also, which version of the jvm are you using? try with jdk 1.6 as well.
    Status: Accepted
  • Jun 22, 2009
    issue 11 (version 1.0.5 throwing an exception) reported by r...@rf-consulting.com   -   What steps will reproduce the problem? 1. downloaded 1.0.5 and put the svnkit.jar and svntask.jar in tools directory of my project. 2. copied the example target into my build.xml file 3. ant version - failed -- see below 4. downloaded 1.0.4 and put the svnkit.jar and svntask.jar in tools directory of my project. 5. ant version then worked as expected. What is the expected output? ant version Buildfile: build.xml version: [svn] info /home/rick.feldmann/dev/buildmaster [echo] revisionVersion 29555 BUILD SUCCESSFUL Total time: 0 seconds What do you see instead? ant version Buildfile: build.xml version: BUILD FAILED /home/rick.feldmann/dev/buildmaster/build.xml:370: java.lang.UnsupportedClassVersionError: Bad version number in .class file Total time: 0 seconds What version of the product are you using? 1.0.5 failed - 1.0.4 successful On what operating system? fedora core 9, ant 1.7.0 Please provide any additional information below. <target name="version"> <taskdef resource="com/googlecode/svntask/svntask.xml" > <classpath> <fileset dir="tools"> <include name="svnkit.jar" /> <include name="svntask.jar" /> </fileset> </classpath> </taskdef> <svn> <info path="." revisionProperty="revisionVersion" /> </svn> <echo message="revisionVersion ${revisionVersion}" /> </target>
    What steps will reproduce the problem? 1. downloaded 1.0.5 and put the svnkit.jar and svntask.jar in tools directory of my project. 2. copied the example target into my build.xml file 3. ant version - failed -- see below 4. downloaded 1.0.4 and put the svnkit.jar and svntask.jar in tools directory of my project. 5. ant version then worked as expected. What is the expected output? ant version Buildfile: build.xml version: [svn] info /home/rick.feldmann/dev/buildmaster [echo] revisionVersion 29555 BUILD SUCCESSFUL Total time: 0 seconds What do you see instead? ant version Buildfile: build.xml version: BUILD FAILED /home/rick.feldmann/dev/buildmaster/build.xml:370: java.lang.UnsupportedClassVersionError: Bad version number in .class file Total time: 0 seconds What version of the product are you using? 1.0.5 failed - 1.0.4 successful On what operating system? fedora core 9, ant 1.7.0 Please provide any additional information below. <target name="version"> <taskdef resource="com/googlecode/svntask/svntask.xml" > <classpath> <fileset dir="tools"> <include name="svnkit.jar" /> <include name="svntask.jar" /> </fileset> </classpath> </taskdef> <svn> <info path="." revisionProperty="revisionVersion" /> </svn> <echo message="revisionVersion ${revisionVersion}" /> </target>
  • Jun 10, 2009
    issue 10 (svntask doesn't detect subversion managed files) commented on by mizehrer   -   Yes I have a .svn directory. Maybe it fails because this is a hidden directory?
    Yes I have a .svn directory. Maybe it fails because this is a hidden directory?
  • Jun 10, 2009
    issue 10 (svntask doesn't detect subversion managed files) Status changed by latchkey   -   Do you have .svn directories in your checkout? [2][ ~/checkout ]% cd svntask/ [3][ ~/checkout/svntask ]% dir total 32 0 drwxr-xr-x 12 jon staff 408 2009-05-30 18:40 ./ 0 drwxr-xr-x 63 jon staff 2142 2009-06-01 09:52 ../ 4 -rw-r--r-- 1 jon staff 332 2008-07-25 09:29 .classpath 4 -rw-r--r-- 1 jon staff 366 2008-07-25 09:29 .project 0 drwxr-xr-x 9 jon staff 306 2009-05-30 17:25 .svn/ 12 -rw-r--r-- 1 jon staff 11447 2008-07-25 09:30 LICENSE.txt 4 -rw-r--r-- 1 jon staff 234 2008-07-25 09:30 README.html 0 drwxr-xr-x 4 jon staff 136 2009-05-30 18:51 _eclipse/ 8 -rw-r--r-- 1 jon staff 4318 2008-07-25 09:30 build.xml 0 drwxr-xr-x 5 jon staff 170 2008-07-25 09:30 lib/ 0 drwxr-xr-x 5 jon staff 170 2008-07-25 09:30 src/ 0 drwxr-xr-x 7 jon staff 238 2009-05-30 18:40 target/ [4][ ~/checkout/svntask ]% ant Buildfile: build.xml init: javac: version: [svn] info /Users/jon/checkout/svntask jar: [jar] Building jar: /Users/jon/checkout/svntask/target/svntask.jar compile: BUILD SUCCESSFUL Total time: 1 second [5][ ~/checkout/svntask ]% svn st [6][ ~/checkout/svntask ]% svn info Path: . URL: https://svntask.googlecode.com/svn/trunk Repository Root: https://svntask.googlecode.com/svn Repository UUID: 255fcad6-9b50-0410-be32-d102e391a637 Revision: 15 Node Kind: directory Schedule: normal Last Changed Author: latchkey Last Changed Rev: 15 Last Changed Date: 2009-05-30 17:04:57 -0700 (Sat, 30 May 2009)
    Status: Invalid
    Do you have .svn directories in your checkout? [2][ ~/checkout ]% cd svntask/ [3][ ~/checkout/svntask ]% dir total 32 0 drwxr-xr-x 12 jon staff 408 2009-05-30 18:40 ./ 0 drwxr-xr-x 63 jon staff 2142 2009-06-01 09:52 ../ 4 -rw-r--r-- 1 jon staff 332 2008-07-25 09:29 .classpath 4 -rw-r--r-- 1 jon staff 366 2008-07-25 09:29 .project 0 drwxr-xr-x 9 jon staff 306 2009-05-30 17:25 .svn/ 12 -rw-r--r-- 1 jon staff 11447 2008-07-25 09:30 LICENSE.txt 4 -rw-r--r-- 1 jon staff 234 2008-07-25 09:30 README.html 0 drwxr-xr-x 4 jon staff 136 2009-05-30 18:51 _eclipse/ 8 -rw-r--r-- 1 jon staff 4318 2008-07-25 09:30 build.xml 0 drwxr-xr-x 5 jon staff 170 2008-07-25 09:30 lib/ 0 drwxr-xr-x 5 jon staff 170 2008-07-25 09:30 src/ 0 drwxr-xr-x 7 jon staff 238 2009-05-30 18:40 target/ [4][ ~/checkout/svntask ]% ant Buildfile: build.xml init: javac: version: [svn] info /Users/jon/checkout/svntask jar: [jar] Building jar: /Users/jon/checkout/svntask/target/svntask.jar compile: BUILD SUCCESSFUL Total time: 1 second [5][ ~/checkout/svntask ]% svn st [6][ ~/checkout/svntask ]% svn info Path: . URL: https://svntask.googlecode.com/svn/trunk Repository Root: https://svntask.googlecode.com/svn Repository UUID: 255fcad6-9b50-0410-be32-d102e391a637 Revision: 15 Node Kind: directory Schedule: normal Last Changed Author: latchkey Last Changed Rev: 15 Last Changed Date: 2009-05-30 17:04:57 -0700 (Sat, 30 May 2009)
    Status: Invalid
  • Jun 10, 2009
    issue 10 (svntask doesn't detect subversion managed files) reported by mizehrer   -   What steps will reproduce the problem? 1. Checkout svntask from google code 2. Run ant in the project 3. Look at the output: Buildfile: build.xml init: javac: version: [svn] info F:\Projekte\svntask [svn] svn: 'F:\Projekte\svntask\.' is not under version control jar: [jar] Building jar: F:\Projekte\svntask\target\svntask.jar compile:
    What steps will reproduce the problem? 1. Checkout svntask from google code 2. Run ant in the project 3. Look at the output: Buildfile: build.xml init: javac: version: [svn] info F:\Projekte\svntask [svn] svn: 'F:\Projekte\svntask\.' is not under version control jar: [jar] Building jar: F:\Projekte\svntask\target\svntask.jar compile:
  • Jun 03, 2009
    svntask-1.0.5.zip (Release 1.0.5) file uploaded by latchkey   -  
    Labels: Featured
    Labels: Featured
  • Jun 03, 2009
    r23 (added ls patch thanks to scott hernandez.) committed by latchkey   -   added ls patch thanks to scott hernandez.
    added ls patch thanks to scott hernandez.
  • May 30, 2009
    svntask-1.0.4.zip (Release 1.0.4) file uploaded by latchkey   -  
    Labels: Featured
    Labels: Featured
  • May 30, 2009
    r22 (fixed javadoc warnings.) committed by latchkey   -   fixed javadoc warnings.
    fixed javadoc warnings.
  • May 30, 2009
    issue 9 (Patch for add and commit commands) Status changed by latchkey   -   committed with a bit of modifications to support latest svn apis
    Status: Fixed
    committed with a bit of modifications to support latest svn apis
    Status: Fixed
  • May 30, 2009
    r21 (http://code.google.com/p/svntask/issues/detail?id=9 added c...) committed by latchkey   -   http://code.google.com/p/svntask/issues/detail?id=9 added commit and add commands.
  • May 30, 2009
    issue 8 (New Switch Task (with patch)) Status changed by latchkey   -   fixed. thanks!
    Status: Fixed
    fixed. thanks!
    Status: Fixed
  • May 30, 2009
    r20 (add svn switch command. http://code.google.com/p/svntask/is...) committed by latchkey   -   add svn switch command. http://code.google.com/p/svntask/issues/detail?id=8
  • May 30, 2009
    r19 (add setters for configurable properties.) committed by latchkey   -   add setters for configurable properties.
    add setters for configurable properties.
  • May 30, 2009
    issue 7 (Svn info patch for 'committedRevisionProperty') Status changed by latchkey   -   fixed. thanks!
    Status: Fixed
    fixed. thanks!
    Status: Fixed
  • May 30, 2009
    r18 (http://code.google.com/p/svntask/issues/detail?id=7 I added...) committed by latchkey   -   http://code.google.com/p/svntask/issues/detail?id=7 I added the committedRevisionProperty to the 'Info' task with this patch. I know it's available on the 'Status' task, but the 'Status' task is much slower than 'Info'.
    http://code.google.com/p/svntask/issues/detail?id=7 I added the committedRevisionProperty to the 'Info' task with this patch. I know it's available on the 'Status' task, but the 'Status' task is much slower than 'Info'.
  • May 30, 2009
    issue 6 (Patch for Status) Status changed by latchkey   -   patch applied. thanks!
    Status: Fixed
    patch applied. thanks!
    Status: Fixed
  • May 30, 2009
    r17 (http://code.google.com/p/svntask/issues/detail?id=6 Here is...) committed by latchkey   -   http://code.google.com/p/svntask/issues/detail?id=6 Here is a patch that completes most of the missing work for the 'status' task. I have fixed all the missing setters in Status.java and added the "addStatus" method to SvnTask.java.
    http://code.google.com/p/svntask/issues/detail?id=6 Here is a patch that completes most of the missing work for the 'status' task. I have fixed all the missing setters in Status.java and added the "addStatus" method to SvnTask.java.
  • May 30, 2009
    r16 (1.3.0.5847 version of svnkit the update command was using a...) committed by latchkey   -   1.3.0.5847 version of svnkit the update command was using a now deprecated version of the method.
    1.3.0.5847 version of svnkit the update command was using a now deprecated version of the method.
  • May 30, 2009
    issue 5 (svn cat patch) Status changed by latchkey   -   Joe, I'm finally getting around to this patch and I've realized you don't need these within this project. http://ant.apache.org/manual/CoreTasks/loadfile.html (replaces <cat>) The other one also isn't really svn specific. I'm sorry, but I've got to close this as wontfix.
    Status: WontFix
    Joe, I'm finally getting around to this patch and I've realized you don't need these within this project. http://ant.apache.org/manual/CoreTasks/loadfile.html (replaces <cat>) The other one also isn't really svn specific. I'm sorry, but I've got to close this as wontfix.
    Status: WontFix
  • May 30, 2009
    r15 (ignore _eclipse folder ) committed by latchkey   -   ignore _eclipse folder
    ignore _eclipse folder
 
Hosted by Google Code