Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » Visual Editor (VE) » building VE from sources
building VE from sources [message #138890] Thu, 12 July 2007 11:11 Go to next message
Lorenzo Bettini is currently offline Lorenzo BettiniFriend
Messages: 1812
Registered: July 2009
Location: Firenze, Italy
Senior Member
Hi

I was trying to build ve from the cvs source in eclipse europa 3.3, but
I get 100 errors, e.g., complaining that BaseBeanInfo cannot be found...

what should I install to build ve?

thanks in advance
Lorenzo

--
Lorenzo Bettini, PhD in Computer Science, DSI, Univ. di Firenze
ICQ# lbetto, 16080134 (GNU/Linux User # 158233)
HOME: http://www.lorenzobettini.it MUSIC: http://www.purplesucker.com
BLOGS: http://tronprog.blogspot.com http://longlivemusic.blogspot.com
http://www.gnu.org/software/src-highlite
http://www.gnu.org/software/gengetopt
http://www.gnu.org/software/gengen http://doublecpp.sourceforge.net


Re: building VE from sources [message #140445 is a reply to message #138890] Thu, 13 September 2007 17:07 Go to previous messageGo to next message
Philippe Ombredanne is currently offline Philippe OmbredanneFriend
Messages: 386
Registered: July 2009
Senior Member
"Lorenzo Bettini" <bettini@dsi.unifi.it> wrote in message
news:f752a2$b4d$1@build.eclipse.org...
> Hi
>
> I was trying to build ve from the cvs source in eclipse europa 3.3, but
> I get 100 errors, e.g., complaining that BaseBeanInfo cannot be found...
>
> what should I install to build ve?
>
> thanks in advance
> Lorenzo
>
Lorenzo:
You can import the attached team project set:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=203317
This will check out all the project you need to work with VE in your
workspace.


--
Cheers, Philippe
philippe ombredanne | nexB
1 650 799 0949 | pombredanne at nexb.com
http://www.nexb.com
http://EasyEclipse.org
Re: building VE from sources [message #140524 is a reply to message #140445] Fri, 14 September 2007 09:03 Go to previous messageGo to next message
dominique is currently offline dominiqueFriend
Messages: 10
Registered: July 2009
Junior Member
Hello, I need some help ...

I imported the attached team project that you provide, it works fine thank you. then I applied the first patch from Erik, but I still have some errors.

The first one is concerning a missing library :
../org.eclipse.emf.ant/ant_tasks/emf.ant.tasks.jar

I tried to re-install the emf plugin with all the package (source, doc, ...) but it doesn't change anything.

Do I need to build EMF plugin in order to get the "emf.ant.tasks.jar" ?

Can I get this file somewhere else ? I tried to find it , but I didn't succeed ...

Thanks for your help.
Dominique
Re: building VE from sources [message #140555 is a reply to message #140524] Fri, 14 September 2007 15:38 Go to previous messageGo to next message
Philippe Ombredanne is currently offline Philippe OmbredanneFriend
Messages: 386
Registered: July 2009
Senior Member
"dominique" <dominique.vincent10@free.fr> wrote in message
news:362812318.7121189760620042.JavaMail.root@cp9.dzone.com...
> Hello, I need some help ...
>
> I imported the attached team project that you provide, it works fine thank
you. then I applied the first patch from Erik, but I still have some errors.
>
> The first one is concerning a missing library :
> ./org.eclipse.emf.ant/ant_tasks/emf.ant.tasks.jar
>
> I tried to re-install the emf plugin with all the package (source, doc,
....) but it doesn't change anything.
>
> Do I need to build EMF plugin in order to get the "emf.ant.tasks.jar" ?
>
> Can I get this file somewhere else ? I tried to find it , but I didn't
succeed ...
>
> Thanks for your help.
> Dominique

My mistake, I had forgotten that one:
There may be a better way, but here is how I do it:
See the attachment and description here:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=203449
Re: building VE from sources [message #140585 is a reply to message #140524] Sat, 15 September 2007 05:47 Go to previous messageGo to next message
Philippe Ombredanne is currently offline Philippe OmbredanneFriend
Messages: 386
Registered: July 2009
Senior Member
dominique" <dominique.vincent10@free.fr> wrote in message
news:362812318.7121189760620042.JavaMail.root@cp9.dzone.com...
> Hello, I need some help ...
> I imported the attached team project that you provide, it works fine thank
you. then I applied the first patch from Erik, but I still have some errors.
> The first one is concerning a missing library :
> ./org.eclipse.emf.ant/ant_tasks/emf.ant.tasks.jar
> I tried to re-install the emf plugin with all the package (source, doc,
....) but it doesn't change anything.
> Do I need to build EMF plugin in order to get the "emf.ant.tasks.jar" ?
> Can I get this file somewhere else ? I tried to find it , but I didn't
succeed ...
> Thanks for your help.
> Dominique
Hey, thanks for giving it a shot!
I added a page there, and there was something missing, for emf.ant.
http://wiki.eclipse.org/VE/Contributing
Thanks again for trying!
Re: building VE from sources [message #140618 is a reply to message #140585] Sun, 16 September 2007 18:57 Go to previous messageGo to next message
dominique is currently offline dominiqueFriend
Messages: 10
Registered: July 2009
Junior Member
The next issue concerning the build of VE from sources comes from the Hibernate library. If those libraries are not installed, the build of the file "Person.java" (in "org.eclipse.ve.sweet" project) cannot be done. It seems to be an example file, not mandatory for using VE...
All the details to build without errors this file can be found in the following files of the "org.eclipse.ve.sweet" project:
- README,
- src\org\eclipse\ve\sweet2\hibernate\README.html

After installing Hibernate libraries, the last 2 errors concerns the project "org.eclipse.ve.sweet.internal". There is no "src" directory in this project and the ".classpath" file contains an entry for this "src" directory . The build failed for this reason.
I don't know if it is normal that this directory is missing ...
One solution is to remove the entry concerning the "src" directory :
1- right click on the project, select "properties"
2- select "Java Build Path", in the list on the left side,
3- in the "Source" dialog remove the source folder "src"

After this, the build is OK with 7016 warnings ...
Re: building VE from sources [message #140673 is a reply to message #140618] Mon, 17 September 2007 13:59 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: richkulp.us.NO_SPAM.ibm.com

Hi,

Sweet is not really part of VE anymore. It was an original drop of a
prototype project but it never made it into VE official.

dominique wrote:
> The next issue concerning the build of VE from sources comes from the Hibernate library. If those libraries are not installed, the build of the file "Person.java" (in "org.eclipse.ve.sweet" project) cannot be done. It seems to be an example file, not mandatory for using VE...
> All the details to build without errors this file can be found in the following files of the "org.eclipse.ve.sweet" project:
> - README,
> - src\org\eclipse\ve\sweet2\hibernate\README.html
>
> After installing Hibernate libraries, the last 2 errors concerns the project "org.eclipse.ve.sweet.internal". There is no "src" directory in this project and the ".classpath" file contains an entry for this "src" directory . The build failed for this reason.
> I don't know if it is normal that this directory is missing ...
> One solution is to remove the entry concerning the "src" directory :
> 1- right click on the project, select "properties"
> 2- select "Java Build Path", in the list on the left side,
> 3- in the "Source" dialog remove the source folder "src"
>
> After this, the build is OK with 7016 warnings ...

--
Thanks,
Rich Kulp
Re: building VE from sources [message #140971 is a reply to message #140618] Sun, 23 September 2007 23:30 Go to previous message
Philippe Ombredanne is currently offline Philippe OmbredanneFriend
Messages: 386
Registered: July 2009
Senior Member
"dominique" <dominique.vincent10@free.fr> wrote in message
news:326783663.13701189969078057.JavaMail.root@cp9.dzone.com...
> The next issue concerning the build of VE from sources comes from the
Hibernate library. If those libraries are not installed, the build of the
file "Person.java" (in "org.eclipse.ve.sweet" project) cannot be done. It
seems to be an example file, not mandatory for using VE...
> All the details to build without errors this file can be found in the
following files of the "org.eclipse.ve.sweet" project:
> - README,
> - src\org\eclipse\ve\sweet2\hibernate\README.html
>

Dominique,
as Rich said, Sweet is not part of the core VE.
Note that it was not included in the team project set attached to that bug:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=203317 linked from the
instructions page: http://wiki.eclipse.org/VE/Contributing
Cordially
Philippe
Re: building VE from sources [message #616539 is a reply to message #138890] Thu, 13 September 2007 17:07 Go to previous message
Philippe Ombredanne is currently offline Philippe OmbredanneFriend
Messages: 386
Registered: July 2009
Senior Member
"Lorenzo Bettini" <bettini@dsi.unifi.it> wrote in message
news:f752a2$b4d$1@build.eclipse.org...
> Hi
>
> I was trying to build ve from the cvs source in eclipse europa 3.3, but
> I get 100 errors, e.g., complaining that BaseBeanInfo cannot be found...
>
> what should I install to build ve?
>
> thanks in advance
> Lorenzo
>
Lorenzo:
You can import the attached team project set:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=203317
This will check out all the project you need to work with VE in your
workspace.


--
Cheers, Philippe
philippe ombredanne | nexB
1 650 799 0949 | pombredanne at nexb.com
http://www.nexb.com
http://EasyEclipse.org
Re: building VE from sources [message #616554 is a reply to message #140445] Fri, 14 September 2007 09:03 Go to previous message
dominique is currently offline dominiqueFriend
Messages: 10
Registered: July 2009
Junior Member
Hello, I need some help ...

I imported the attached team project that you provide, it works fine thank you. then I applied the first patch from Erik, but I still have some errors.

The first one is concerning a missing library :
../org.eclipse.emf.ant/ant_tasks/emf.ant.tasks.jar

I tried to re-install the emf plugin with all the package (source, doc, ...) but it doesn't change anything.

Do I need to build EMF plugin in order to get the "emf.ant.tasks.jar" ?

Can I get this file somewhere else ? I tried to find it , but I didn't succeed ...

Thanks for your help.
Dominique
Re: building VE from sources [message #616557 is a reply to message #140524] Fri, 14 September 2007 15:38 Go to previous message
Philippe Ombredanne is currently offline Philippe OmbredanneFriend
Messages: 386
Registered: July 2009
Senior Member
"dominique" <dominique.vincent10@free.fr> wrote in message
news:362812318.7121189760620042.JavaMail.root@cp9.dzone.com...
> Hello, I need some help ...
>
> I imported the attached team project that you provide, it works fine thank
you. then I applied the first patch from Erik, but I still have some errors.
>
> The first one is concerning a missing library :
> ./org.eclipse.emf.ant/ant_tasks/emf.ant.tasks.jar
>
> I tried to re-install the emf plugin with all the package (source, doc,
....) but it doesn't change anything.
>
> Do I need to build EMF plugin in order to get the "emf.ant.tasks.jar" ?
>
> Can I get this file somewhere else ? I tried to find it , but I didn't
succeed ...
>
> Thanks for your help.
> Dominique

My mistake, I had forgotten that one:
There may be a better way, but here is how I do it:
See the attachment and description here:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=203449
Re: building VE from sources [message #616560 is a reply to message #140524] Sat, 15 September 2007 05:47 Go to previous message
Philippe Ombredanne is currently offline Philippe OmbredanneFriend
Messages: 386
Registered: July 2009
Senior Member
dominique" <dominique.vincent10@free.fr> wrote in message
news:362812318.7121189760620042.JavaMail.root@cp9.dzone.com...
> Hello, I need some help ...
> I imported the attached team project that you provide, it works fine thank
you. then I applied the first patch from Erik, but I still have some errors.
> The first one is concerning a missing library :
> ./org.eclipse.emf.ant/ant_tasks/emf.ant.tasks.jar
> I tried to re-install the emf plugin with all the package (source, doc,
....) but it doesn't change anything.
> Do I need to build EMF plugin in order to get the "emf.ant.tasks.jar" ?
> Can I get this file somewhere else ? I tried to find it , but I didn't
succeed ...
> Thanks for your help.
> Dominique
Hey, thanks for giving it a shot!
I added a page there, and there was something missing, for emf.ant.
http://wiki.eclipse.org/VE/Contributing
Thanks again for trying!
Re: building VE from sources [message #616563 is a reply to message #140585] Sun, 16 September 2007 18:57 Go to previous message
dominique is currently offline dominiqueFriend
Messages: 10
Registered: July 2009
Junior Member
The next issue concerning the build of VE from sources comes from the Hibernate library. If those libraries are not installed, the build of the file "Person.java" (in "org.eclipse.ve.sweet" project) cannot be done. It seems to be an example file, not mandatory for using VE...
All the details to build without errors this file can be found in the following files of the "org.eclipse.ve.sweet" project:
- README,
- src\org\eclipse\ve\sweet2\hibernate\README.html

After installing Hibernate libraries, the last 2 errors concerns the project "org.eclipse.ve.sweet.internal". There is no "src" directory in this project and the ".classpath" file contains an entry for this "src" directory . The build failed for this reason.
I don't know if it is normal that this directory is missing ...
One solution is to remove the entry concerning the "src" directory :
1- right click on the project, select "properties"
2- select "Java Build Path", in the list on the left side,
3- in the "Source" dialog remove the source folder "src"

After this, the build is OK with 7016 warnings ...
Re: building VE from sources [message #616568 is a reply to message #140618] Mon, 17 September 2007 13:59 Go to previous message
Eclipse UserFriend
Originally posted by: richkulp.us.NO_SPAM.ibm.com

Hi,

Sweet is not really part of VE anymore. It was an original drop of a
prototype project but it never made it into VE official.

dominique wrote:
> The next issue concerning the build of VE from sources comes from the Hibernate library. If those libraries are not installed, the build of the file "Person.java" (in "org.eclipse.ve.sweet" project) cannot be done. It seems to be an example file, not mandatory for using VE...
> All the details to build without errors this file can be found in the following files of the "org.eclipse.ve.sweet" project:
> - README,
> - src\org\eclipse\ve\sweet2\hibernate\README.html
>
> After installing Hibernate libraries, the last 2 errors concerns the project "org.eclipse.ve.sweet.internal". There is no "src" directory in this project and the ".classpath" file contains an entry for this "src" directory . The build failed for this reason.
> I don't know if it is normal that this directory is missing ...
> One solution is to remove the entry concerning the "src" directory :
> 1- right click on the project, select "properties"
> 2- select "Java Build Path", in the list on the left side,
> 3- in the "Source" dialog remove the source folder "src"
>
> After this, the build is OK with 7016 warnings ...

--
Thanks,
Rich Kulp
Re: building VE from sources [message #616593 is a reply to message #140618] Sun, 23 September 2007 23:30 Go to previous message
Philippe Ombredanne is currently offline Philippe OmbredanneFriend
Messages: 386
Registered: July 2009
Senior Member
"dominique" <dominique.vincent10@free.fr> wrote in message
news:326783663.13701189969078057.JavaMail.root@cp9.dzone.com...
> The next issue concerning the build of VE from sources comes from the
Hibernate library. If those libraries are not installed, the build of the
file "Person.java" (in "org.eclipse.ve.sweet" project) cannot be done. It
seems to be an example file, not mandatory for using VE...
> All the details to build without errors this file can be found in the
following files of the "org.eclipse.ve.sweet" project:
> - README,
> - src\org\eclipse\ve\sweet2\hibernate\README.html
>

Dominique,
as Rich said, Sweet is not part of the core VE.
Note that it was not included in the team project set attached to that bug:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=203317 linked from the
instructions page: http://wiki.eclipse.org/VE/Contributing
Cordially
Philippe
Previous Topic:No Pallet options
Next Topic:Anybody is extending VE to create their own IDE?
Goto Forum:
  


Current Time: Tue Mar 19 06:46:29 GMT 2024

Powered by FUDForum. Page generated in 0.02726 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top