Skip to content

Commit 86f8b88

Browse files
authored
Executor [commons-exec] is a ubiquitous dependency (#222)
1 parent 30d6dd4 commit 86f8b88

File tree

18 files changed

+9
-24
lines changed

18 files changed

+9
-24
lines changed

src/selenium2/java/com/nordstrom/automation/selenium/SeleniumConfig.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ public class SeleniumConfig extends AbstractSeleniumConfig {
169169
"javax.servlet.http.HttpServlet",
170170
"org.openqa.jetty.util.MultiException",
171171
"org.openqa.selenium.support.events.WebDriverEventListener",
172-
"ch.qos.logback.classic.spi.ThrowableProxy"
172+
"ch.qos.logback.classic.spi.ThrowableProxy",
173+
"org.apache.commons.exec.Executor"
173174
};
174175

175176
static {

src/selenium2/java/com/nordstrom/automation/selenium/plugins/ChromePlugin.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ public ChromePlugin() {
2121
*/
2222
private static final String[] DEPENDENCY_CONTEXTS = {
2323
"org.openqa.selenium.chrome.ChromeDriver",
24-
"org.apache.commons.exec.Executor",
2524
"org.openqa.selenium.remote.RemoteWebDriver",
2625
"com.sun.jna.platform.RasterRangesUtils",
2726
"com.sun.jna.Library"};

src/selenium2/java/com/nordstrom/automation/selenium/plugins/EdgePlugin.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ public EdgePlugin() {
2121
*/
2222
private static final String[] DEPENDENCY_CONTEXTS = {
2323
"org.openqa.selenium.edge.EdgeDriver",
24-
"org.apache.commons.exec.Executor",
2524
"org.openqa.selenium.remote.RemoteWebDriver",
2625
"com.sun.jna.platform.RasterRangesUtils",
2726
"com.sun.jna.Library"};

src/selenium2/java/com/nordstrom/automation/selenium/plugins/FirefoxPlugin.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ public FirefoxPlugin() {
2323
*/
2424
private static final String[] DEPENDENCY_CONTEXTS = {
2525
"org.openqa.selenium.firefox.FirefoxDriver",
26-
"org.apache.commons.exec.Executor",
2726
"org.openqa.selenium.remote.RemoteWebDriver",
2827
"com.sun.jna.platform.RasterRangesUtils",
2928
"com.sun.jna.Library"};

src/selenium2/java/com/nordstrom/automation/selenium/plugins/HtmlUnitPlugin.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ public HtmlUnitPlugin() {
4141
"org.eclipse.jetty.websocket.client.WebSocketClient",
4242
"org.eclipse.jetty.util.IO", "org.eclipse.jetty.io.EndPoint",
4343
"org.eclipse.jetty.websocket.common.Parser",
44-
"org.eclipse.jetty.websocket.api.Session",
45-
"org.apache.commons.exec.Executor"};
44+
"org.eclipse.jetty.websocket.api.Session"};
4645

4746
private static final String WEB_ELEMENT_CLASS_NAME =
4847
"org.openqa.selenium.htmlunit.HtmlUnitWebElement";

src/selenium2/java/com/nordstrom/automation/selenium/plugins/InternetExplorerPlugin.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ public InternetExplorerPlugin() {
2323
*/
2424
private static final String[] DEPENDENCY_CONTEXTS = {
2525
"org.openqa.selenium.ie.InternetExplorerDriver",
26-
"org.apache.commons.exec.Executor",
2726
"org.openqa.selenium.remote.RemoteWebDriver",
2827
"com.sun.jna.platform.RasterRangesUtils",
2928
"com.sun.jna.Library"};

src/selenium2/java/com/nordstrom/automation/selenium/plugins/OperaPlugin.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ public OperaPlugin() {
2525
*/
2626
private static final String[] DEPENDENCY_CONTEXTS = {
2727
"org.openqa.selenium.opera.OperaDriver",
28-
"org.apache.commons.exec.Executor",
2928
"org.openqa.selenium.remote.RemoteWebDriver",
3029
"com.sun.jna.platform.RasterRangesUtils",
3130
"com.sun.jna.Library"};

src/selenium2/java/com/nordstrom/automation/selenium/plugins/PhantomJsPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public PhantomJsPlugin() {
2121
*/
2222
private static final String[] DEPENDENCY_CONTEXTS = {
2323
"org.openqa.selenium.phantomjs.PhantomJSDriver",
24-
"org.apache.commons.exec.Executor", "com.sun.jna.platform.RasterRangesUtils",
24+
"com.sun.jna.platform.RasterRangesUtils",
2525
"com.sun.jna.Library"};
2626

2727
/**

src/selenium2/java/com/nordstrom/automation/selenium/plugins/SafariPlugin.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ public SafariPlugin() {
2121
*/
2222
private static final String[] DEPENDENCY_CONTEXTS = {
2323
"org.openqa.selenium.safari.SafariDriver",
24-
"org.apache.commons.exec.Executor",
2524
"org.openqa.selenium.remote.RemoteWebDriver",
2625
"com.sun.jna.platform.RasterRangesUtils",
2726
"com.sun.jna.Library",

src/selenium3/java/com/nordstrom/automation/selenium/SeleniumConfig.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,8 @@ public class SeleniumConfig extends AbstractSeleniumConfig {
181181
"okhttp3.ConnectionPool",
182182
"okio.BufferedSource",
183183
"ch.qos.logback.classic.spi.ThrowableProxy",
184-
"kotlin.jvm.internal.Intrinsics"
184+
"kotlin.jvm.internal.Intrinsics",
185+
"org.apache.commons.exec.Executor"
185186
};
186187

187188
static {

0 commit comments

Comments
 (0)