git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [JGIT RFC] Mavenized JGit
@ 2008-06-03 14:42 Imran M Yousuf
  2008-06-03 16:56 ` Robin Rosenberg
  0 siblings, 1 reply; 17+ messages in thread
From: Imran M Yousuf @ 2008-06-03 14:42 UTC (permalink / raw
  To: Git Mailing List; +Cc: Shawn O. Pearce, Robin Rosenberg

Hi,

I have successfully Mavenized JGit (at least partially :)) to make it
independent of IDE to develop on. I will also add a code-file format
checker soon. Please have a look at it and let me know what you think
and how it can be improved. If its helpful I will surely send out a
patch in this regard. The one thing that I did not configure is the
external test (exttst), doing that and the code format checker is my
next step.
The 'jgit-mavenize' branch of my fork of egit contains it.
(http://repo.or.cz/w/egit/imyousuf.git?a=shortlog;h=refs/heads/jgit-mavenize).

Best regards,

-- 
Imran M Yousuf
Entrepreneur & Software Engineer
Smart IT Engineering
Dhaka, Bangladesh
Email: imran@smartitengineering.com
Blog: http://imyousuf-tech.blogs.smartitengineering.com/
Mobile: +880-1711402557

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-03 14:42 [JGIT RFC] Mavenized JGit Imran M Yousuf
@ 2008-06-03 16:56 ` Robin Rosenberg
  2008-06-03 22:54   ` Shawn O. Pearce
  0 siblings, 1 reply; 17+ messages in thread
From: Robin Rosenberg @ 2008-06-03 16:56 UTC (permalink / raw
  To: Imran M Yousuf; +Cc: Git Mailing List, Shawn O. Pearce

tisdagen den 3 juni 2008 16.42.33 skrev Imran M Yousuf:
> Hi,
> 
> I have successfully Mavenized JGit (at least partially :)) to make it
> independent of IDE to develop on. I will also add a code-file format
> checker soon. Please have a look at it and let me know what you think
> and how it can be improved. If its helpful I will surely send out a
> patch in this regard. The one thing that I did not configure is the
> external test (exttst), doing that and the code format checker is my
> next step.
> The 'jgit-mavenize' branch of my fork of egit contains it.
> (http://repo.or.cz/w/egit/imyousuf.git?a=shortlog;h=refs/heads/jgit-mavenize).

An abvious problem is that JGit does not handle symbolic links and those do
not work well (if at all) under git on windows either. Cygwin will not do here,
unless you accompany it with a cygwin java build (if such a thing exists). Mingw
also does not support them.

-- robin

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-03 16:56 ` Robin Rosenberg
@ 2008-06-03 22:54   ` Shawn O. Pearce
  2008-06-03 23:30     ` Robin Rosenberg
  0 siblings, 1 reply; 17+ messages in thread
From: Shawn O. Pearce @ 2008-06-03 22:54 UTC (permalink / raw
  To: Robin Rosenberg; +Cc: Imran M Yousuf, Git Mailing List

Robin Rosenberg <robin.rosenberg.lists@dewire.com> wrote:
> tisdagen den 3 juni 2008 16.42.33 skrev Imran M Yousuf:
> > I have successfully Mavenized JGit (at least partially :)) to make it
> > independent of IDE to develop on. I will also add a code-file format
> > checker soon. Please have a look at it and let me know what you think
> > and how it can be improved. If its helpful I will surely send out a
> > patch in this regard. The one thing that I did not configure is the
> > external test (exttst), doing that and the code format checker is my
> > next step.
> > The 'jgit-mavenize' branch of my fork of egit contains it.
> > (http://repo.or.cz/w/egit/imyousuf.git?a=shortlog;h=refs/heads/jgit-mavenize).
> 
> An abvious problem is that JGit does not handle symbolic links and those do
> not work well (if at all) under git on windows either. Cygwin will not do here,
> unless you accompany it with a cygwin java build (if such a thing exists). Mingw
> also does not support them.

I'm all for a change that widens the group of applications and
users that can use jgit (heck, that's one reason we moved to it to
a BSD license).  But we really cannot abandon Windows users in that
process, so yea, anything that tries to use symlinks is bad.

I don't think there is a Cygwin based version of the JVM.  That would
be a very interesting beast.

-- 
Shawn.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-03 22:54   ` Shawn O. Pearce
@ 2008-06-03 23:30     ` Robin Rosenberg
  2008-06-04  3:52       ` Imran M Yousuf
  0 siblings, 1 reply; 17+ messages in thread
From: Robin Rosenberg @ 2008-06-03 23:30 UTC (permalink / raw
  To: Shawn O. Pearce; +Cc: Imran M Yousuf, Git Mailing List

onsdagen den 4 juni 2008 00.54.18 skrev Shawn O. Pearce:
> I don't think there is a Cygwin based version of the JVM.  That would
> be a very interesting beast.
Looks like it could be possible to build it under Cygwin. 
http://download.java.net/jdk7/docs/build/README-builds.html#cygwin

-- robin

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-03 23:30     ` Robin Rosenberg
@ 2008-06-04  3:52       ` Imran M Yousuf
  2008-06-04  4:27         ` Shawn O. Pearce
  0 siblings, 1 reply; 17+ messages in thread
From: Imran M Yousuf @ 2008-06-04  3:52 UTC (permalink / raw
  To: Robin Rosenberg; +Cc: Shawn O. Pearce, Git Mailing List

The first version I mavenized JGit I moved the source code, but I
thought that would come in for more criticism :), thus I chose the
symlink option. Please let me know if a move based mavenizing would be
welcomed or not.

Best regards,

Imran

On Wed, Jun 4, 2008 at 5:30 AM, Robin Rosenberg
<robin.rosenberg.lists@dewire.com> wrote:
> onsdagen den 4 juni 2008 00.54.18 skrev Shawn O. Pearce:
>> I don't think there is a Cygwin based version of the JVM.  That would
>> be a very interesting beast.
> Looks like it could be possible to build it under Cygwin.
> http://download.java.net/jdk7/docs/build/README-builds.html#cygwin
>
> -- robin
>
>
>
>
>
>
>



-- 
Imran M Yousuf
Entrepreneur & Software Engineer
Smart IT Engineering
Dhaka, Bangladesh
Email: imran@smartitengineering.com
Blog: http://imyousuf-tech.blogs.smartitengineering.com/
Mobile: +880-1711402557

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-04  3:52       ` Imran M Yousuf
@ 2008-06-04  4:27         ` Shawn O. Pearce
  2008-06-04  6:40           ` Nigel Magnay
  2008-06-04  6:45           ` Imran M Yousuf
  0 siblings, 2 replies; 17+ messages in thread
From: Shawn O. Pearce @ 2008-06-04  4:27 UTC (permalink / raw
  To: Imran M Yousuf; +Cc: Robin Rosenberg, Git Mailing List

Imran M Yousuf <imyousuf@gmail.com> wrote:
> The first version I mavenized JGit I moved the source code, but I
> thought that would come in for more criticism :), thus I chose the
> symlink option. Please let me know if a move based mavenizing would be
> welcomed or not.

[please don't top-post on this list]

I'd rather us moving the code into a subdirectory than require
a symlink.  For Eclipse this is easy to change the directory that
the code is in, we just have to edit the .classpath to move the
source folder lower in the tree.

But this shows one reason why I don't use Maven I think.  The
fact that we need a "java" directory to hold our java code.
What if another build system wants a different name?  Grumble.

For the most part git-merge-recursive can handle a merge through
this sort of rename.  But we'd like to do this sort of thing at
some relatively stable point in time to try and minimize the impact
it has.
 
> On Wed, Jun 4, 2008 at 5:30 AM, Robin Rosenberg
> <robin.rosenberg.lists@dewire.com> wrote:
> > onsdagen den 4 juni 2008 00.54.18 skrev Shawn O. Pearce:
> >> I don't think there is a Cygwin based version of the JVM.  That would
> >> be a very interesting beast.
> > Looks like it could be possible to build it under Cygwin.
> > http://download.java.net/jdk7/docs/build/README-builds.html#cygwin

-- 
Shawn.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-04  4:27         ` Shawn O. Pearce
@ 2008-06-04  6:40           ` Nigel Magnay
  2008-06-04  6:46             ` Imran M Yousuf
  2008-06-04  6:45           ` Imran M Yousuf
  1 sibling, 1 reply; 17+ messages in thread
From: Nigel Magnay @ 2008-06-04  6:40 UTC (permalink / raw
  To: Shawn O. Pearce; +Cc: Imran M Yousuf, Robin Rosenberg, Git Mailing List

>
> But this shows one reason why I don't use Maven I think.  The
> fact that we need a "java" directory to hold our java code.
> What if another build system wants a different name?  Grumble.
>

You don't. Just set the appropriate config item in pom.xml
(sourceDirectory possibly, but my memory isn't good this morning) and
you can use 'src' as it is currently. src/main/java is just the
default.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-04  4:27         ` Shawn O. Pearce
  2008-06-04  6:40           ` Nigel Magnay
@ 2008-06-04  6:45           ` Imran M Yousuf
  2008-06-05  3:23             ` Ittay Dror
  1 sibling, 1 reply; 17+ messages in thread
From: Imran M Yousuf @ 2008-06-04  6:45 UTC (permalink / raw
  To: Shawn O. Pearce; +Cc: Robin Rosenberg, Git Mailing List

On Wed, Jun 4, 2008 at 10:27 AM, Shawn O. Pearce <spearce@spearce.org> wrote:
> Imran M Yousuf <imyousuf@gmail.com> wrote:
>> The first version I mavenized JGit I moved the source code, but I
>>...
>> welcomed or not.
>
> [please don't top-post on this list]

Sorry, but I thought that I was proposing something new and thus top-posted :)

>
> I'd rather us moving the code into a subdirectory than require
> a symlink.  For Eclipse this is easy to change the directory that
> the code is in, we just have to edit the .classpath to move the
> source folder lower in the tree.
>
> But this shows one reason why I don't use Maven I think.  The
> fact that we need a "java" directory to hold our java code.
> What if another build system wants a different name?  Grumble.

I am sorry for my ignorance, I thought that maven was the most widely
accepted java build tool, but what you said is a possibility.

>
> For the most part git-merge-recursive can handle a merge through
> this sort of rename.  But we'd like to do this sort of thing at
> some relatively stable point in time to try and minimize the impact
> it has.

When I was working with the moved source code git detected the renames
and propagated the changes, but I had to scrape it because of my
stupidity my mavenized jgit was in jgit folder that clashed with the
jgit shell script :). I would say once the move is done it would be
safe to continue.

>
> --
> Shawn.
>



-- 
Imran M Yousuf
Entrepreneur & Software Engineer
Smart IT Engineering
Dhaka, Bangladesh
Email: imran@smartitengineering.com
Blog: http://imyousuf-tech.blogs.smartitengineering.com/
Mobile: +880-1711402557

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-04  6:40           ` Nigel Magnay
@ 2008-06-04  6:46             ` Imran M Yousuf
  2008-06-04 19:59               ` Shawn O. Pearce
  0 siblings, 1 reply; 17+ messages in thread
From: Imran M Yousuf @ 2008-06-04  6:46 UTC (permalink / raw
  To: Nigel Magnay; +Cc: Shawn O. Pearce, Robin Rosenberg, Git Mailing List

On Wed, Jun 4, 2008 at 12:40 PM, Nigel Magnay <nigel.magnay@gmail.com> wrote:
>>
>> But this shows one reason why I don't use Maven I think.  The
>> fact that we need a "java" directory to hold our java code.
>> What if another build system wants a different name?  Grumble.
>>
>
> You don't. Just set the appropriate config item in pom.xml
> (sourceDirectory possibly, but my memory isn't good this morning) and
> you can use 'src' as it is currently. src/main/java is just the
> default.

You are absolutely right in fact (your memory did not betray ;)) its
<project><build><sourceDirectory>.

>



-- 
Imran M Yousuf
Entrepreneur & Software Engineer
Smart IT Engineering
Dhaka, Bangladesh
Email: imran@smartitengineering.com
Blog: http://imyousuf-tech.blogs.smartitengineering.com/
Mobile: +880-1711402557

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-04  6:46             ` Imran M Yousuf
@ 2008-06-04 19:59               ` Shawn O. Pearce
  2008-06-05  2:31                 ` Imran M Yousuf
  2008-06-06  5:28                 ` Imran M Yousuf
  0 siblings, 2 replies; 17+ messages in thread
From: Shawn O. Pearce @ 2008-06-04 19:59 UTC (permalink / raw
  To: Imran M Yousuf; +Cc: Nigel Magnay, Robin Rosenberg, Git Mailing List

Imran M Yousuf <imyousuf@gmail.com> wrote:
> On Wed, Jun 4, 2008 at 12:40 PM, Nigel Magnay <nigel.magnay@gmail.com> wrote:
> >>
> >> But this shows one reason why I don't use Maven I think.  The
> >> fact that we need a "java" directory to hold our java code.
> >> What if another build system wants a different name?  Grumble.
> >>
> >
> > You don't. Just set the appropriate config item in pom.xml
> > (sourceDirectory possibly, but my memory isn't good this morning) and
> > you can use 'src' as it is currently. src/main/java is just the
> > default.
> 
> You are absolutely right in fact (your memory did not betray ;)) its
> <project><build><sourceDirectory>.

If we can avoid doing this rename and instead just configure Maven
to use the existing directory it would be better.  Then we don't
have to bother everyone's branches with this rename business.

-- 
Shawn.

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-04 19:59               ` Shawn O. Pearce
@ 2008-06-05  2:31                 ` Imran M Yousuf
  2008-06-06  5:28                 ` Imran M Yousuf
  1 sibling, 0 replies; 17+ messages in thread
From: Imran M Yousuf @ 2008-06-05  2:31 UTC (permalink / raw
  To: Shawn O. Pearce; +Cc: Nigel Magnay, Robin Rosenberg, Git Mailing List

On Thu, Jun 5, 2008 at 1:59 AM, Shawn O. Pearce <spearce@spearce.org> wrote:
> Imran M Yousuf <imyousuf@gmail.com> wrote:
>> On Wed, Jun 4, 2008 at 12:40 PM, Nigel Magnay <nigel.magnay@gmail.com> wrote:
>> >>
>> >> But this shows one reason why I don't use Maven I think.  The
>> >> fact that we need a "java" directory to hold our java code.
>> >> What if another build system wants a different name?  Grumble.
>> >>
>> >
>> > You don't. Just set the appropriate config item in pom.xml
>> > (sourceDirectory possibly, but my memory isn't good this morning) and
>> > you can use 'src' as it is currently. src/main/java is just the
>> > default.
>>
>> You are absolutely right in fact (your memory did not betray ;)) its
>> <project><build><sourceDirectory>.
>
> If we can avoid doing this rename and instead just configure Maven
> to use the existing directory it would be better.  Then we don't
> have to bother everyone's branches with this rename business.
>

Will give it a try and let all know.

Best regards,

Imran

> --
> Shawn.
>



-- 
Imran M Yousuf
Entrepreneur & Software Engineer
Smart IT Engineering
Dhaka, Bangladesh
Email: imran@smartitengineering.com
Blog: http://imyousuf-tech.blogs.smartitengineering.com/
Mobile: +880-1711402557

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-04  6:45           ` Imran M Yousuf
@ 2008-06-05  3:23             ` Ittay Dror
  2008-06-05  3:33               ` Imran M Yousuf
  2008-06-06  5:31               ` Imran M Yousuf
  0 siblings, 2 replies; 17+ messages in thread
From: Ittay Dror @ 2008-06-05  3:23 UTC (permalink / raw
  To: Imran M Yousuf; +Cc: Shawn O. Pearce, Robin Rosenberg, Git Mailing List



Imran M Yousuf wrote:
> I am sorry for my ignorance, I thought that maven was the most widely
> accepted java build tool, but what you said is a possibility.
>   
For what it's worth, Ant is the most popular build tool. Ant + Ivy (a 
dependency manager) is a great choice. My Next Best Thing (TM) is Gradle 
(www.gradle.org). I wouldn't choose Maven because it makes creating 
custom logic harder and some functionality (like assembly) is no mature. 
I can elaborate on the subject, if people are interested.

Ittay

-- 
Ittay Dror <ittayd@tikalk.com>
Tikal <http://www.tikalk.com>
Tikal Project <http://tikal.sourceforge.net>

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-05  3:23             ` Ittay Dror
@ 2008-06-05  3:33               ` Imran M Yousuf
  2008-06-06  5:31               ` Imran M Yousuf
  1 sibling, 0 replies; 17+ messages in thread
From: Imran M Yousuf @ 2008-06-05  3:33 UTC (permalink / raw
  To: Ittay Dror; +Cc: Shawn O. Pearce, Robin Rosenberg, Git Mailing List

On Thu, Jun 5, 2008 at 9:23 AM, Ittay Dror <ittayd@tikalk.com> wrote:
>
>
> Imran M Yousuf wrote:
>>
>> I am sorry for my ignorance, I thought that maven was the most widely
>> accepted java build tool, but what you said is a possibility.
>>
>
> For what it's worth, Ant is the most popular build tool. Ant + Ivy (a
> dependency manager) is a great choice. My Next Best Thing (TM) is Gradle
> (www.gradle.org). I wouldn't choose Maven because it makes creating custom
> logic harder and some functionality (like assembly) is no mature. I can
> elaborate on the subject, if people are interested.
>

Ah, thanks for shedding some light on it.

Best regards,

Imran

> Ittay
>
> --
> Ittay Dror <ittayd@tikalk.com>
> Tikal <http://www.tikalk.com>
> Tikal Project <http://tikal.sourceforge.net>
>
>



-- 
Imran M Yousuf
Entrepreneur & Software Engineer
Smart IT Engineering
Dhaka, Bangladesh
Email: imran@smartitengineering.com
Blog: http://imyousuf-tech.blogs.smartitengineering.com/
Mobile: +880-1711402557

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-04 19:59               ` Shawn O. Pearce
  2008-06-05  2:31                 ` Imran M Yousuf
@ 2008-06-06  5:28                 ` Imran M Yousuf
  2008-06-06 11:59                   ` Robin Rosenberg
  1 sibling, 1 reply; 17+ messages in thread
From: Imran M Yousuf @ 2008-06-06  5:28 UTC (permalink / raw
  To: Shawn O. Pearce; +Cc: Nigel Magnay, Robin Rosenberg, Git Mailing List

On Thu, Jun 5, 2008 at 1:59 AM, Shawn O. Pearce <spearce@spearce.org> wrote:
> Imran M Yousuf <imyousuf@gmail.com> wrote:
>> On Wed, Jun 4, 2008 at 12:40 PM, Nigel Magnay <nigel.magnay@gmail.com> wrote:
>> >>
>> >> But this shows one reason why I don't use Maven I think.  The
>> >> fact that we need a "java" directory to hold our java code.
>> >> What if another build system wants a different name?  Grumble.
>> >>
>> >
>> > You don't. Just set the appropriate config item in pom.xml
>> > (sourceDirectory possibly, but my memory isn't good this morning) and
>> > you can use 'src' as it is currently. src/main/java is just the
>> > default.
>>
>> You are absolutely right in fact (your memory did not betray ;)) its
>> <project><build><sourceDirectory>.
>
> If we can avoid doing this rename and instead just configure Maven
> to use the existing directory it would be better.  Then we don't
> have to bother everyone's branches with this rename business.

I have just tested it and it works fine. Now maven is configured to
use the existing locations for source and it builds fine.

Best regards,

Imran

PS: This is the link to the commit
http://repo.or.cz/w/egit/imyousuf.git?a=commit;h=7c69b95cee245edd0701e09d5f0357f7ffbbd9ea
>
> --
> Shawn.
>



-- 
Imran M Yousuf
Entrepreneur & Software Engineer
Smart IT Engineering
Dhaka, Bangladesh
Email: imran@smartitengineering.com
Blog: http://imyousuf-tech.blogs.smartitengineering.com/
Mobile: +880-1711402557

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-05  3:23             ` Ittay Dror
  2008-06-05  3:33               ` Imran M Yousuf
@ 2008-06-06  5:31               ` Imran M Yousuf
  1 sibling, 0 replies; 17+ messages in thread
From: Imran M Yousuf @ 2008-06-06  5:31 UTC (permalink / raw
  To: Ittay Dror; +Cc: Shawn O. Pearce, Robin Rosenberg, Git Mailing List

On Thu, Jun 5, 2008 at 9:23 AM, Ittay Dror <ittayd@tikalk.com> wrote:
>
> For what it's worth, Ant is the most popular build tool. Ant + Ivy (a
> dependency manager) is a great choice. My Next Best Thing (TM) is Gradle
> (www.gradle.org). I wouldn't choose Maven because it makes creating custom
> logic harder and some functionality (like assembly) is no mature. I can
> elaborate on the subject, if people are interested.

I have heard of Ant + Ivy but never got the chance to use it. And what
I do for the messy-maven stuffs is I use Ant from maven. But there are
few features of maven (which IMHO is not the discussion topic of this
list) I like. Will checkout Gradle as well.
Thanks for the hints :).

Best regards,

Imran

>
> Ittay
>
> --
> Ittay Dror <ittayd@tikalk.com>
> Tikal <http://www.tikalk.com>
> Tikal Project <http://tikal.sourceforge.net>
>
>



-- 
Imran M Yousuf
Entrepreneur & Software Engineer
Smart IT Engineering
Dhaka, Bangladesh
Email: imran@smartitengineering.com
Blog: http://imyousuf-tech.blogs.smartitengineering.com/
Mobile: +880-1711402557

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-06  5:28                 ` Imran M Yousuf
@ 2008-06-06 11:59                   ` Robin Rosenberg
  2008-06-06 12:40                     ` Imran M Yousuf
  0 siblings, 1 reply; 17+ messages in thread
From: Robin Rosenberg @ 2008-06-06 11:59 UTC (permalink / raw
  To: Imran M Yousuf; +Cc: Shawn O. Pearce, Nigel Magnay, Git Mailing List

fredagen den 6 juni 2008 07.28.59 skrev Imran M Yousuf:
> I have just tested it and it works fine. Now maven is configured to
> use the existing locations for source and it builds fine.

I squashed the two commits involving pom.xml into a new branchy and it works here to. 
Still you have  a duplicate of the test directory. Can that be fixed too?

-- robin

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [JGIT RFC] Mavenized JGit
  2008-06-06 11:59                   ` Robin Rosenberg
@ 2008-06-06 12:40                     ` Imran M Yousuf
  0 siblings, 0 replies; 17+ messages in thread
From: Imran M Yousuf @ 2008-06-06 12:40 UTC (permalink / raw
  To: Robin Rosenberg; +Cc: Shawn O. Pearce, Nigel Magnay, Git Mailing List

On Fri, Jun 6, 2008 at 5:59 PM, Robin Rosenberg
<robin.rosenberg.lists@dewire.com> wrote:
> Still you have  a duplicate of the test directory. Can that be fixed too?

Actually I will give it a try checking what happens if the files are
in maven test resources, will give it a try this weekend and update
you all.

Best regards,

Imran

>
> -- robin
>



-- 
Imran M Yousuf
Entrepreneur & Software Engineer
Smart IT Engineering
Dhaka, Bangladesh
Email: imran@smartitengineering.com
Blog: http://imyousuf-tech.blogs.smartitengineering.com/
Mobile: +880-1711402557

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2008-06-06 12:41 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-03 14:42 [JGIT RFC] Mavenized JGit Imran M Yousuf
2008-06-03 16:56 ` Robin Rosenberg
2008-06-03 22:54   ` Shawn O. Pearce
2008-06-03 23:30     ` Robin Rosenberg
2008-06-04  3:52       ` Imran M Yousuf
2008-06-04  4:27         ` Shawn O. Pearce
2008-06-04  6:40           ` Nigel Magnay
2008-06-04  6:46             ` Imran M Yousuf
2008-06-04 19:59               ` Shawn O. Pearce
2008-06-05  2:31                 ` Imran M Yousuf
2008-06-06  5:28                 ` Imran M Yousuf
2008-06-06 11:59                   ` Robin Rosenberg
2008-06-06 12:40                     ` Imran M Yousuf
2008-06-04  6:45           ` Imran M Yousuf
2008-06-05  3:23             ` Ittay Dror
2008-06-05  3:33               ` Imran M Yousuf
2008-06-06  5:31               ` Imran M Yousuf

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).