You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by leopupo <le...@gmail.com> on 2008/08/19 05:40:55 UTC

Error in maven dependencies

I´m trying to add hibernate dependencies in my pom.xml, but it returns the
following message:
Error message: Missing:
----------
1) javax.transaction:jta:jar:1.0.1B

So, i downloaded it and included it in my .m2\repository path, but it still
returns the same error message and i can´t build my project.
Can anyone help me?

-- 
View this message in context: http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19043864.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Error in maven dependencies

Posted by leopupo <le...@gmail.com>.
I copied the jta jar file to my C: folder and installed this way:
mvn install:install-file -DgroupId=javax.transaction -DartifactId=jta
-Dpackaging=jar -Dversion=1.0.1B
-Dfile=C:/jta-1.0.1B.jar

When trying to append the hibernate dependency to pom.xml, the following
message appears:

Error message: Missing:
----------
1) javax.transaction:jta:jar:1.0.1B

  Try downloading the file manually from: 
      http://java.sun.com/products/jta

  Then, install it using the command: 
      mvn install:install-file -DgroupId=javax.transaction -DartifactId=jta
-Dversion=1.0.1B -Dpackaging=jar -Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file
there: 
      mvn deploy:deploy-file -DgroupId=javax.transaction -DartifactId=jta
-Dversion=1.0.1B -Dpackaging=jar -Dfile=/path/to/file -Durl=[url]
-DrepositoryId=[id]

  Path to dependency: 
  	1) com.leo:teste:jar:1.0-SNAPSHOT
  	2) org.hibernate:hibernate:jar:3.2.6.ga
  	3) javax.transaction:jta:jar:1.0.1B

----------
1 required artifact is missing.





Wayne Fay wrote:
> 
> The -Dfile= bit is wrong. By specifying it that way, you are writing
> the file to the same place you are reading it from. The jar might even
> be corrupt now -- check it with Winzip.
> 
> Instead, put the file in say c:/temp and specify
> -Dfile=C:/temp/jta-1.0.1B.jar. Then Maven will copy it to the proper
> directory in the repository.
> 
> Also, you probably want to specify -DgeneratePom=true so a pom file is
> generated.
> 
> Wayne
> 
> On 8/21/08, lbp <le...@yahoo.com.br> wrote:
>>
>> It was exactly that command:
>>
>> mvn install:install-file -DgroupId=javax.transaction -DartifactId=jta
>> -Dpackaging=jar -Dversion=1.0.1B
>> -Dfile=C:/.m2/repository/javax/transaction/jta/1.0.1B/jta-1.0.1B.jar
>>
>> Is that right, isn´t ?
>>
>>
>>
>> Nick Stolwijk-4 wrote:
>> >
>> > And what command did you exactly execute?
>> >
>> > It should be mvn install:install-file -DgroupId=javax.transaction
>> > -DartifactId=jta -Dpackaging=jar -Dversion=1.0.1B
>> > -Dfile=<your-jar-filename>
>> >
>> > Hth,
>> >
>> > Nick Stolwijk
>> > ~Java Developer~
>> >
>> > Iprofs BV.
>> > Claus Sluterweg 125
>> > 2012 WS Haarlem
>> > www.iprofs.nl
>> >
>> >
>> >
>> > On Thu, Aug 21, 2008 at 4:02 AM, leopupo <le...@gmail.com> wrote:
>> >>
>> >> I installed the jar file into the repository using mvn install like
>> >> specified
>> >> in
>> >>
>> http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html
>> >> When trying to install or package the project, the following error
>> >> message
>> >> is still there:
>> >>>
>> >>> The error message is:
>> >>> Error message: Missing:
>> >>> > ----------
>> >>> > 1) javax.transaction:jta:jar:1.0.1B
>> >>>
>> >>> It´s missing the jar file.
>> >>
>> >>
>> >> It looks like maven does not recognize the jar file already installed
>> in
>> >> my
>> >> repository.
>> >>
>> >>
>> >>
>> >> Wayne Fay wrote:
>> >>>
>> >>> The complaint "does not work" is not sufficient data to provide
>> >>> assistance. Be more specific if you expect help on this list.
>> >>>
>> >>> What did you do, what happened vs what you thought would happen, copy
>> >>> and paste any errors or exceptions, etc.
>> >>>
>> >>> Wayne
>> >>>
>> >>> On 8/19/08, leopupo <le...@gmail.com> wrote:
>> >>>>
>> >>>> I've already installed the jar file into the repository using mvn
>> >>>> install,
>> >>>> but it does not work.
>> >>>>
>> >>>>
>> >>>>
>> >>>> Nick Stolwijk-4 wrote:
>> >>>> >
>> >>>> > Try to use the mvn install:install-file command instead of
>> copying.
>> >>>> [1]
>> >>>> > Make
>> >>>> > sure you specify the right groupId, ArtifactId and version
>> >>>> > (javax.transaction:jta:jar:1.0.1B)
>> >>>> >
>> >>>> > [1]
>> >>>> >
>> >>>>
>> http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html
>> >>>> >
>> >>>> > Hth,
>> >>>> >
>> >>>> > Nick Stolwijk
>> >>>> > ~Java Developer~
>> >>>> >
>> >>>> > Iprofs BV.
>> >>>> > Claus Sluterweg 125
>> >>>> > 2012 WS Haarlem
>> >>>> > www.iprofs.nl
>> >>>> >
>> >>>> >
>> >>>> > On Tue, Aug 19, 2008 at 1:05 PM, lbp
>> <le...@yahoo.com.br>
>> >>>> > wrote:
>> >>>> >
>> >>>> >>
>> >>>> >> The error message is:
>> >>>> >> Error message: Missing:
>> >>>> >> > ----------
>> >>>> >> > 1) javax.transaction:jta:jar:1.0.1B
>> >>>> >>
>> >>>> >> It´s missing the jar file.
>> >>>> >>
>> >>>> >> I installed it in the repo just copying and pasting the jar file
>> >>>> >> (jta-1.01B.jar it in the repo).
>> >>>> >>
>> >>>> >>
>> >>>> >>
>> >>>> >>
>> >>>> >> Wayne Fay wrote:
>> >>>> >> >
>> >>>> >> > What is the exact error message? Are you missing the jar file,
>> or
>> >>>> the
>> >>>> >> pom?
>> >>>> >> >
>> >>>> >> > How did you install it into the repo? (Copy and paste the
>> command
>> >>>> line
>> >>>> >> > you used.)
>> >>>> >> >
>> >>>> >> > Wayne
>> >>>> >> >
>> >>>> >> > On 8/18/08, leopupo <le...@gmail.com> wrote:
>> >>>> >> >>
>> >>>> >> >> I´m trying to add hibernate dependencies in my pom.xml, but it
>> >>>> returns
>> >>>> >> >> the
>> >>>> >> >> following message:
>> >>>> >> >> Error message: Missing:
>> >>>> >> >> ----------
>> >>>> >> >> 1) javax.transaction:jta:jar:1.0.1B
>> >>>> >> >>
>> >>>> >> >> So, i downloaded it and included it in my .m2\repository path,
>> >>>> but
>> >>>> it
>> >>>> >> >> still
>> >>>> >> >> returns the same error message and i can´t build my project.
>> >>>> >> >> Can anyone help me?
>> >>>> >> >>
>> >>>> >> >> --
>> >>>> >> >> View this message in context:
>> >>>> >> >>
>> >>>> >>
>> >>>>
>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19043864.html
>> >>>> >> >> Sent from the Maven - Users mailing list archive at
>> Nabble.com.
>> >>>> >> >>
>> >>>> >> >>
>> >>>> >> >>
>> >>>>
>> ---------------------------------------------------------------------
>> >>>> >> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> >>>> >> >> For additional commands, e-mail: users-help@maven.apache.org
>> >>>> >> >>
>> >>>> >> >>
>> >>>> >> >
>> >>>> >> >
>> >>>> >>
>> >>>> >> --
>> >>>> >> View this message in context:
>> >>>> >>
>> >>>>
>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19048068.html
>> >>>> >> Sent from the Maven - Users mailing list archive at Nabble.com.
>> >>>> >>
>> >>>> >>
>> >>>> >>
>> >>>>
>> ---------------------------------------------------------------------
>> >>>> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> >>>> >> For additional commands, e-mail: users-help@maven.apache.org
>> >>>> >>
>> >>>> >>
>> >>>> >
>> >>>> >
>> >>>>
>> >>>> --
>> >>>> View this message in context:
>> >>>>
>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19062258.html
>> >>>> Sent from the Maven - Users mailing list archive at Nabble.com.
>> >>>>
>> >>>>
>> >>>>
>> ---------------------------------------------------------------------
>> >>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> >>>> For additional commands, e-mail: users-help@maven.apache.org
>> >>>>
>> >>>>
>> >>>
>> >>>
>> >>
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19081289.html
>> >> Sent from the Maven - Users mailing list archive at Nabble.com.
>> >>
>> >>
>> >> ---------------------------------------------------------------------
>> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> >> For additional commands, e-mail: users-help@maven.apache.org
>> >>
>> >>
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19086547.html
>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
> 
> 

-- 
View this message in context: http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19100929.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Error in maven dependencies

Posted by Wayne Fay <wa...@gmail.com>.
The -Dfile= bit is wrong. By specifying it that way, you are writing
the file to the same place you are reading it from. The jar might even
be corrupt now -- check it with Winzip.

Instead, put the file in say c:/temp and specify
-Dfile=C:/temp/jta-1.0.1B.jar. Then Maven will copy it to the proper
directory in the repository.

Also, you probably want to specify -DgeneratePom=true so a pom file is
generated.

Wayne

On 8/21/08, lbp <le...@yahoo.com.br> wrote:
>
> It was exactly that command:
>
> mvn install:install-file -DgroupId=javax.transaction -DartifactId=jta
> -Dpackaging=jar -Dversion=1.0.1B
> -Dfile=C:/.m2/repository/javax/transaction/jta/1.0.1B/jta-1.0.1B.jar
>
> Is that right, isn´t ?
>
>
>
> Nick Stolwijk-4 wrote:
> >
> > And what command did you exactly execute?
> >
> > It should be mvn install:install-file -DgroupId=javax.transaction
> > -DartifactId=jta -Dpackaging=jar -Dversion=1.0.1B
> > -Dfile=<your-jar-filename>
> >
> > Hth,
> >
> > Nick Stolwijk
> > ~Java Developer~
> >
> > Iprofs BV.
> > Claus Sluterweg 125
> > 2012 WS Haarlem
> > www.iprofs.nl
> >
> >
> >
> > On Thu, Aug 21, 2008 at 4:02 AM, leopupo <le...@gmail.com> wrote:
> >>
> >> I installed the jar file into the repository using mvn install like
> >> specified
> >> in
> >> http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html
> >> When trying to install or package the project, the following error
> >> message
> >> is still there:
> >>>
> >>> The error message is:
> >>> Error message: Missing:
> >>> > ----------
> >>> > 1) javax.transaction:jta:jar:1.0.1B
> >>>
> >>> It´s missing the jar file.
> >>
> >>
> >> It looks like maven does not recognize the jar file already installed in
> >> my
> >> repository.
> >>
> >>
> >>
> >> Wayne Fay wrote:
> >>>
> >>> The complaint "does not work" is not sufficient data to provide
> >>> assistance. Be more specific if you expect help on this list.
> >>>
> >>> What did you do, what happened vs what you thought would happen, copy
> >>> and paste any errors or exceptions, etc.
> >>>
> >>> Wayne
> >>>
> >>> On 8/19/08, leopupo <le...@gmail.com> wrote:
> >>>>
> >>>> I've already installed the jar file into the repository using mvn
> >>>> install,
> >>>> but it does not work.
> >>>>
> >>>>
> >>>>
> >>>> Nick Stolwijk-4 wrote:
> >>>> >
> >>>> > Try to use the mvn install:install-file command instead of copying.
> >>>> [1]
> >>>> > Make
> >>>> > sure you specify the right groupId, ArtifactId and version
> >>>> > (javax.transaction:jta:jar:1.0.1B)
> >>>> >
> >>>> > [1]
> >>>> >
> >>>> http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html
> >>>> >
> >>>> > Hth,
> >>>> >
> >>>> > Nick Stolwijk
> >>>> > ~Java Developer~
> >>>> >
> >>>> > Iprofs BV.
> >>>> > Claus Sluterweg 125
> >>>> > 2012 WS Haarlem
> >>>> > www.iprofs.nl
> >>>> >
> >>>> >
> >>>> > On Tue, Aug 19, 2008 at 1:05 PM, lbp <le...@yahoo.com.br>
> >>>> > wrote:
> >>>> >
> >>>> >>
> >>>> >> The error message is:
> >>>> >> Error message: Missing:
> >>>> >> > ----------
> >>>> >> > 1) javax.transaction:jta:jar:1.0.1B
> >>>> >>
> >>>> >> It´s missing the jar file.
> >>>> >>
> >>>> >> I installed it in the repo just copying and pasting the jar file
> >>>> >> (jta-1.01B.jar it in the repo).
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> >> Wayne Fay wrote:
> >>>> >> >
> >>>> >> > What is the exact error message? Are you missing the jar file, or
> >>>> the
> >>>> >> pom?
> >>>> >> >
> >>>> >> > How did you install it into the repo? (Copy and paste the command
> >>>> line
> >>>> >> > you used.)
> >>>> >> >
> >>>> >> > Wayne
> >>>> >> >
> >>>> >> > On 8/18/08, leopupo <le...@gmail.com> wrote:
> >>>> >> >>
> >>>> >> >> I´m trying to add hibernate dependencies in my pom.xml, but it
> >>>> returns
> >>>> >> >> the
> >>>> >> >> following message:
> >>>> >> >> Error message: Missing:
> >>>> >> >> ----------
> >>>> >> >> 1) javax.transaction:jta:jar:1.0.1B
> >>>> >> >>
> >>>> >> >> So, i downloaded it and included it in my .m2\repository path,
> >>>> but
> >>>> it
> >>>> >> >> still
> >>>> >> >> returns the same error message and i can´t build my project.
> >>>> >> >> Can anyone help me?
> >>>> >> >>
> >>>> >> >> --
> >>>> >> >> View this message in context:
> >>>> >> >>
> >>>> >>
> >>>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19043864.html
> >>>> >> >> Sent from the Maven - Users mailing list archive at Nabble.com.
> >>>> >> >>
> >>>> >> >>
> >>>> >> >>
> >>>> ---------------------------------------------------------------------
> >>>> >> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >>>> >> >> For additional commands, e-mail: users-help@maven.apache.org
> >>>> >> >>
> >>>> >> >>
> >>>> >> >
> >>>> >> >
> >>>> >>
> >>>> >> --
> >>>> >> View this message in context:
> >>>> >>
> >>>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19048068.html
> >>>> >> Sent from the Maven - Users mailing list archive at Nabble.com.
> >>>> >>
> >>>> >>
> >>>> >>
> >>>> ---------------------------------------------------------------------
> >>>> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >>>> >> For additional commands, e-mail: users-help@maven.apache.org
> >>>> >>
> >>>> >>
> >>>> >
> >>>> >
> >>>>
> >>>> --
> >>>> View this message in context:
> >>>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19062258.html
> >>>> Sent from the Maven - Users mailing list archive at Nabble.com.
> >>>>
> >>>>
> >>>> ---------------------------------------------------------------------
> >>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >>>> For additional commands, e-mail: users-help@maven.apache.org
> >>>>
> >>>>
> >>>
> >>>
> >>
> >> --
> >> View this message in context:
> >> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19081289.html
> >> Sent from the Maven - Users mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> For additional commands, e-mail: users-help@maven.apache.org
> >>
> >>
> >
> >
>
> --
> View this message in context: http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19086547.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: where should I create this class file?

Posted by Tobias Gierke <to...@code-sourcery.de>.
Hi,

I suggest you post your java-related questions at 
http://www.javaranch.com , this is way off-topic.

Regards,

Tobias

P.S. The answer is

src
|
+---- command
|          |
|          +---- CreateCustomer.java
|          |
|          +---- ....
+---- domain
           |
           +---- Order.java
           |
           +---- Customer.java
> Hi,
>
>
>
> Sorry I post a java question in this mailing list. I know you guys know the 
> answer.
>
>
>
> I want to create a class"domain.Customer", and "domain.Order" so that the 
> other class can useimport statement to reference this 2 classes.
>
> eg. import domain.Customer;
>
>       import domain.Order;
>
>
>
> Where in my windows directory create the class file Customer.java and 
> Order.java file?
>
> The following shown the project DBTest I have created in Eclipse (3.4).
>
>
>
> d:\workspace\DBTest>dir
>  Volume in drive D has no label.
>  Volume Serial Number is 401A-FB2E
>
>  Directory of d:\workspace\DBTest
>
> 20/08/2008  09:58 PM    <DIR>          .
> 20/08/2008  09:58 PM    <DIR>          ..
> 20/08/2008  09:58 PM               618 .classpath
> 20/08/2008  09:58 PM             1,039 .project
> 20/08/2008  09:58 PM    <DIR>          .settings
> 20/08/2008  09:58 PM    <DIR>          build
> 21/08/2008  06:22 PM    <DIR>          src
> 20/08/2008  09:58 PM    <DIR>          WebContent
>                2 File(s)          1,657 bytes
>                6 Dir(s)  57,258,811,392 bytes free
>
> d:\workspace\DBTest>
>
>
>
> I also created a package name call "command" inside the directory:
>
> d:\workspace\DBTest\src\command>dir
>  Volume in drive D has no label.
>  Volume Serial Number is 401A-FB2E
>
>  Directory of d:\workspace\DBTest\src\command
>
> 21/08/2008  06:22 PM    <DIR>          .
> 21/08/2008  06:22 PM    <DIR>          ..
> 21/08/2008  06:22 PM             1,687 CommandExecutor.java
> 21/08/2008  06:22 PM               815 CreateCustomer.java
> 21/08/2008  06:22 PM               799 CreateOrder.java
> 21/08/2008  06:22 PM               915 DatabaseCommand.java
> 21/08/2008  06:22 PM             1,027 ListCustomerOrders.java
> 21/08/2008  06:22 PM               915 ListCustomers.java
>                6 File(s)          6,158 bytes
>                2 Dir(s)  57,258,811,392 bytes free
>
> d:\workspace\DBTest\src\command>
>
>
>
>
> From the file CreateCustomer.java and CreateOrder.java, I want to *import* 
> domain.Customer and domain.Order.
>
> Where in my windows directory should create the Customer.java and 
> Order.java file?
>
>
>
> Thanks
>
> Sam
>
>   


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


where should I create this class file?

Posted by sam wun <sw...@gmx.com>.
Hi,



Sorry I post a java question in this mailing list. I know you guys know the 
answer.



I want to create a class"domain.Customer", and "domain.Order" so that the 
other class can useimport statement to reference this 2 classes.

eg. import domain.Customer;

      import domain.Order;



Where in my windows directory create the class file Customer.java and 
Order.java file?

The following shown the project DBTest I have created in Eclipse (3.4).



d:\workspace\DBTest>dir
 Volume in drive D has no label.
 Volume Serial Number is 401A-FB2E

 Directory of d:\workspace\DBTest

20/08/2008  09:58 PM    <DIR>          .
20/08/2008  09:58 PM    <DIR>          ..
20/08/2008  09:58 PM               618 .classpath
20/08/2008  09:58 PM             1,039 .project
20/08/2008  09:58 PM    <DIR>          .settings
20/08/2008  09:58 PM    <DIR>          build
21/08/2008  06:22 PM    <DIR>          src
20/08/2008  09:58 PM    <DIR>          WebContent
               2 File(s)          1,657 bytes
               6 Dir(s)  57,258,811,392 bytes free

d:\workspace\DBTest>



I also created a package name call "command" inside the directory:

d:\workspace\DBTest\src\command>dir
 Volume in drive D has no label.
 Volume Serial Number is 401A-FB2E

 Directory of d:\workspace\DBTest\src\command

21/08/2008  06:22 PM    <DIR>          .
21/08/2008  06:22 PM    <DIR>          ..
21/08/2008  06:22 PM             1,687 CommandExecutor.java
21/08/2008  06:22 PM               815 CreateCustomer.java
21/08/2008  06:22 PM               799 CreateOrder.java
21/08/2008  06:22 PM               915 DatabaseCommand.java
21/08/2008  06:22 PM             1,027 ListCustomerOrders.java
21/08/2008  06:22 PM               915 ListCustomers.java
               6 File(s)          6,158 bytes
               2 Dir(s)  57,258,811,392 bytes free

d:\workspace\DBTest\src\command>




>From the file CreateCustomer.java and CreateOrder.java, I want to *import* 
domain.Customer and domain.Order.

Where in my windows directory should create the Customer.java and 
Order.java file?



Thanks

Sam

Re: Error in maven dependencies

Posted by lbp <le...@yahoo.com.br>.
It was exactly that command:

mvn install:install-file -DgroupId=javax.transaction -DartifactId=jta
-Dpackaging=jar -Dversion=1.0.1B
-Dfile=C:/.m2/repository/javax/transaction/jta/1.0.1B/jta-1.0.1B.jar

Is that right, isn´t ?



Nick Stolwijk-4 wrote:
> 
> And what command did you exactly execute?
> 
> It should be mvn install:install-file -DgroupId=javax.transaction
> -DartifactId=jta -Dpackaging=jar -Dversion=1.0.1B
> -Dfile=<your-jar-filename>
> 
> Hth,
> 
> Nick Stolwijk
> ~Java Developer~
> 
> Iprofs BV.
> Claus Sluterweg 125
> 2012 WS Haarlem
> www.iprofs.nl
> 
> 
> 
> On Thu, Aug 21, 2008 at 4:02 AM, leopupo <le...@gmail.com> wrote:
>>
>> I installed the jar file into the repository using mvn install like
>> specified
>> in
>> http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html
>> When trying to install or package the project, the following error
>> message
>> is still there:
>>>
>>> The error message is:
>>> Error message: Missing:
>>> > ----------
>>> > 1) javax.transaction:jta:jar:1.0.1B
>>>
>>> It´s missing the jar file.
>>
>>
>> It looks like maven does not recognize the jar file already installed in
>> my
>> repository.
>>
>>
>>
>> Wayne Fay wrote:
>>>
>>> The complaint "does not work" is not sufficient data to provide
>>> assistance. Be more specific if you expect help on this list.
>>>
>>> What did you do, what happened vs what you thought would happen, copy
>>> and paste any errors or exceptions, etc.
>>>
>>> Wayne
>>>
>>> On 8/19/08, leopupo <le...@gmail.com> wrote:
>>>>
>>>> I've already installed the jar file into the repository using mvn
>>>> install,
>>>> but it does not work.
>>>>
>>>>
>>>>
>>>> Nick Stolwijk-4 wrote:
>>>> >
>>>> > Try to use the mvn install:install-file command instead of copying.
>>>> [1]
>>>> > Make
>>>> > sure you specify the right groupId, ArtifactId and version
>>>> > (javax.transaction:jta:jar:1.0.1B)
>>>> >
>>>> > [1]
>>>> >
>>>> http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html
>>>> >
>>>> > Hth,
>>>> >
>>>> > Nick Stolwijk
>>>> > ~Java Developer~
>>>> >
>>>> > Iprofs BV.
>>>> > Claus Sluterweg 125
>>>> > 2012 WS Haarlem
>>>> > www.iprofs.nl
>>>> >
>>>> >
>>>> > On Tue, Aug 19, 2008 at 1:05 PM, lbp <le...@yahoo.com.br>
>>>> > wrote:
>>>> >
>>>> >>
>>>> >> The error message is:
>>>> >> Error message: Missing:
>>>> >> > ----------
>>>> >> > 1) javax.transaction:jta:jar:1.0.1B
>>>> >>
>>>> >> It´s missing the jar file.
>>>> >>
>>>> >> I installed it in the repo just copying and pasting the jar file
>>>> >> (jta-1.01B.jar it in the repo).
>>>> >>
>>>> >>
>>>> >>
>>>> >>
>>>> >> Wayne Fay wrote:
>>>> >> >
>>>> >> > What is the exact error message? Are you missing the jar file, or
>>>> the
>>>> >> pom?
>>>> >> >
>>>> >> > How did you install it into the repo? (Copy and paste the command
>>>> line
>>>> >> > you used.)
>>>> >> >
>>>> >> > Wayne
>>>> >> >
>>>> >> > On 8/18/08, leopupo <le...@gmail.com> wrote:
>>>> >> >>
>>>> >> >> I´m trying to add hibernate dependencies in my pom.xml, but it
>>>> returns
>>>> >> >> the
>>>> >> >> following message:
>>>> >> >> Error message: Missing:
>>>> >> >> ----------
>>>> >> >> 1) javax.transaction:jta:jar:1.0.1B
>>>> >> >>
>>>> >> >> So, i downloaded it and included it in my .m2\repository path,
>>>> but
>>>> it
>>>> >> >> still
>>>> >> >> returns the same error message and i can´t build my project.
>>>> >> >> Can anyone help me?
>>>> >> >>
>>>> >> >> --
>>>> >> >> View this message in context:
>>>> >> >>
>>>> >>
>>>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19043864.html
>>>> >> >> Sent from the Maven - Users mailing list archive at Nabble.com.
>>>> >> >>
>>>> >> >>
>>>> >> >>
>>>> ---------------------------------------------------------------------
>>>> >> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>> >> >> For additional commands, e-mail: users-help@maven.apache.org
>>>> >> >>
>>>> >> >>
>>>> >> >
>>>> >> >
>>>> >>
>>>> >> --
>>>> >> View this message in context:
>>>> >>
>>>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19048068.html
>>>> >> Sent from the Maven - Users mailing list archive at Nabble.com.
>>>> >>
>>>> >>
>>>> >>
>>>> ---------------------------------------------------------------------
>>>> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>> >> For additional commands, e-mail: users-help@maven.apache.org
>>>> >>
>>>> >>
>>>> >
>>>> >
>>>>
>>>> --
>>>> View this message in context:
>>>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19062258.html
>>>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>> For additional commands, e-mail: users-help@maven.apache.org
>>>>
>>>>
>>>
>>>
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19081289.html
>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
> 
> 

-- 
View this message in context: http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19086547.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Error in maven dependencies

Posted by Nick Stolwijk <ni...@gmail.com>.
And what command did you exactly execute?

It should be mvn install:install-file -DgroupId=javax.transaction
-DartifactId=jta -Dpackaging=jar -Dversion=1.0.1B
-Dfile=<your-jar-filename>

Hth,

Nick Stolwijk
~Java Developer~

Iprofs BV.
Claus Sluterweg 125
2012 WS Haarlem
www.iprofs.nl



On Thu, Aug 21, 2008 at 4:02 AM, leopupo <le...@gmail.com> wrote:
>
> I installed the jar file into the repository using mvn install like specified
> in
> http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html
> When trying to install or package the project, the following error message
> is still there:
>>
>> The error message is:
>> Error message: Missing:
>> > ----------
>> > 1) javax.transaction:jta:jar:1.0.1B
>>
>> It´s missing the jar file.
>
>
> It looks like maven does not recognize the jar file already installed in my
> repository.
>
>
>
> Wayne Fay wrote:
>>
>> The complaint "does not work" is not sufficient data to provide
>> assistance. Be more specific if you expect help on this list.
>>
>> What did you do, what happened vs what you thought would happen, copy
>> and paste any errors or exceptions, etc.
>>
>> Wayne
>>
>> On 8/19/08, leopupo <le...@gmail.com> wrote:
>>>
>>> I've already installed the jar file into the repository using mvn
>>> install,
>>> but it does not work.
>>>
>>>
>>>
>>> Nick Stolwijk-4 wrote:
>>> >
>>> > Try to use the mvn install:install-file command instead of copying. [1]
>>> > Make
>>> > sure you specify the right groupId, ArtifactId and version
>>> > (javax.transaction:jta:jar:1.0.1B)
>>> >
>>> > [1]
>>> >
>>> http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html
>>> >
>>> > Hth,
>>> >
>>> > Nick Stolwijk
>>> > ~Java Developer~
>>> >
>>> > Iprofs BV.
>>> > Claus Sluterweg 125
>>> > 2012 WS Haarlem
>>> > www.iprofs.nl
>>> >
>>> >
>>> > On Tue, Aug 19, 2008 at 1:05 PM, lbp <le...@yahoo.com.br>
>>> > wrote:
>>> >
>>> >>
>>> >> The error message is:
>>> >> Error message: Missing:
>>> >> > ----------
>>> >> > 1) javax.transaction:jta:jar:1.0.1B
>>> >>
>>> >> It´s missing the jar file.
>>> >>
>>> >> I installed it in the repo just copying and pasting the jar file
>>> >> (jta-1.01B.jar it in the repo).
>>> >>
>>> >>
>>> >>
>>> >>
>>> >> Wayne Fay wrote:
>>> >> >
>>> >> > What is the exact error message? Are you missing the jar file, or
>>> the
>>> >> pom?
>>> >> >
>>> >> > How did you install it into the repo? (Copy and paste the command
>>> line
>>> >> > you used.)
>>> >> >
>>> >> > Wayne
>>> >> >
>>> >> > On 8/18/08, leopupo <le...@gmail.com> wrote:
>>> >> >>
>>> >> >> I´m trying to add hibernate dependencies in my pom.xml, but it
>>> returns
>>> >> >> the
>>> >> >> following message:
>>> >> >> Error message: Missing:
>>> >> >> ----------
>>> >> >> 1) javax.transaction:jta:jar:1.0.1B
>>> >> >>
>>> >> >> So, i downloaded it and included it in my .m2\repository path, but
>>> it
>>> >> >> still
>>> >> >> returns the same error message and i can´t build my project.
>>> >> >> Can anyone help me?
>>> >> >>
>>> >> >> --
>>> >> >> View this message in context:
>>> >> >>
>>> >>
>>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19043864.html
>>> >> >> Sent from the Maven - Users mailing list archive at Nabble.com.
>>> >> >>
>>> >> >>
>>> >> >>
>>> ---------------------------------------------------------------------
>>> >> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>> >> >> For additional commands, e-mail: users-help@maven.apache.org
>>> >> >>
>>> >> >>
>>> >> >
>>> >> >
>>> >>
>>> >> --
>>> >> View this message in context:
>>> >>
>>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19048068.html
>>> >> Sent from the Maven - Users mailing list archive at Nabble.com.
>>> >>
>>> >>
>>> >> ---------------------------------------------------------------------
>>> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>> >> For additional commands, e-mail: users-help@maven.apache.org
>>> >>
>>> >>
>>> >
>>> >
>>>
>>> --
>>> View this message in context:
>>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19062258.html
>>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>> For additional commands, e-mail: users-help@maven.apache.org
>>>
>>>
>>
>>
>
> --
> View this message in context: http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19081289.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: Error in maven dependencies

Posted by leopupo <le...@gmail.com>.
I installed the jar file into the repository using mvn install like specified
in
http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html
When trying to install or package the project, the following error message
is still there:
>
> The error message is:
> Error message: Missing:
> > ----------
> > 1) javax.transaction:jta:jar:1.0.1B
>
> It´s missing the jar file. 


It looks like maven does not recognize the jar file already installed in my
repository.



Wayne Fay wrote:
> 
> The complaint "does not work" is not sufficient data to provide
> assistance. Be more specific if you expect help on this list.
> 
> What did you do, what happened vs what you thought would happen, copy
> and paste any errors or exceptions, etc.
> 
> Wayne
> 
> On 8/19/08, leopupo <le...@gmail.com> wrote:
>>
>> I've already installed the jar file into the repository using mvn
>> install,
>> but it does not work.
>>
>>
>>
>> Nick Stolwijk-4 wrote:
>> >
>> > Try to use the mvn install:install-file command instead of copying. [1]
>> > Make
>> > sure you specify the right groupId, ArtifactId and version
>> > (javax.transaction:jta:jar:1.0.1B)
>> >
>> > [1]
>> >
>> http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html
>> >
>> > Hth,
>> >
>> > Nick Stolwijk
>> > ~Java Developer~
>> >
>> > Iprofs BV.
>> > Claus Sluterweg 125
>> > 2012 WS Haarlem
>> > www.iprofs.nl
>> >
>> >
>> > On Tue, Aug 19, 2008 at 1:05 PM, lbp <le...@yahoo.com.br>
>> > wrote:
>> >
>> >>
>> >> The error message is:
>> >> Error message: Missing:
>> >> > ----------
>> >> > 1) javax.transaction:jta:jar:1.0.1B
>> >>
>> >> It´s missing the jar file.
>> >>
>> >> I installed it in the repo just copying and pasting the jar file
>> >> (jta-1.01B.jar it in the repo).
>> >>
>> >>
>> >>
>> >>
>> >> Wayne Fay wrote:
>> >> >
>> >> > What is the exact error message? Are you missing the jar file, or
>> the
>> >> pom?
>> >> >
>> >> > How did you install it into the repo? (Copy and paste the command
>> line
>> >> > you used.)
>> >> >
>> >> > Wayne
>> >> >
>> >> > On 8/18/08, leopupo <le...@gmail.com> wrote:
>> >> >>
>> >> >> I´m trying to add hibernate dependencies in my pom.xml, but it
>> returns
>> >> >> the
>> >> >> following message:
>> >> >> Error message: Missing:
>> >> >> ----------
>> >> >> 1) javax.transaction:jta:jar:1.0.1B
>> >> >>
>> >> >> So, i downloaded it and included it in my .m2\repository path, but
>> it
>> >> >> still
>> >> >> returns the same error message and i can´t build my project.
>> >> >> Can anyone help me?
>> >> >>
>> >> >> --
>> >> >> View this message in context:
>> >> >>
>> >>
>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19043864.html
>> >> >> Sent from the Maven - Users mailing list archive at Nabble.com.
>> >> >>
>> >> >>
>> >> >>
>> ---------------------------------------------------------------------
>> >> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> >> >> For additional commands, e-mail: users-help@maven.apache.org
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >>
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19048068.html
>> >> Sent from the Maven - Users mailing list archive at Nabble.com.
>> >>
>> >>
>> >> ---------------------------------------------------------------------
>> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> >> For additional commands, e-mail: users-help@maven.apache.org
>> >>
>> >>
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19062258.html
>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
> 
> 

-- 
View this message in context: http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19081289.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Error in maven dependencies

Posted by Wayne Fay <wa...@gmail.com>.
The complaint "does not work" is not sufficient data to provide
assistance. Be more specific if you expect help on this list.

What did you do, what happened vs what you thought would happen, copy
and paste any errors or exceptions, etc.

Wayne

On 8/19/08, leopupo <le...@gmail.com> wrote:
>
> I've already installed the jar file into the repository using mvn install,
> but it does not work.
>
>
>
> Nick Stolwijk-4 wrote:
> >
> > Try to use the mvn install:install-file command instead of copying. [1]
> > Make
> > sure you specify the right groupId, ArtifactId and version
> > (javax.transaction:jta:jar:1.0.1B)
> >
> > [1]
> > http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html
> >
> > Hth,
> >
> > Nick Stolwijk
> > ~Java Developer~
> >
> > Iprofs BV.
> > Claus Sluterweg 125
> > 2012 WS Haarlem
> > www.iprofs.nl
> >
> >
> > On Tue, Aug 19, 2008 at 1:05 PM, lbp <le...@yahoo.com.br>
> > wrote:
> >
> >>
> >> The error message is:
> >> Error message: Missing:
> >> > ----------
> >> > 1) javax.transaction:jta:jar:1.0.1B
> >>
> >> It´s missing the jar file.
> >>
> >> I installed it in the repo just copying and pasting the jar file
> >> (jta-1.01B.jar it in the repo).
> >>
> >>
> >>
> >>
> >> Wayne Fay wrote:
> >> >
> >> > What is the exact error message? Are you missing the jar file, or the
> >> pom?
> >> >
> >> > How did you install it into the repo? (Copy and paste the command line
> >> > you used.)
> >> >
> >> > Wayne
> >> >
> >> > On 8/18/08, leopupo <le...@gmail.com> wrote:
> >> >>
> >> >> I´m trying to add hibernate dependencies in my pom.xml, but it returns
> >> >> the
> >> >> following message:
> >> >> Error message: Missing:
> >> >> ----------
> >> >> 1) javax.transaction:jta:jar:1.0.1B
> >> >>
> >> >> So, i downloaded it and included it in my .m2\repository path, but it
> >> >> still
> >> >> returns the same error message and i can´t build my project.
> >> >> Can anyone help me?
> >> >>
> >> >> --
> >> >> View this message in context:
> >> >>
> >> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19043864.html
> >> >> Sent from the Maven - Users mailing list archive at Nabble.com.
> >> >>
> >> >>
> >> >> ---------------------------------------------------------------------
> >> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> >> For additional commands, e-mail: users-help@maven.apache.org
> >> >>
> >> >>
> >> >
> >> >
> >>
> >> --
> >> View this message in context:
> >> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19048068.html
> >> Sent from the Maven - Users mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> For additional commands, e-mail: users-help@maven.apache.org
> >>
> >>
> >
> >
>
> --
> View this message in context: http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19062258.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: Error in maven dependencies

Posted by leopupo <le...@gmail.com>.
I've already installed the jar file into the repository using mvn install,
but it does not work.



Nick Stolwijk-4 wrote:
> 
> Try to use the mvn install:install-file command instead of copying. [1]
> Make
> sure you specify the right groupId, ArtifactId and version
> (javax.transaction:jta:jar:1.0.1B)
> 
> [1]
> http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html
> 
> Hth,
> 
> Nick Stolwijk
> ~Java Developer~
> 
> Iprofs BV.
> Claus Sluterweg 125
> 2012 WS Haarlem
> www.iprofs.nl
> 
> 
> On Tue, Aug 19, 2008 at 1:05 PM, lbp <le...@yahoo.com.br>
> wrote:
> 
>>
>> The error message is:
>> Error message: Missing:
>> > ----------
>> > 1) javax.transaction:jta:jar:1.0.1B
>>
>> It´s missing the jar file.
>>
>> I installed it in the repo just copying and pasting the jar file
>> (jta-1.01B.jar it in the repo).
>>
>>
>>
>>
>> Wayne Fay wrote:
>> >
>> > What is the exact error message? Are you missing the jar file, or the
>> pom?
>> >
>> > How did you install it into the repo? (Copy and paste the command line
>> > you used.)
>> >
>> > Wayne
>> >
>> > On 8/18/08, leopupo <le...@gmail.com> wrote:
>> >>
>> >> I´m trying to add hibernate dependencies in my pom.xml, but it returns
>> >> the
>> >> following message:
>> >> Error message: Missing:
>> >> ----------
>> >> 1) javax.transaction:jta:jar:1.0.1B
>> >>
>> >> So, i downloaded it and included it in my .m2\repository path, but it
>> >> still
>> >> returns the same error message and i can´t build my project.
>> >> Can anyone help me?
>> >>
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19043864.html
>> >> Sent from the Maven - Users mailing list archive at Nabble.com.
>> >>
>> >>
>> >> ---------------------------------------------------------------------
>> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> >> For additional commands, e-mail: users-help@maven.apache.org
>> >>
>> >>
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19048068.html
>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
> 
> 

-- 
View this message in context: http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19062258.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Error in maven dependencies

Posted by Nick Stolwijk <ni...@gmail.com>.
Try to use the mvn install:install-file command instead of copying. [1] Make
sure you specify the right groupId, ArtifactId and version
(javax.transaction:jta:jar:1.0.1B)

[1]
http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html

Hth,

Nick Stolwijk
~Java Developer~

Iprofs BV.
Claus Sluterweg 125
2012 WS Haarlem
www.iprofs.nl


On Tue, Aug 19, 2008 at 1:05 PM, lbp <le...@yahoo.com.br> wrote:

>
> The error message is:
> Error message: Missing:
> > ----------
> > 1) javax.transaction:jta:jar:1.0.1B
>
> It´s missing the jar file.
>
> I installed it in the repo just copying and pasting the jar file
> (jta-1.01B.jar it in the repo).
>
>
>
>
> Wayne Fay wrote:
> >
> > What is the exact error message? Are you missing the jar file, or the
> pom?
> >
> > How did you install it into the repo? (Copy and paste the command line
> > you used.)
> >
> > Wayne
> >
> > On 8/18/08, leopupo <le...@gmail.com> wrote:
> >>
> >> I´m trying to add hibernate dependencies in my pom.xml, but it returns
> >> the
> >> following message:
> >> Error message: Missing:
> >> ----------
> >> 1) javax.transaction:jta:jar:1.0.1B
> >>
> >> So, i downloaded it and included it in my .m2\repository path, but it
> >> still
> >> returns the same error message and i can´t build my project.
> >> Can anyone help me?
> >>
> >> --
> >> View this message in context:
> >>
> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19043864.html
> >> Sent from the Maven - Users mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >> For additional commands, e-mail: users-help@maven.apache.org
> >>
> >>
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19048068.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: Error in maven dependencies

Posted by lbp <le...@yahoo.com.br>.
The error message is:
Error message: Missing:
> ----------
> 1) javax.transaction:jta:jar:1.0.1B

It´s missing the jar file.

I installed it in the repo just copying and pasting the jar file
(jta-1.01B.jar it in the repo).




Wayne Fay wrote:
> 
> What is the exact error message? Are you missing the jar file, or the pom?
> 
> How did you install it into the repo? (Copy and paste the command line
> you used.)
> 
> Wayne
> 
> On 8/18/08, leopupo <le...@gmail.com> wrote:
>>
>> I´m trying to add hibernate dependencies in my pom.xml, but it returns
>> the
>> following message:
>> Error message: Missing:
>> ----------
>> 1) javax.transaction:jta:jar:1.0.1B
>>
>> So, i downloaded it and included it in my .m2\repository path, but it
>> still
>> returns the same error message and i can´t build my project.
>> Can anyone help me?
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19043864.html
>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
> 
> 

-- 
View this message in context: http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19048068.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Error in maven dependencies

Posted by Wayne Fay <wa...@gmail.com>.
What is the exact error message? Are you missing the jar file, or the pom?

How did you install it into the repo? (Copy and paste the command line
you used.)

Wayne

On 8/18/08, leopupo <le...@gmail.com> wrote:
>
> I´m trying to add hibernate dependencies in my pom.xml, but it returns the
> following message:
> Error message: Missing:
> ----------
> 1) javax.transaction:jta:jar:1.0.1B
>
> So, i downloaded it and included it in my .m2\repository path, but it still
> returns the same error message and i can´t build my project.
> Can anyone help me?
>
> --
> View this message in context: http://www.nabble.com/Error-in-maven-dependencies-tp19043864p19043864.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>