Tagged Questions
0
votes
0answers
15 views
Eclipse SVN projects not finding .class file
I have a java project in eclipse that was imported from SVN with the subclipse plugin. If I attempt to add a class to the project, it won't create the .class file so it says "Error: Could not find or ...
1
vote
1answer
11 views
svnkit, list all files of a svn repository, without checking out the files
svnkit.com is a svn library in java.
For instance, you can get the log of a svn repository as follows:
SVNClientManager.newInstance().getLogClient();
SVNLogClient.doLog(SVNURL url, String[] paths, ...
0
votes
1answer
28 views
Programmatically pulling different versions of a file from an SVN repository?
I would like to be able to pull different versions of a file.
Does subversion support a protocol that allows this ? If not, what documentation could I look into to figure out how to list and retrieve ...
0
votes
1answer
28 views
Error message when opening Eclipse
What does mean this when I open Eclipse?
Failed to load JavaHL Library.
These are the errors that were encountered:
no libsvnjavahl-1 in java.library.path
no svnjavahl-1 in java.library.path
no ...
0
votes
1answer
42 views
Adding SVN arguments in maven-release-plugin
During a mvn release:prepare, maven-release-plugin needs to make some commits (tag and new poms).
I need to be able to add arguments to this SVN command without changing anything but the pom.xml ...
-1
votes
0answers
20 views
SVN Checker for JSP files
I want to perform check for some jsp tags. I am having some rule in JAVA and want it to run at the time of committing jsp files with pre-commit hook.
I donot want to use SVN CHECKER instead i want to ...
0
votes
0answers
30 views
What are these numbers in Jenkins' Recent Changes screen?
In Jenkins, if you navigate to YourProjectName >> Recent Changes you will see a screen that looks like this (I apologize in advance for the crummy screenshot, for privacy reasons I had to blot ...
3
votes
1answer
53 views
Efficient way to find out who added a file in Subversion initially
Is there an efficient way to find out programmatically, who added a file in Subversion initially, other than parsing the history manually? Preferably with the SVNKit Java Library or on the command ...
0
votes
1answer
30 views
SVN symbolic links transparent to Linux and Windows
This is how my SVN looks like now
SVN
+ trunk
+ src
+ pom.xml
and I want to add
+ trunk_alternative_pom
+ src -> SVN/trunk/src
+ pom.xml
so when I update the project (in ...
0
votes
0answers
33 views
Linking to text-only HTML “go to line”
I have a question but I'm pretty sure the answer is no, so I'm open to ideas to solve my problem.
The problem: I have a program with two versions of code, an online live/production version and a ...
-2
votes
0answers
40 views
Deleted files on Eclipse are keep in workspace [closed]
I have an Eclipse project, i am using SVN as the CVS, i have some Files in the SRC folder, which i load and process in one of my java classes. I deleted one of this files from my project, and ...
0
votes
1answer
24 views
SVNError: File already exists: org.tmatesoft.svn.core.SVNException
By code I was importing file to SVN repository like :
SVNCommitClient client = new SVNCommitClient(authManager,null);
client.doImport(file,SVNURL.parseURIEncoded(<SVN Path>),
"Am ...
0
votes
0answers
19 views
Watching/Polling FTP location
Could anyone suggest an open source library in JAVA to monitor FTP location changes? I'm trying to monitor the changes in FTP location and once the changes are detected, changed files are to be copied ...
0
votes
1answer
38 views
File Management Server in JAVA
I have an application(SWT) where i need to manage a file at the server end. By managing i mean 3 things, writing contents to the file, applying read/write lock mechanism to it and displying the same ...
-1
votes
0answers
19 views
What is the right structure for a project to have on Assembla repository
Sorry if this a rather repeated or simple question. I have created my own repository on Assembla. I have managed to upload my project to the trunk as follows.
My problems are:
I cannot make ...