Ajoo123 wrote:
> 
> [...]
> org.apache.maven.artifact.resolver.MultipleArtifactsNotFoundException:
> Missing:
> ----------
> 1) javax.transaction:jta:jar:1.0.1B
> 

You don't need to upload jta to your own repository. 
jta is available from Java.net Maven2 repository at
http://download.java.net/maven/2/javax/transaction/jta/

Put this in your pom.xml (or even better in your settings.xml):

               <repository>
                    <id>maven2-repository.dev.java.net</id>
                    <name>Java.net Repository for Maven 2</name>
                    <url>http://download.java.net/maven/2</url>
                    <releases>
                        <enabled>true</enabled>
                    </releases>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                </repository>

-- 
View this message in context: 
http://n2.nabble.com/How-to-resolve-this-javax-transaction-jta-jar-1-0-1B-error-tp4623495p4625005.html
Sent from the maven users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to