1

I am trying to build jahia from source for a project at school. From the instructions online, all I seem to find to run is

maven install

which fails... any help would be much appreciated.

Pascal Thivent
  • 562,542
  • 136
  • 1,062
  • 1,124
user143062
  • 31
  • 2
  • A bit more information would be helpfull. maven is a maven 1 build command mvn is the maven 2 build command Could you - add the output and - if you have a pom.xml use mvn (maven2) ? – extraneon Jul 28 '09 at 08:08

1 Answers1

0

Jahia is a Maven 2 project, the command you posted, "maven install", is the command for building with Maven 1.

To use Maven 2, you need to run the "mvn install" command. For details on installing Maven 2 check out the installation section of the Maven book.

The Jahia pom defines a repositories section, so should be able to access all the required dependencies.

If you have problems running the mvn command, please update your question with the build trace.

Rich Seller
  • 83,208
  • 23
  • 172
  • 177