How to install TestNG eclipse plugin offline?

Anyone can help?

I'm having problems, the file that I downloaded from the site in the dropins folder is already unpacked, but nothing happens!

I CANNOT use the internet to install this due to some very stupid proxy rules.

+3
source share
1 answer

If you can load testng plugins, create a structure similar to this in your dropins directory

/path/to/mydropins
      testng-eclipse-x.y/
         eclipse/
            features
               org.testng.eclipse_x.y.z.jar
            plugins/
               org.testng.eclipse_x.y.z.jar

With path/to/mydropins'a shared repository repository specified in eclipse.iniwith:

-Dorg.eclipse.equinox.p2.reconciler.dropins.directory=/<myPath>/mySharedDropins

You need to copy both:

+2

Source: https://habr.com/ru/post/1795507/


All Articles