Hi

There are two artifacts, both with classifiers.
Your declaration should look like:

<dependency>
   <groupId>org.testng</groupId>
   <artifactId>testng</artifactId>
   <version>5.1</version>
   <classifier>jdk14</classifier>
   <scope>test</scope>
</dependency>

or

<dependency>
   <groupId>org.testng</groupId>
   <artifactId>testng</artifactId>
   <version>5.1</version>
   <classifier>jdk15</classifier>
   <scope>test</scope>
</dependency>

Greetings

Grzegorz Slowikowski


José Pacheco pisze:
Hello all,

I’m using testng version 5.1 in one project, but maven says that can not
find the dependency, and I now the dependency is available in mvn
repository.

How can I solve the problem?

The declaration is as follows:

<dependency>

    <groupId>org.testng</groupId>

    <artifactId>testng</artifactId>

    <version>5.1</version>

    <scope>test</scope>

</dependency>

Regards,

José Pacheco.



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

Reply via email to