Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 7.10.0 #567

Merged
merged 5 commits into from
Apr 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Change Log
====

## 7.10.0

Supported Metrics:

| Plugin | Dependency |
| ------------- | ------------- |
| TestNG for Eclipse | Eclipse Photon (4.8) or above |
| TestNG M2E Integration (Optional) | M2E 1.5 or above |
| Java | 11.0 or above |

* update testng-remote to 1.7.0
* update testng-p2 to 7.10.1

## 7.9.0

Supported Metrics:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Plugin Version | Online Update-Site | Zipped Update-Site
LATEST RELEASE | `https://testng.org/testng-eclipse-update-site` | [here](https://testng.org/testng-eclipse-update-site)
LATEST BETA | `https://testng.org/testng-eclipse-update-site` | [here](https://testng.org/testng-eclipse-update-site)
History:||
7.10.0.202404131040 | `https://testng.org/testng-eclipse-update-site/7.10.0/` | [download](https://testng.org/testng-eclipse-update-site/zipped/7.10.0.202404131040/org.testng.eclipse.updatesite.zip)
7.9.0.202312310355 | `https://testng.org/testng-eclipse-update-site/7.9.0/` | [download](https://testng.org/testng-eclipse-update-site/zipped/7.9.0.202312310355/org.testng.eclipse.updatesite.zip)
7.8.0.202308061717 | `https://testng.org/testng-eclipse-update-site/7.8.0/` | [download](https://testng.org/testng-eclipse-update-site/zipped/7.8.0.202308061717/org.testng.eclipse.updatesite.zip)
7.4.0.202106051955 | `https://testng.org/testng-eclipse-update-site/7.4.0/` | [download](https://testng.org/testng-eclipse-update-site/zipped/7.4.0.202106051955/org.testng.eclipse.updatesite.zip)
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
<!-- testng-p2 beta -->
<!-- <url>https://dl.bintray.com/testng-team/testng-p2/7.0.0/</url> -->
<!-- testng-p2 release -->
<url>https://testng.org/testng-p2-update-site/7.9.0/</url>
<url>https://testng.org/testng-p2-update-site/7.10.1/</url>
</repository>
<repository>
<snapshots />
Expand Down
Binary file modified testng-eclipse-plugin/lib/testng-remote.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion testng-eclipse-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<packaging>eclipse-plugin</packaging>

<properties>
<testng.remote.version>1.6.0</testng.remote.version>
<testng.remote.version>1.7.0</testng.remote.version>
</properties>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ protected VMRunnerConfiguration createVMRunner(
switch (protocol) {
case STRING:
p("Using the string protocol");
argv.add(CommandLineArgs.PORT);
argv.add(RemoteArgs.PORT);
break;
case OBJECT:
p("Using the object serialization protocol");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import org.testng.eclipse.TestNGPlugin;
import org.testng.eclipse.util.Utils;
import org.testng.internal.Yaml;
import org.testng.xml.Parser;
import org.testng.xml.internal.Parser;
import org.testng.xml.XmlSuite;
import org.xml.sax.SAXException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import org.testng.remote.RemoteTestNG;
import org.testng.reporters.XMLStringBuffer;
import org.testng.xml.LaunchSuite;
import org.testng.xml.Parser;
import org.testng.xml.internal.Parser;
import org.testng.xml.XmlMethodSelector;
import org.testng.xml.XmlSuite;

Expand Down Expand Up @@ -173,7 +173,7 @@ private void createXmlFileFromTemplate(XMLStringBuffer suiteBuffer, String fileN
// them in the suite we are creating.
Properties attr = new Properties();
put(attr, "name", s.getName());
put(attr, "junit", s.isJUnit());
// put(attr, "junit", s.isJUnit());
put(attr, "verbose", s.getVerbose());
put(attr, "parallel", s.getParallel());
put(attr, "thread-count", s.getThreadCount());
Expand All @@ -182,7 +182,7 @@ private void createXmlFileFromTemplate(XMLStringBuffer suiteBuffer, String fileN
put(attr, "skipfailedinvocationcounts", s.skipFailedInvocationCounts());
put(attr, "configfailurepolicy", s.getConfigFailurePolicy());
put(attr, "data-provider-thread-count", s.getDataProviderThreadCount());
put(attr, "object-factory", s.getObjectFactory());
put(attr, "object-factory", s.getObjectFactoryClass());
put(attr, "allow-return-values", s.getAllowReturnValues());
put(attr, "preserve-order", s.getPreserveOrder());
put(attr, "group-by-instances", s.getGroupByInstances());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import org.testng.eclipse.util.signature.IMethodDescriptor;
import org.testng.eclipse.util.signature.MethodDescriptor;
import org.testng.reporters.XMLStringBuffer;
import org.testng.xml.Parser;
import org.testng.xml.internal.Parser;

/**
* Utility class that builds a temporary suite definition file.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;

import org.testng.xml.Parser;
import org.xml.sax.Attributes;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import org.testng.eclipse.TestNGPlugin;
import org.testng.eclipse.TestNGPluginConstants;
import org.testng.eclipse.ui.util.SuiteListSelectionDialog;
import org.testng.xml.Parser;
import org.testng.xml.internal.Parser;
import org.xml.sax.Attributes;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
Expand Down
Loading