summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--container-test/pom.xml4
-rw-r--r--container/pom.xml4
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/ZipBuilder.java4
-rw-r--r--controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/ZipBuilderTest.java3
-rw-r--r--controller-server/src/test/java/com/yahoo/vespa/hosted/controller/integration/ConfigServerMock.java5
-rw-r--r--fat-model-dependencies/pom.xml4
-rw-r--r--orchestrator/pom.xml4
-rw-r--r--orchestrator/src/test/java/com/yahoo/vespa/orchestrator/status/ZookeeperStatusServiceTest.java7
-rw-r--r--parent/pom.xml16
-rw-r--r--vespa-application-maven-plugin/pom.xml4
-rw-r--r--vespa-application-maven-plugin/src/main/java/com/yahoo/container/plugin/mojo/ApplicationMojo.java22
-rw-r--r--vespa-http-client/pom.xml6
-rw-r--r--vespa-http-client/src/test/java/com/yahoo/vespa/http/client/core/XmlFeedReaderTest.java16
-rw-r--r--vespa-testrunner-components/pom.xml5
-rw-r--r--vespa-testrunner-components/src/test/java/com/yahoo/vespa/hosted/testrunner/PomXmlGeneratorTest.java3
15 files changed, 36 insertions, 71 deletions
diff --git a/container-test/pom.xml b/container-test/pom.xml
index 46c91e628ed..d1021202a24 100644
--- a/container-test/pom.xml
+++ b/container-test/pom.xml
@@ -39,10 +39,6 @@
<artifactId>commons-collections</artifactId>
</dependency>
<dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- </dependency>
- <dependency>
<groupId>io.airlift</groupId>
<artifactId>airline</artifactId>
<exclusions>
diff --git a/container/pom.xml b/container/pom.xml
index 518eb9d984a..cf3aa21513b 100644
--- a/container/pom.xml
+++ b/container/pom.xml
@@ -45,10 +45,6 @@
<groupId>io.airlift</groupId>
<artifactId>airline</artifactId>
</exclusion>
- <exclusion>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- </exclusion>
</exclusions>
</dependency>
</dependencies>
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/ZipBuilder.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/ZipBuilder.java
index e3ede999c11..6bcc8a034cc 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/ZipBuilder.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/ZipBuilder.java
@@ -1,8 +1,6 @@
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.deployment;
-import org.apache.commons.io.IOUtils;
-
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
@@ -31,7 +29,7 @@ public class ZipBuilder implements AutoCloseable {
try (ZipInputStream zin = new ZipInputStream(new ByteArrayInputStream(zippedContent))) {
for (ZipEntry entry = zin.getNextEntry(); entry != null; entry = zin.getNextEntry()) {
zipOutputStream.putNextEntry(entry);
- IOUtils.copy(zin, zipOutputStream);
+ zin.transferTo(zipOutputStream);
zipOutputStream.closeEntry();
}
} catch (IOException e) {
diff --git a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/ZipBuilderTest.java b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/ZipBuilderTest.java
index ce81e4e6dbd..6fb6004c60f 100644
--- a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/ZipBuilderTest.java
+++ b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/deployment/ZipBuilderTest.java
@@ -1,7 +1,6 @@
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.deployment;
-import org.apache.commons.io.IOUtils;
import org.junit.Test;
import java.io.ByteArrayInputStream;
@@ -53,7 +52,7 @@ public class ZipBuilderTest {
try (ZipInputStream zin = new ZipInputStream(new ByteArrayInputStream(zippedContent))) {
for (ZipEntry entry = zin.getNextEntry(); entry != null; entry = zin.getNextEntry()) {
if (entry.isDirectory()) continue;
- contents.put(entry.getName(), IOUtils.toString(zin, StandardCharsets.UTF_8));
+ contents.put(entry.getName(), new String(zin.readAllBytes(), StandardCharsets.UTF_8));
}
} catch (IOException e) {
throw new UncheckedIOException("Failed to read zipped content", e);
diff --git a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/integration/ConfigServerMock.java b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/integration/ConfigServerMock.java
index 57dcbd5d44e..b37d3d340cb 100644
--- a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/integration/ConfigServerMock.java
+++ b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/integration/ConfigServerMock.java
@@ -32,9 +32,10 @@ import com.yahoo.vespa.hosted.controller.application.SystemApplication;
import com.yahoo.vespa.serviceview.bindings.ApplicationView;
import com.yahoo.vespa.serviceview.bindings.ClusterView;
import com.yahoo.vespa.serviceview.bindings.ServiceView;
-import org.apache.commons.io.IOUtils;
+import java.io.ByteArrayInputStream;
import java.io.InputStream;
+import java.nio.charset.StandardCharsets;
import java.time.Instant;
import java.util.ArrayList;
import java.util.Collection;
@@ -412,7 +413,7 @@ public class ConfigServerMock extends AbstractComponent implements ConfigServer
@Override
public InputStream getLogs(DeploymentId deployment, Map<String, String> queryParameters) {
- return IOUtils.toInputStream(log);
+ return new ByteArrayInputStream(log.getBytes(StandardCharsets.UTF_8));
}
public void setLogStream(String log) {
diff --git a/fat-model-dependencies/pom.xml b/fat-model-dependencies/pom.xml
index 1cefc020d26..381035a75b0 100644
--- a/fat-model-dependencies/pom.xml
+++ b/fat-model-dependencies/pom.xml
@@ -35,10 +35,6 @@
</exclusions>
</dependency>
<dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- </dependency>
- <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>configdefinitions</artifactId>
<version>${project.version}</version>
diff --git a/orchestrator/pom.xml b/orchestrator/pom.xml
index d237ce3e4cc..3ebc87010fb 100644
--- a/orchestrator/pom.xml
+++ b/orchestrator/pom.xml
@@ -75,10 +75,6 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- </dependency>
- <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>config-provisioning</artifactId>
<version>${project.version}</version>
diff --git a/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/status/ZookeeperStatusServiceTest.java b/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/status/ZookeeperStatusServiceTest.java
index 707c81b92a5..4191636e7fe 100644
--- a/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/status/ZookeeperStatusServiceTest.java
+++ b/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/status/ZookeeperStatusServiceTest.java
@@ -1,6 +1,7 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.orchestrator.status;
+import com.yahoo.exception.ExceptionUtils;
import com.yahoo.jdisc.Metric;
import com.yahoo.jdisc.Timer;
import com.yahoo.jdisc.test.TestTimer;
@@ -9,7 +10,7 @@ import com.yahoo.vespa.applicationmodel.ApplicationInstanceReference;
import com.yahoo.vespa.curator.Curator;
import com.yahoo.vespa.orchestrator.OrchestratorContext;
import com.yahoo.vespa.orchestrator.TestIds;
-import org.apache.commons.lang.exception.ExceptionUtils;
+import com.yahoo.yolean.Exceptions;
import org.apache.curator.framework.CuratorFramework;
import org.apache.curator.test.KillSession;
import org.apache.curator.test.TestingServer;
@@ -219,8 +220,8 @@ public class ZookeeperStatusServiceTest {
getException(item).ifPresent( throwable ->
mismatchDescription
.appendText("Got exception: ")
- .appendText(ExceptionUtils.getMessage(throwable))
- .appendText(ExceptionUtils.getFullStackTrace(throwable)));
+ .appendText(Exceptions.toMessageString(throwable))
+ .appendText(ExceptionUtils.getStackTraceRecursivelyAsString(throwable)));
}
};
}
diff --git a/parent/pom.xml b/parent/pom.xml
index 035bc311735..52b8737f422 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -493,16 +493,6 @@
<version>1.6</version>
</dependency>
<dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>${commons-lang.version}</version>
- </dependency>
- <dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>2.0</version>
@@ -563,11 +553,6 @@
<version>1.3</version>
</dependency>
<dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>3.1</version>
- </dependency>
- <dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
<version>${curator.version}</version>
@@ -771,7 +756,6 @@
<!-- Athenz dependencies. Make sure these dependencies match those in Vespa's internal repositories -->
<athenz.version>1.8.29</athenz.version>
<aws.sdk.version>1.11.542</aws.sdk.version>
- <commons-lang.version>2.6</commons-lang.version>
<!-- WARNING: If you change curator version, you also need to update
zkfacade/src/main/java/org/apache/curator/**/package-info.java
using something like
diff --git a/vespa-application-maven-plugin/pom.xml b/vespa-application-maven-plugin/pom.xml
index aaa30ed28af..6fc7d15ecf1 100644
--- a/vespa-application-maven-plugin/pom.xml
+++ b/vespa-application-maven-plugin/pom.xml
@@ -42,10 +42,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- </dependency>
</dependencies>
<build>
<plugins>
diff --git a/vespa-application-maven-plugin/src/main/java/com/yahoo/container/plugin/mojo/ApplicationMojo.java b/vespa-application-maven-plugin/src/main/java/com/yahoo/container/plugin/mojo/ApplicationMojo.java
index f93ee2feaa1..16a2d121654 100644
--- a/vespa-application-maven-plugin/src/main/java/com/yahoo/container/plugin/mojo/ApplicationMojo.java
+++ b/vespa-application-maven-plugin/src/main/java/com/yahoo/container/plugin/mojo/ApplicationMojo.java
@@ -1,7 +1,6 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.plugin.mojo;
-import org.apache.commons.io.FileUtils;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
@@ -13,10 +12,13 @@ import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
+import java.io.UncheckedIOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
+import java.nio.file.Path;
import java.util.Collections;
import java.util.List;
+import java.util.stream.Stream;
/**
* @author Tony Vaagenes
@@ -96,13 +98,27 @@ public class ApplicationMojo extends AbstractMojo {
private void copyApplicationPackage(File applicationPackage, File applicationDestination) throws MojoExecutionException {
if (applicationPackage.exists()) {
try {
- FileUtils.copyDirectory(applicationPackage, applicationDestination);
- } catch (IOException e) {
+ copyDirectory(applicationPackage.toPath(), applicationDestination.toPath());
+ } catch (Exception e) {
throw new MojoExecutionException("Failed copying applicationPackage", e);
}
}
}
+ private static void copyDirectory(Path source, Path destination) {
+ try (Stream<Path> fileStreams = Files.walk(source)) {
+ fileStreams.forEachOrdered(sourcePath -> {
+ try {
+ Files.copy(sourcePath, source.resolve(destination.relativize(sourcePath)));
+ } catch (IOException e) {
+ throw new UncheckedIOException(e);
+ }
+ });
+ } catch (IOException e) {
+ throw new UncheckedIOException(e);
+ }
+ }
+
private void copyModuleBundles(File moduleDir, File componentsDir) throws MojoExecutionException {
File moduleTargetDir = new File(moduleDir, "target");
if (moduleTargetDir.exists()) {
diff --git a/vespa-http-client/pom.xml b/vespa-http-client/pom.xml
index bdac1d660dc..7b055228786 100644
--- a/vespa-http-client/pom.xml
+++ b/vespa-http-client/pom.xml
@@ -66,12 +66,6 @@
<!-- Test dependencies -->
<dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>3.4</version>
- <scope>test</scope>
- </dependency>
- <dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<scope>test</scope>
diff --git a/vespa-http-client/src/test/java/com/yahoo/vespa/http/client/core/XmlFeedReaderTest.java b/vespa-http-client/src/test/java/com/yahoo/vespa/http/client/core/XmlFeedReaderTest.java
index 9abbf916cff..925f3105878 100644
--- a/vespa-http-client/src/test/java/com/yahoo/vespa/http/client/core/XmlFeedReaderTest.java
+++ b/vespa-http-client/src/test/java/com/yahoo/vespa/http/client/core/XmlFeedReaderTest.java
@@ -1,8 +1,9 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.http.client.core;
+import com.fasterxml.jackson.databind.JsonNode;
+import com.fasterxml.jackson.dataformat.xml.XmlMapper;
import com.yahoo.vespa.http.client.FeedClient;
-import org.apache.commons.lang3.StringEscapeUtils;
import org.junit.Test;
import org.mockito.invocation.InvocationOnMock;
import org.mockito.stubbing.Answer;
@@ -17,7 +18,6 @@ import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
-import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.core.Is.is;
import static org.mockito.ArgumentMatchers.any;
@@ -32,6 +32,8 @@ public class XmlFeedReaderTest {
private final static String feedResource3 = "/xml-challenge2.xml";
private final static String feedResource4 = "/xml-challenge3.xml";
+ private static final XmlMapper xmlMapper = new XmlMapper();
+
private final String updateDocUpdate =
"<?xml version=\"1.0\"?>\n" +
"<vespafeed>\n" +
@@ -232,13 +234,9 @@ public class XmlFeedReaderTest {
InputStream inputStream2 = XmlFeedReaderTest.class.getResourceAsStream(filename);
String rawXML = new java.util.Scanner(inputStream2, "UTF-8").useDelimiter("\\A").next();
- String rawDoc = rawXML.toString().split("<document")[1].split("</document>")[0];
- assertThat(rawDoc.length() > 30, is(true));
-
- String decodedRawXml = StringEscapeUtils.unescapeXml(rawDoc);
- String decodedDoc = StringEscapeUtils.unescapeXml(document);
-
- assertThat(decodedDoc, containsString(decodedRawXml));
+ JsonNode decodedDocument = xmlMapper.readTree(document);
+ JsonNode rawDocuments = xmlMapper.readTree(rawXML);
+ assertThat(decodedDocument, is(rawDocuments.get("document")));
}
@Test public void testCData() throws Exception {
diff --git a/vespa-testrunner-components/pom.xml b/vespa-testrunner-components/pom.xml
index 7c9b8aa99f1..31568d01fb5 100644
--- a/vespa-testrunner-components/pom.xml
+++ b/vespa-testrunner-components/pom.xml
@@ -34,11 +34,6 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <scope>test</scope>
- </dependency>
</dependencies>
<build>
diff --git a/vespa-testrunner-components/src/test/java/com/yahoo/vespa/hosted/testrunner/PomXmlGeneratorTest.java b/vespa-testrunner-components/src/test/java/com/yahoo/vespa/hosted/testrunner/PomXmlGeneratorTest.java
index ca3da385dfe..c7799bff116 100644
--- a/vespa-testrunner-components/src/test/java/com/yahoo/vespa/hosted/testrunner/PomXmlGeneratorTest.java
+++ b/vespa-testrunner-components/src/test/java/com/yahoo/vespa/hosted/testrunner/PomXmlGeneratorTest.java
@@ -1,7 +1,6 @@
// Copyright 2020 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.testrunner;
-import org.apache.commons.io.IOUtils;
import org.junit.Test;
import java.io.IOException;
@@ -28,7 +27,7 @@ public class PomXmlGeneratorTest {
}
private void assertFile(String resourceFile, String actual) throws IOException {
- String expected = IOUtils.toString(this.getClass().getResourceAsStream(resourceFile));
+ String expected = new String(this.getClass().getResourceAsStream(resourceFile).readAllBytes());
assertEquals(resourceFile, expected, actual);
}