Page 1 of 1

Logicaldoc eclipse setup

Posted: Tue May 13, 2014 8:01 am
by purna387
Hi Team,

I create workspace folder and checkout the source code from the svn as mentioned in the manual pdf file. Import the projects from the wrokspace.

I got a problem "Problems opening an editor , logicaldoc does not exist " while opening a file by using the F3 command.

Please provide the clear infomation for the project configuration purpose.

Re: Logicaldoc eclipse setup

Posted: Tue May 13, 2014 11:08 am
by car031
After having your sources checked out you need to install maven, then go into community/logicaldoc and here execute the command

Code: Select all

mvn eclipse:eclipse
This will generate all the eclipse project files

Re: Logicaldoc eclipse setup

Posted: Tue May 13, 2014 4:42 pm
by purna387
Thanks for the reply.

It's working.

Could you explain How can I use webroot ? Give me the clear information.

Thanks & Regards,
Purna

Re: Logicaldoc eclipse setup

Posted: Wed May 14, 2014 11:55 am
by agaspa
Hi purna387,
the manual that you downloaded is the one below?
logicaldoc-devmanual-1.4.pdf
or
http://www.logicaldoc.com/documents/log ... manual.pdf (same document)

That is especially old, in particular as regards the requirements

Now you need at least:
Java JDK 1.7, Maven 3.0.3, Ant 1.7 to build the sources from command-line (cmd)

Regarding your question: the meaning of webroot, the document says this:
logicaldoc.webroot must point to the development webapp installation
So if your deployed LogicalDOC web application is in folder:
C:\JavaSuite\tomcat\webapps\logicaldoc

You will have to specify in your logicaldoc-devel.properties file a property like this:
logicaldoc.webroot=C:/JavaSuite/tomcat/webapps/logicaldoc

Alex

Re: Logicaldoc eclipse setup

Posted: Thu May 22, 2014 1:18 pm
by purna387
Hi Team,

I got erros at pom.xml while configure project in the ubuntu environment.

The error is

Non-resolvable parent POM http://www.ibiblio.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of ibiblio has elapsed or updates are forced and 'parent.relativePath' points at wrong local POM @ line 5, column 11

Ubuntu environment has installed ant and maven.

Could you tell me what I missed ?

Re: Logicaldoc eclipse setup

Posted: Fri May 23, 2014 8:56 am
by agaspa
Hi purna,

most likely you are missing a pom
(although this information is missing in the old manual)

This is the parent pom of LogicalDOC Community

If you're setting up your project checking out the sources from our public SVN on SourceForge,
you have also to checkout the Maven project: build/poms

Here is the complete url of that project
http://sourceforge.net/p/logicaldoc/cod ... oms/trunk/

Then you should enter into the folder build/poms
and perform the command mvn install

See also the README.txt attached to the source distrib of LD CE 6.8.4
http://sourceforge.net/projects/logical ... t/download

Alex