Jose Gonzalez Gomez wrote:

Hi,

When I try to use Maven2 including Hibernate 3.0.5 as a dependency the
build process stops due to some missing dependencies
(javax.transaction:jta:1.0.1B:jar, javax.security:jacc:1.0:jar, ...).
I'm using only the default repository (http://repo1.maven.org/maven2)
and I guess those jars cannot be included there due to some licensing
restrictions from Sun, although they have their corresponding POM. The
question is, what am I supposed to do with those jars? Should I
download them from Sun and copy them into my local repository? Should
the whole development team do the same?

Thanks in advance, best regards
Jose

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Hi

after you download the jars, you can use the following command to install it to your repository

m2 install:install-file \
    -DgroupId=<groupId> \
    -DartifactId=<artifactId> \
    -Dversion=<version> \
    -Dpackaging=<packageType> \
    -Dfile=<path-to-file>

note: this command is just a single line.

Regards,
allan

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to