Jump to content
Changes to the Jaspersoft community edition download ×

how i can import jasperserver to myeclipse


Pit77

Recommended Posts

Hi,i want import jasperserver-2.1.0-src.zip to myeclipse.

I have a lot of problems,when i import project to myeclipse i missing library and package,i don't know why??who can help me.

I use:FILE IMPORT GENERAL-Existing project into workspace and after select archive file.

It's import project but missing library and some puckage..

Why???

Pleas help me..

Thank you!!

 

Post edited by: Pit77, at: 2008/03/05 10:59

Post edited by: Pit77, at: 2008/03/05 12:34

Link to comment
Share on other sites

  • Replies 5
  • Created
  • Last Reply

Top Posters In This Topic

There is a developers guide that talks about how to develop and compile JasperServer. It uses Maven as a build system.

 

The free Eclipse Maven plugin is buggy and often does not work. You could compile JasperServer on the command line and then include the libraries that are in <user.home>/.m2/repository into your Eclipse build path.

 

 

Sherman

JasperSoft

Link to comment
Share on other sites

Make sure and double-check you .m2/settings.xml file.

 

There is an example settings.xml mentioned in the jasperserver source build doc.

 

I have seen this error before when the maven plugin repository setting does not point to a good location.

 

Here is one that should work:

 

<pluginRepositories>

<pluginRepository>

<id>Maven Snapshots</id>

<url>http://snapshots.maven.codehaus.org</url>

<snapshots>

<enabled>true</enabled>

</snapshots>

<releases>

<enabled>false</enabled>

</releases>

</pluginRepository>

<pluginRepository>

<id>codehaus-plugins</id>

<url>http://dist.codehaus.org/</url>

<snapshots>

<enabled>true</enabled>

</snapshots>

<releases>

<enabled>true</enabled>

</releases>

</pluginRepository>

</pluginRepositories>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...