Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-18 Thread Anders Nawroth
The other way around this is to do turn off workspace dependency 
resolution for projects that fail to resolve dependencies correctly 
inside the workspace. This is a problem with the m2e plugin, not much we 
can do about it.

/anders

2011-10-18 11:10, Brendan cheng skrev:
>
> Thanks Peter.
> The error does go away after deleting Cypher project and the binary does 
> include the missing classes. Will this problem be fixed in future?
> Cheers,
> Brendan
>   
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-18 Thread Andres Taylor
On Tue, Oct 18, 2011 at 11:10 AM, Brendan cheng  wrote:

>
> Thanks Peter.
> The error does go away after deleting Cypher project and the binary does
> include the missing classes. Will this problem be fixed in future?
>

Hi Brendan,

It's a more problem with how Eclipse loads Scala projects. Not much we can
do from our side, unfortunately.

Andrés
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-18 Thread Brendan cheng

Thanks Peter.
The error does go away after deleting Cypher project and the binary does 
include the missing classes. Will this problem be fixed in future?
Cheers,
Brendan
  
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-18 Thread Peter Neubauer
Brendan,
for Scala, I normally have the Scala plugin installed for Eclipse, see
http://www.scala-ide.org/ and then convert or import the Cypher
project as a Scala project.

Otherwise, just close that project, and the others will pull in the
binary dependency jars and behave well :)

Cheers,

/peter neubauer

GTalk:      neubauer.peter
Skype       peter.neubauer
Phone       +46 704 106975
LinkedIn   http://www.linkedin.com/in/neubauer
Twitter      http://twitter.com/peterneubauer

http://www.neo4j.org               - Your high performance graph database.
http://startupbootcamp.org/    - Öresund - Innovation happens HERE.
http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.



On Tue, Oct 18, 2011 at 5:32 AM, Brendan cheng  wrote:
>
> I'm building the community project which I can successfully done through 
> command line, mvn clean install.
> The problem is only when importing to eclipse.  something class files are 
> missing.  they are all in Cypher project 
> like org.neo4j.cypher.SyntaxException, org.neo4j.cypher.commands.Query.
> in the Cypher project, there are only org.neo4j.cypher.javacompat package.
> does the pom link to a wrong cypher project?
> Brendan
> 
>> Date: Tue, 18 Oct 2011 01:20:20 +0200
>> From: and...@neotechnology.com
>> To: user@lists.neo4j.org
>> Subject: Re: [Neo4j] How to build neo4j projects from GitHub
>>
>> Hi!
>>
>> AFAIK, this is an Eclipse Indigo annoyance.
>>
>> Does sound a bit strange, as we already told Eclipse/m2e how to handle
>> that execution by the configuration over here:
>> https://github.com/neo4j/parent-central/blob/master/pom.xml#L357
>>
>> Maybe you just need to do (project) -> Maven -> Update Project
>> Configuration?
>>
>> Sometimes that is needed after an import in order to get Eclipse
>> properly configured.
>>
>>
>> /anders
>>
>> 2011-10-15 13:09, Brendan cheng skrev:
>> >
>> > I was using the import from eclipse GUI so...no log message but a screen 
>> > shot which I attached.
>> >
>> >> Date: Sat, 15 Oct 2011 12:41:28 +0200
>> >> From: peter.neuba...@neotechnology.com
>> >> To: user@lists.neo4j.org
>> >> Subject: Re: [Neo4j] How to build neo4j projects from GitHub
>> >>
>> >> That sounds ok. Would like to see the full log...
>> >>
>> >> /peter
>> >>
>> >> Sent from my phone.
>> >> On Oct 15, 2011 12:36 PM, "Brendan cheng" wrote:
>> >>
>> >>>
>> >>> Peter,It is from Maven 3.0.2. What version shall we use?
>> >>> Brendan
>> >>> 
>> >>>> Date: Sat, 15 Oct 2011 12:32:07 +0200
>> >>>> From: peter.neuba...@neotechnology.com
>> >>>> To: user@lists.neo4j.org
>> >>>> Subject: Re: [Neo4j] How to build neo4j projects from GitHub
>> >>>>
>> >>>> Brendan,
>> >>>> What maven version, could you submit the whole maven log? Sounds like
>> >>> some
>> >>>> mvn3 stuff ...
>> >>>>
>> >>>> /peter
>> >>>>
>> >>>> On Saturday, October 15, 2011, Brendan cheng wrote:
>> >>>>>
>> >>>>> After adding neo4j maven repository, no more artifacts missing but have
>> >>>> this:
>> >>>>> "No marketplace entries found to handle Execution check-licenses, in
>> >>>> server-enterprise/pom.xml in Eclipse. Please see Help for more
>> >>>> information."
>> >>>>> Any tips for that?
>> >>>>>> 
>> >>>>>>> From: ccp...@hotmail.com
>> >>>>>>> To: user@lists.neo4j.org
>> >>>>>>> Subject: How to build neo4j projects from GitHub
>> >>>>>>> Date: Fri, 14 Oct 2011 06:29:45 +
>> >>>>>>>
>> >>>>>>>
>> >>>>>>> Hi,
>> >>>>>>> I was trying to clone Neo4j enterprise from Github to a local
>> >>> directory
>> >>>> and import it to Eclipse.There were so many artifacts missing, parent
>> >>> path
>> >>>> not found...etc.
>> >>>>>>> is there any way to solve the problems?
>> >>>>>>> Brendan
>> >>>>&g

Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-17 Thread Brendan cheng

I'm building the community project which I can successfully done through 
command line, mvn clean install.
The problem is only when importing to eclipse.  something class files are 
missing.  they are all in Cypher project 
like org.neo4j.cypher.SyntaxException, org.neo4j.cypher.commands.Query.
in the Cypher project, there are only org.neo4j.cypher.javacompat package.
does the pom link to a wrong cypher project?
Brendan 

> Date: Tue, 18 Oct 2011 01:20:20 +0200
> From: and...@neotechnology.com
> To: user@lists.neo4j.org
> Subject: Re: [Neo4j] How to build neo4j projects from GitHub
>
> Hi!
>
> AFAIK, this is an Eclipse Indigo annoyance.
>
> Does sound a bit strange, as we already told Eclipse/m2e how to handle
> that execution by the configuration over here:
> https://github.com/neo4j/parent-central/blob/master/pom.xml#L357
>
> Maybe you just need to do (project) -> Maven -> Update Project
> Configuration?
>
> Sometimes that is needed after an import in order to get Eclipse
> properly configured.
>
>
> /anders
>
> 2011-10-15 13:09, Brendan cheng skrev:
> >
> > I was using the import from eclipse GUI so...no log message but a screen 
> > shot which I attached.
> >
> >> Date: Sat, 15 Oct 2011 12:41:28 +0200
> >> From: peter.neuba...@neotechnology.com
> >> To: user@lists.neo4j.org
> >> Subject: Re: [Neo4j] How to build neo4j projects from GitHub
> >>
> >> That sounds ok. Would like to see the full log...
> >>
> >> /peter
> >>
> >> Sent from my phone.
> >> On Oct 15, 2011 12:36 PM, "Brendan cheng" wrote:
> >>
> >>>
> >>> Peter,It is from Maven 3.0.2. What version shall we use?
> >>> Brendan
> >>> 
> >>>> Date: Sat, 15 Oct 2011 12:32:07 +0200
> >>>> From: peter.neuba...@neotechnology.com
> >>>> To: user@lists.neo4j.org
> >>>> Subject: Re: [Neo4j] How to build neo4j projects from GitHub
> >>>>
> >>>> Brendan,
> >>>> What maven version, could you submit the whole maven log? Sounds like
> >>> some
> >>>> mvn3 stuff ...
> >>>>
> >>>> /peter
> >>>>
> >>>> On Saturday, October 15, 2011, Brendan cheng wrote:
> >>>>>
> >>>>> After adding neo4j maven repository, no more artifacts missing but have
> >>>> this:
> >>>>> "No marketplace entries found to handle Execution check-licenses, in
> >>>> server-enterprise/pom.xml in Eclipse. Please see Help for more
> >>>> information."
> >>>>> Any tips for that?
> >>>>>> 
> >>>>>>> From: ccp...@hotmail.com
> >>>>>>> To: user@lists.neo4j.org
> >>>>>>> Subject: How to build neo4j projects from GitHub
> >>>>>>> Date: Fri, 14 Oct 2011 06:29:45 +
> >>>>>>>
> >>>>>>>
> >>>>>>> Hi,
> >>>>>>> I was trying to clone Neo4j enterprise from Github to a local
> >>> directory
> >>>> and import it to Eclipse.There were so many artifacts missing, parent
> >>> path
> >>>> not found...etc.
> >>>>>>> is there any way to solve the problems?
> >>>>>>> Brendan
> >>>>>>
> >>>>>
> >>>>> ___
> >>>>> Neo4j mailing list
> >>>>> User@lists.neo4j.org
> >>>>> https://lists.neo4j.org/mailman/listinfo/user
> >>>>>
> >>>>
> >>>> --
> >>>>
> >>>> Cheers,
> >>>>
> >>>> /peter neubauer
> >>>>
> >>>> GTalk: neubauer.peter
> >>>> Skype peter.neubauer
> >>>> Phone +46 704 106975
> >>>> LinkedIn http://www.linkedin.com/in/neubauer
> >>>> Twitter http://twitter.com/peterneubauer
> >>>>
> >>>> http://www.neo4j.org - Your high performance graph database.
> >>>> http://startupbootcamp.org/ - Öresund - Innovation happens HERE.
> >>>> http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.
> >>>> ___
> >>>> Neo4j mailing list
> >>>> User@lists.neo4j.org
> >>>> https://lists.neo4j.org/mailman/listinfo/user
> >>>
> >>> ___
> >>> Neo4j mailing list
> >>> User@lists.neo4j.org
> >>> https://lists.neo4j.org/mailman/listinfo/user
> >>>
> >> ___
> >> Neo4j mailing list
> >> User@lists.neo4j.org
> >> https://lists.neo4j.org/mailman/listinfo/user
> >
> > [Neo4j] How to build neo4j projects from GitHub
> > http://skydrive.live.com/redir.aspx?cid=b63b5ad3a690c14f&page=browse&resid=B63B5AD3A690C14F!474&type=5&Bpub=SDX.Photos&Bsrc=Photomail&authkey=66Hwj2qLGtw%24
> > ___
> > Neo4j mailing list
> > User@lists.neo4j.org
> > https://lists.neo4j.org/mailman/listinfo/user
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
  
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-17 Thread Anders Nawroth
Hi!

AFAIK, this is an Eclipse Indigo annoyance.

Does sound a bit strange, as we already told Eclipse/m2e how to handle 
that execution by the configuration over here:
https://github.com/neo4j/parent-central/blob/master/pom.xml#L357

Maybe you just need to do (project) -> Maven -> Update Project 
Configuration?

Sometimes that is needed after an import in order to get Eclipse 
properly configured.


/anders

2011-10-15 13:09, Brendan cheng skrev:
>
> I was using the import from eclipse GUI so...no log message but a screen shot 
> which I attached.
>
>> Date: Sat, 15 Oct 2011 12:41:28 +0200
>> From: peter.neuba...@neotechnology.com
>> To: user@lists.neo4j.org
>> Subject: Re: [Neo4j] How to build neo4j projects from GitHub
>>
>> That sounds ok. Would like to see the full log...
>>
>> /peter
>>
>> Sent from my phone.
>> On Oct 15, 2011 12:36 PM, "Brendan cheng"  wrote:
>>
>>>
>>> Peter,It is from Maven 3.0.2.   What version shall we use?
>>> Brendan
>>> 
>>>> Date: Sat, 15 Oct 2011 12:32:07 +0200
>>>> From: peter.neuba...@neotechnology.com
>>>> To: user@lists.neo4j.org
>>>> Subject: Re: [Neo4j] How to build neo4j projects from GitHub
>>>>
>>>> Brendan,
>>>> What maven version, could you submit the whole maven log? Sounds like
>>> some
>>>> mvn3 stuff ...
>>>>
>>>> /peter
>>>>
>>>> On Saturday, October 15, 2011, Brendan cheng  wrote:
>>>>>
>>>>> After adding neo4j maven repository, no more artifacts missing but have
>>>> this:
>>>>> "No marketplace entries found to handle Execution check-licenses, in
>>>> server-enterprise/pom.xml in Eclipse. Please see Help for more
>>>> information."
>>>>> Any tips for that?
>>>>>> 
>>>>>>> From: ccp...@hotmail.com
>>>>>>> To: user@lists.neo4j.org
>>>>>>> Subject: How to build neo4j projects from GitHub
>>>>>>> Date: Fri, 14 Oct 2011 06:29:45 +
>>>>>>>
>>>>>>>
>>>>>>> Hi,
>>>>>>> I was trying to clone Neo4j enterprise from Github to a local
>>> directory
>>>> and import it to Eclipse.There were so many artifacts missing, parent
>>> path
>>>> not found...etc.
>>>>>>> is there any way to solve the problems?
>>>>>>> Brendan
>>>>>>
>>>>>
>>>>> ___
>>>>> Neo4j mailing list
>>>>> User@lists.neo4j.org
>>>>> https://lists.neo4j.org/mailman/listinfo/user
>>>>>
>>>>
>>>> --
>>>>
>>>> Cheers,
>>>>
>>>> /peter neubauer
>>>>
>>>> GTalk: neubauer.peter
>>>> Skype peter.neubauer
>>>> Phone +46 704 106975
>>>> LinkedIn http://www.linkedin.com/in/neubauer
>>>> Twitter http://twitter.com/peterneubauer
>>>>
>>>> http://www.neo4j.org - Your high performance graph database.
>>>> http://startupbootcamp.org/ - Öresund - Innovation happens HERE.
>>>> http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.
>>>> ___
>>>> Neo4j mailing list
>>>> User@lists.neo4j.org
>>>> https://lists.neo4j.org/mailman/listinfo/user
>>>
>>> ___
>>> Neo4j mailing list
>>> User@lists.neo4j.org
>>> https://lists.neo4j.org/mailman/listinfo/user
>>>
>> ___
>> Neo4j mailing list
>> User@lists.neo4j.org
>> https://lists.neo4j.org/mailman/listinfo/user
>   
> [Neo4j] How to build neo4j projects from GitHub
> http://skydrive.live.com/redir.aspx?cid=b63b5ad3a690c14f&page=browse&resid=B63B5AD3A690C14F!474&type=5&Bpub=SDX.Photos&Bsrc=Photomail&authkey=66Hwj2qLGtw%24
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-15 Thread Peter Neubauer
Ah.
You do this via m2eclipse? The resolution is not the best, and our poms are
using quite a lot of maven features. I would suggest to first build the
project from the command line, then import it with "existing maven project "
into eclipse. Can make a note of that in the readme

The eclipse plugin tries to resolve plugins against hhe maven marketplace,
but not all of hhfm are there...

/peter

Sent from my phone.
On Oct 15, 2011 1:09 PM, "Brendan cheng"  wrote:

>
> I was using the import from eclipse GUI so...no log message but a screen
> shot which I attached.
>
> > Date: Sat, 15 Oct 2011 12:41:28 +0200
> > From: peter.neuba...@neotechnology.com
> > To: user@lists.neo4j.org
> > Subject: Re: [Neo4j] How to build neo4j projects from GitHub
> >
> > That sounds ok. Would like to see the full log...
> >
> > /peter
> >
> > Sent from my phone.
> > On Oct 15, 2011 12:36 PM, "Brendan cheng"  wrote:
> >
> > >
> > > Peter,It is from Maven 3.0.2.   What version shall we use?
> > > Brendan
> > > ----
> > > > Date: Sat, 15 Oct 2011 12:32:07 +0200
> > > > From: peter.neuba...@neotechnology.com
> > > > To: user@lists.neo4j.org
> > > > Subject: Re: [Neo4j] How to build neo4j projects from GitHub
> > > >
> > > > Brendan,
> > > > What maven version, could you submit the whole maven log? Sounds like
> > > some
> > > > mvn3 stuff ...
> > > >
> > > > /peter
> > > >
> > > > On Saturday, October 15, 2011, Brendan cheng 
> wrote:
> > > > >
> > > > > After adding neo4j maven repository, no more artifacts missing but
> have
> > > > this:
> > > > > "No marketplace entries found to handle Execution check-licenses,
> in
> > > > server-enterprise/pom.xml in Eclipse. Please see Help for more
> > > > information."
> > > > > Any tips for that?
> > > > >> 
> > > > >> > From: ccp...@hotmail.com
> > > > >> > To: user@lists.neo4j.org
> > > > >> > Subject: How to build neo4j projects from GitHub
> > > > >> > Date: Fri, 14 Oct 2011 06:29:45 +
> > > > >> >
> > > > >> >
> > > > >> > Hi,
> > > > >> > I was trying to clone Neo4j enterprise from Github to a local
> > > directory
> > > > and import it to Eclipse.There were so many artifacts missing, parent
> > > path
> > > > not found...etc.
> > > > >> > is there any way to solve the problems?
> > > > >> > Brendan
> > > > >>
> > > > >
> > > > > ___
> > > > > Neo4j mailing list
> > > > > User@lists.neo4j.org
> > > > > https://lists.neo4j.org/mailman/listinfo/user
> > > > >
> > > >
> > > > --
> > > >
> > > > Cheers,
> > > >
> > > > /peter neubauer
> > > >
> > > > GTalk: neubauer.peter
> > > > Skype peter.neubauer
> > > > Phone +46 704 106975
> > > > LinkedIn http://www.linkedin.com/in/neubauer
> > > > Twitter http://twitter.com/peterneubauer
> > > >
> > > > http://www.neo4j.org - Your high performance graph database.
> > > > http://startupbootcamp.org/ - Öresund - Innovation happens HERE.
> > > > http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing
> party.
> > > > ___
> > > > Neo4j mailing list
> > > > User@lists.neo4j.org
> > > > https://lists.neo4j.org/mailman/listinfo/user
> > >
> > > ___
> > > Neo4j mailing list
> > > User@lists.neo4j.org
> > > https://lists.neo4j.org/mailman/listinfo/user
> > >
> > ___
> > Neo4j mailing list
> > User@lists.neo4j.org
> > https://lists.neo4j.org/mailman/listinfo/user
>
> [Neo4j] How to build neo4j projects from GitHub
>
> http://skydrive.live.com/redir.aspx?cid=b63b5ad3a690c14f&page=browse&resid=B63B5AD3A690C14F!474&type=5&Bpub=SDX.Photos&Bsrc=Photomail&authkey=66Hwj2qLGtw%24
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
>
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-15 Thread Brendan cheng

I was using the import from eclipse GUI so...no log message but a screen shot 
which I attached.

> Date: Sat, 15 Oct 2011 12:41:28 +0200
> From: peter.neuba...@neotechnology.com
> To: user@lists.neo4j.org
> Subject: Re: [Neo4j] How to build neo4j projects from GitHub
> 
> That sounds ok. Would like to see the full log...
> 
> /peter
> 
> Sent from my phone.
> On Oct 15, 2011 12:36 PM, "Brendan cheng"  wrote:
> 
> >
> > Peter,It is from Maven 3.0.2.   What version shall we use?
> > Brendan
> > 
> > > Date: Sat, 15 Oct 2011 12:32:07 +0200
> > > From: peter.neuba...@neotechnology.com
> > > To: user@lists.neo4j.org
> > > Subject: Re: [Neo4j] How to build neo4j projects from GitHub
> > >
> > > Brendan,
> > > What maven version, could you submit the whole maven log? Sounds like
> > some
> > > mvn3 stuff ...
> > >
> > > /peter
> > >
> > > On Saturday, October 15, 2011, Brendan cheng  wrote:
> > > >
> > > > After adding neo4j maven repository, no more artifacts missing but have
> > > this:
> > > > "No marketplace entries found to handle Execution check-licenses, in
> > > server-enterprise/pom.xml in Eclipse. Please see Help for more
> > > information."
> > > > Any tips for that?
> > > >> 
> > > >> > From: ccp...@hotmail.com
> > > >> > To: user@lists.neo4j.org
> > > >> > Subject: How to build neo4j projects from GitHub
> > > >> > Date: Fri, 14 Oct 2011 06:29:45 +
> > > >> >
> > > >> >
> > > >> > Hi,
> > > >> > I was trying to clone Neo4j enterprise from Github to a local
> > directory
> > > and import it to Eclipse.There were so many artifacts missing, parent
> > path
> > > not found...etc.
> > > >> > is there any way to solve the problems?
> > > >> > Brendan
> > > >>
> > > >
> > > > ___
> > > > Neo4j mailing list
> > > > User@lists.neo4j.org
> > > > https://lists.neo4j.org/mailman/listinfo/user
> > > >
> > >
> > > --
> > >
> > > Cheers,
> > >
> > > /peter neubauer
> > >
> > > GTalk: neubauer.peter
> > > Skype peter.neubauer
> > > Phone +46 704 106975
> > > LinkedIn http://www.linkedin.com/in/neubauer
> > > Twitter http://twitter.com/peterneubauer
> > >
> > > http://www.neo4j.org - Your high performance graph database.
> > > http://startupbootcamp.org/ - Öresund - Innovation happens HERE.
> > > http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.
> > > ___
> > > Neo4j mailing list
> > > User@lists.neo4j.org
> > > https://lists.neo4j.org/mailman/listinfo/user
> >
> > ___
> > Neo4j mailing list
> > User@lists.neo4j.org
> > https://lists.neo4j.org/mailman/listinfo/user
> >
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
  
[Neo4j] How to build neo4j projects from GitHub
http://skydrive.live.com/redir.aspx?cid=b63b5ad3a690c14f&page=browse&resid=B63B5AD3A690C14F!474&type=5&Bpub=SDX.Photos&Bsrc=Photomail&authkey=66Hwj2qLGtw%24
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-15 Thread Peter Neubauer
That sounds ok. Would like to see the full log...

/peter

Sent from my phone.
On Oct 15, 2011 12:36 PM, "Brendan cheng"  wrote:

>
> Peter,It is from Maven 3.0.2.   What version shall we use?
> Brendan
> 
> > Date: Sat, 15 Oct 2011 12:32:07 +0200
> > From: peter.neuba...@neotechnology.com
> > To: user@lists.neo4j.org
> > Subject: Re: [Neo4j] How to build neo4j projects from GitHub
> >
> > Brendan,
> > What maven version, could you submit the whole maven log? Sounds like
> some
> > mvn3 stuff ...
> >
> > /peter
> >
> > On Saturday, October 15, 2011, Brendan cheng  wrote:
> > >
> > > After adding neo4j maven repository, no more artifacts missing but have
> > this:
> > > "No marketplace entries found to handle Execution check-licenses, in
> > server-enterprise/pom.xml in Eclipse. Please see Help for more
> > information."
> > > Any tips for that?
> > >> 
> > >> > From: ccp...@hotmail.com
> > >> > To: user@lists.neo4j.org
> > >> > Subject: How to build neo4j projects from GitHub
> > >> > Date: Fri, 14 Oct 2011 06:29:45 +
> > >> >
> > >> >
> > >> > Hi,
> > >> > I was trying to clone Neo4j enterprise from Github to a local
> directory
> > and import it to Eclipse.There were so many artifacts missing, parent
> path
> > not found...etc.
> > >> > is there any way to solve the problems?
> > >> > Brendan
> > >>
> > >
> > > ___
> > > Neo4j mailing list
> > > User@lists.neo4j.org
> > > https://lists.neo4j.org/mailman/listinfo/user
> > >
> >
> > --
> >
> > Cheers,
> >
> > /peter neubauer
> >
> > GTalk: neubauer.peter
> > Skype peter.neubauer
> > Phone +46 704 106975
> > LinkedIn http://www.linkedin.com/in/neubauer
> > Twitter http://twitter.com/peterneubauer
> >
> > http://www.neo4j.org - Your high performance graph database.
> > http://startupbootcamp.org/ - Öresund - Innovation happens HERE.
> > http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.
> > ___
> > Neo4j mailing list
> > User@lists.neo4j.org
> > https://lists.neo4j.org/mailman/listinfo/user
>
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
>
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-15 Thread Brendan cheng

Peter,It is from Maven 3.0.2.   What version shall we use?
Brendan

> Date: Sat, 15 Oct 2011 12:32:07 +0200
> From: peter.neuba...@neotechnology.com
> To: user@lists.neo4j.org
> Subject: Re: [Neo4j] How to build neo4j projects from GitHub
>
> Brendan,
> What maven version, could you submit the whole maven log? Sounds like some
> mvn3 stuff ...
>
> /peter
>
> On Saturday, October 15, 2011, Brendan cheng  wrote:
> >
> > After adding neo4j maven repository, no more artifacts missing but have
> this:
> > "No marketplace entries found to handle Execution check-licenses, in
> server-enterprise/pom.xml in Eclipse. Please see Help for more
> information."
> > Any tips for that?
> >> 
> >> > From: ccp...@hotmail.com
> >> > To: user@lists.neo4j.org
> >> > Subject: How to build neo4j projects from GitHub
> >> > Date: Fri, 14 Oct 2011 06:29:45 +
> >> >
> >> >
> >> > Hi,
> >> > I was trying to clone Neo4j enterprise from Github to a local directory
> and import it to Eclipse.There were so many artifacts missing, parent path
> not found...etc.
> >> > is there any way to solve the problems?
> >> > Brendan
> >>
> >
> > ___
> > Neo4j mailing list
> > User@lists.neo4j.org
> > https://lists.neo4j.org/mailman/listinfo/user
> >
>
> --
>
> Cheers,
>
> /peter neubauer
>
> GTalk: neubauer.peter
> Skype peter.neubauer
> Phone +46 704 106975
> LinkedIn http://www.linkedin.com/in/neubauer
> Twitter http://twitter.com/peterneubauer
>
> http://www.neo4j.org - Your high performance graph database.
> http://startupbootcamp.org/ - Öresund - Innovation happens HERE.
> http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
  
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-15 Thread Peter Neubauer
Brendan,
What maven version, could you submit the whole maven log? Sounds like some
mvn3 stuff ...

/peter

On Saturday, October 15, 2011, Brendan cheng  wrote:
>
> After adding neo4j maven repository, no more artifacts missing but have
this:
> "No marketplace entries found to handle Execution check-licenses, in
server-enterprise/pom.xml in Eclipse.  Please see Help for more
information."
> Any tips for that?
>> 
>> > From: ccp...@hotmail.com
>> > To: user@lists.neo4j.org
>> > Subject: How to build neo4j projects from GitHub
>> > Date: Fri, 14 Oct 2011 06:29:45 +
>> >
>> >
>> > Hi,
>> > I was trying to clone Neo4j enterprise from Github to a local directory
and import it to Eclipse.There were so many artifacts missing, parent path
not found...etc.
>> > is there any way to solve the problems?
>> > Brendan
>>
>
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
>

-- 

Cheers,

/peter neubauer

GTalk:  neubauer.peter
Skype   peter.neubauer
Phone   +46 704 106975
LinkedIn   http://www.linkedin.com/in/neubauer
Twitter  http://twitter.com/peterneubauer

http://www.neo4j.org   - Your high performance graph database.
http://startupbootcamp.org/- Öresund - Innovation happens HERE.
http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-15 Thread Brendan cheng

After adding neo4j maven repository, no more artifacts missing but have this:
"No marketplace entries found to handle Execution check-licenses, in 
server-enterprise/pom.xml in Eclipse.  Please see Help for more information."
Any tips for that?
> 
> > From: ccp...@hotmail.com
> > To: user@lists.neo4j.org
> > Subject: How to build neo4j projects from GitHub
> > Date: Fri, 14 Oct 2011 06:29:45 +
> >
> >
> > Hi,
> > I was trying to clone Neo4j enterprise from Github to a local directory and 
> > import it to Eclipse.There were so many artifacts missing, parent path not 
> > found...etc.
> > is there any way to solve the problems?
> > Brendan
>
  
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-14 Thread Peter Neubauer
Added to https://github.com/neo4j/enterprise README, thanks!

Cheers,

/peter neubauer

GTalk:      neubauer.peter
Skype       peter.neubauer
Phone       +46 704 106975
LinkedIn   http://www.linkedin.com/in/neubauer
Twitter      http://twitter.com/peterneubauer

http://www.neo4j.org               - Your high performance graph database.
http://startupbootcamp.org/    - Öresund - Innovation happens HERE.
http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.



On Fri, Oct 14, 2011 at 10:54 AM, Mattias Persson
 wrote:
> Do build the latest snapshot of neo4j you just need to add m2.neo4j.org to
> your repository list (it's mostly for getting the parent pom). Here it is:
>
>    http://dist.neo4j.org/settings.xml
>
> store that as your ~/.m2/settings.xml and it will just work.
>
> 2011/10/14 Brendan cheng 
>
>>
>> Hi,
>> I was trying to clone Neo4j enterprise from Github to a local directory and
>> import it to Eclipse.There were so many artifacts missing, parent path not
>> found...etc.
>> is there any way to solve the problems?
>> Brendan
>> ___
>> Neo4j mailing list
>> User@lists.neo4j.org
>> https://lists.neo4j.org/mailman/listinfo/user
>>
>
>
>
> --
> Mattias Persson, [matt...@neotechnology.com]
> Hacker, Neo Technology
> www.neotechnology.com
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
>
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-14 Thread Mattias Persson
Do build the latest snapshot of neo4j you just need to add m2.neo4j.org to
your repository list (it's mostly for getting the parent pom). Here it is:

http://dist.neo4j.org/settings.xml

store that as your ~/.m2/settings.xml and it will just work.

2011/10/14 Brendan cheng 

>
> Hi,
> I was trying to clone Neo4j enterprise from Github to a local directory and
> import it to Eclipse.There were so many artifacts missing, parent path not
> found...etc.
> is there any way to solve the problems?
> Brendan
> ___
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
>



-- 
Mattias Persson, [matt...@neotechnology.com]
Hacker, Neo Technology
www.neotechnology.com
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] How to build neo4j projects from GitHub

2011-10-13 Thread Kim Gräsman
Hi Brendan,

On Fri, Oct 14, 2011 at 08:29, Brendan cheng  wrote:
>
> I was trying to clone Neo4j enterprise from Github to a local directory and 
> import it to Eclipse.There were so many artifacts missing, parent path not 
> found...etc.
> is there any way to solve the problems?

On what platform?

- Kim
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


[Neo4j] How to build neo4j projects from GitHub

2011-10-13 Thread Brendan cheng

Hi,
I was trying to clone Neo4j enterprise from Github to a local directory and 
import it to Eclipse.There were so many artifacts missing, parent path not 
found...etc.
is there any way to solve the problems? 
Brendan   
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user