Letractively / webpasswordsafe

Automatically exported from code.google.com/p/webpasswordsafe
0 stars 0 forks source link

Maven Build Problem #101

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Checkout current version from SVN
2. Build: mvn install

What is the expected output? What do you see instead?

Missing dependencies, for example trove 2.0.4

What version of the product are you using? On what operating system?
V1.4, on Linux, using Maven 3.0.3, Java 1.6

Please provide any additional information below.

This can be fixed by adding an additional Repository to the pom.xml file:

  <repository>
    <id>jboss-deprecated-repository-group</id>
    <name>JBoss Deprecated Repository Group</name>
    <url>https://repository.jboss.org/nexus/content/repositories/deprecated</url>
  </repository>

I guess updating the versions of the dependencies might also help.

Original issue reported on code.google.com by martinal...@gmail.com on 1 Nov 2013 at 5:54

GoogleCodeExporter commented 8 years ago
Some more informations:

com.extjs.gxt is also missing. I was able to fix this by setting the version to:
<gxt.version>2.3.1-gwt22</gxt.version>

To fix the missing Trove dependency, I had to lift the version of trove 2.1.1. 
(and adding the additional repository as stated above)

Original comment by martinal...@gmail.com on 1 Nov 2013 at 6:04

GoogleCodeExporter commented 8 years ago
This is actually covered in step 9 of the Environment Setup section of the 
Admin Guide:

http://webpasswordsafe.googlecode.com/svn/trunk/docs/AdministratorGuide.html

Original comment by gallaghe...@gmail.com on 15 Nov 2013 at 5:11