Tagged Questions
0
votes
2answers
61 views
What is the best way to share the new version of Java source code between a group of programmers?
I started to work with a group of five new programmers on a large project. I'm looking for the best way to share the source code between all the members. Each person is modifying different parts but ...
0
votes
1answer
39 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 ...
-1
votes
2answers
60 views
How to insert revision number of Java code file in to Java class file [closed]
Java code file contains @author and @version tags. version tag has information about the revision number of file. This information resides in comments.
Is there any compilation flag or other ...
0
votes
0answers
35 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 ...
0
votes
2answers
37 views
Is it possible to synchronize edits made on a local word doc editor to its central repository document(db document) on saving the doc locally?
I need to implement a java application on MSWord Document management(or for any Text Doc Editor) and in that the word documents will be stored in a central repository like database or in server.Many ...
0
votes
0answers
43 views
How to checkout an older version in Jackrabbit / Jcr 2.0 programmatically?
I have checked in some files in my file system to crx repository programmatically (by using VersionManager). I have created some versions, let's say 1.0, 1.1 and 1.2. Let's say I have deleted a file ...
0
votes
0answers
52 views
How to checkout an older version in Jcr 2.0 programmatically?
I have checked in some files in my file system to crx repository programmatically (by using VersionManager). I have created some versions, let's say 1.0, 1.1 and 1.2. Let's say I have deleted a file ...
0
votes
1answer
27 views
have I correctly forked libgnumail?
I've forked some GNU code and intend to build a replacement for libgnumail, just some minor tweaks for my purposes.
However, I just want ensure that I've done nothing illegal, and that I'm following ...
1
vote
1answer
90 views
how to implement version-control client say svn as java web-service?
how can I implement SVN/CVS/Mercurial/Git/TFS client as java web-service? any pointers? basically I am developing a CMS in which i want to support version controlling.
But instead of new VC system, i ...
1
vote
2answers
93 views
use reflection to modify a method and gain access to its local variables
Since I'm not quite sure what's involved with forking gnu.mail.providers I'd like use reflection to interact with this class.
I think the arithmetic in getMessage is incorrect:
...
0
votes
1answer
45 views
how best to compile gnu.mail.providers
I'm interested in forking gnu.mail.providers.nntp.NNTPFolder, with the Javadoc documentation here, but don't quite understand the dependencies. Apparently, these are:
The current stable release ...
0
votes
1answer
61 views
Feasibility of continuous delivery with a mixture of development platforms [closed]
What are the major obstacles (and potential solutions, if known) for implementing "continuous delivery" software development when an application relies on varied programming languages or modules... ...
0
votes
2answers
127 views
Open Source Java Based Source Code Viewer
I am searching for a Java-based, open source diff viewer like
http://www.redmine.org/projects/redmine/repository/annotate/branches/0.7-stable/config/database.yml.example
Could you recommend (if any) ...
2
votes
3answers
144 views
What is the best, free, subversion control repository that can be used with the Eclipse subversion plugin?
For my software engineering class project, my group and I are developing and Android application. We have decided the best way to keep the code managed is via the subversion control plugin for ...
0
votes
2answers
84 views
How to embed version strings in java classes
We'd like to have the version of the java source code, in our case the svn $Id$ string, embedded in the generated class file.
We'd like to be able to determine this information from a static ...