Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [dtp-dev] How to compile DTP from source?

Hello Neil,

You need to obtain the v1.1 version of the net.sourceforge.lpg.lpgjavaruntime plugin from the Eclipse Orbit repository.  (Orbit is the Eclipse repo for dependent third-party software.)
Try this:

1.  Open the CVS Repository Exploring perspective
2.  Open the CVS Repositories view

In the Repositories view, there needs to be an entry for the Eclipse Tools repository that looks like this:
   :pserver:anonymous@xxxxxxxxxxxxxxx:/cvsroot/tools

If it's not already there, you need to add it, like this:
3a.  Right-click in the CVS Repositories view and do New -> Repository Location...
3b.  Fill in the values:
      Host:  dev.eclipse.org
      Repository path:  /cvsroot/tools
      User:  anonymous
      Password:  (I don't think it matters, but you can put your userid or "anonymous")

      Leave the Connection type as "pserver" and the "Use default port" default setting.
3c.  Click Finish

4.  Expand the /cvsroot/tools tree until you see an entry "org.eclipse.orbit"
5.  Right-click on the "org.eclipse.orbit" entry and do "Add to Branch List..."
6.  In the Enter Branch Tag window, enter the value "v1_1" as the name of the branch.  (Note the underscore rather than dot).  Click OK.
7.  Go to the Branches part of the repository tree and expand it.  You should now see a v1_1 branch.  
8.  Expand the v1_1 branch and scroll down until you find an entry "net.sourceforge.lpg.lpgjavaruntime".  If you expand that, you should see entries such as ".classpath 1.1.2.1.2.2" and ".project 1.1".  (If not then something went wrong and you haven't reached the actual code version.)
9.  Right-click on the net.sourceforge.lpg.lpgjavaruntime entry and do "Check Out".  This should add the LPG plugin to your workspace.

Hopefully that will take care of your compilation problems.  Good luck!

Regards,
Brian

Brian Payton
Developer, Next Generation Platform for Analytics
IBM Silicon Valley Laboratory





From:        Neil Crow <crow.neil@xxxxxxxxx>
To:        dtp-dev@xxxxxxxxxxx
Date:        10/31/2016 11:48 AM
Subject:        [dtp-dev] How to compile DTP from source?
Sent by:        dtp-dev-bounces@xxxxxxxxxxx




Hi,

I posted the question below on Stackoverflow, it was suggested that I post it here.

How to compile eclipse DTP?
http://stackoverflow.com/questions/40213452/how-to-compile-eclipse-dtp

I have checked out the master branches of the following git repositories:
  • org.eclipse.datatools.build [ git ] [ web ]
  • org.eclipse.datatools.connectivity [ git ] [ web ]
  • org.eclipse.datatools.modelbase [ git ] [ web ]
  • org.eclipse.datatools.sqltools [ git ] [ web ]
The first errors which show up are due to unresolved classes in the lpg.lpgjavaruntime.* packages. These errors occur in the following projects:
  • org.eclipse.datatools.sqltools.parsers.sql
  • org.eclipse.datatools.sqltools.parsers.sql.lexer
I can resolve the compilation errors by downloading the following jar file [ thirdparty\lpg.jar ] and adding the jar to the project. However the ...sql.lexer project still has the following error
Bundle 'net.sourceforge.lpg.lpgjavaruntime' cannot be resolved MANIFEST.MF /org.eclipse.datatools.sqltools.parsers.sql.lexer/META-INF line 13 Plug-in Problem
So my question is, what is the standard approach for compiling Eclipse DTP?
Regards,

Neil
_______________________________________________
dtp-dev mailing list
dtp-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/dtp-dev



Back to the top