summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2022-07-13 12:02:36 +0200
committergjoranv <gv@verizonmedia.com>2022-07-13 12:02:36 +0200
commitb79afc3d2a9d4a0ed64c9a70edd101cc752533da (patch)
tree2f6eccb83a33ab5e605317f3bbcd7b42f0c163d3
parentb1c741e102711830fa2fe0caa4908b76274aa9b2 (diff)
Remove yolean.
-rw-r--r--Code-map.md1
-rw-r--r--pom.xml1
-rw-r--r--yolean/.gitignore2
-rw-r--r--yolean/OWNERS1
-rwxr-xr-xyolean/README.sh13
-rw-r--r--yolean/abi-spec.json1
-rw-r--r--yolean/pom.xml51
7 files changed, 0 insertions, 70 deletions
diff --git a/Code-map.md b/Code-map.md
index dfd11fffdab..17c27327c5a 100644
--- a/Code-map.md
+++ b/Code-map.md
@@ -94,7 +94,6 @@ Libraries used throughput the code.
- [vespalib](https://github.com/vespa-engine/vespa/tree/master/vespalib) - general utility library for C++
- [vespajlib](https://github.com/vespa-engine/vespa/tree/master/vespajlib) - general utility library for Java. Includes the Java implementation of the tensor library.
-- [yolean](https://github.com/vespa-engine/vespa/tree/master/yolean) - another (more stable) general Java utility library
diff --git a/pom.xml b/pom.xml
index 6cd49656180..388688d95b4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -142,7 +142,6 @@
<module>vespa-3party-bundles</module>
<module>vespajlib</module>
<module>vespalog</module>
- <module>yolean</module>
<module>zkfacade</module>
<module>zookeeper-client-common</module>
<module>zookeeper-command-line-client</module>
diff --git a/yolean/.gitignore b/yolean/.gitignore
deleted file mode 100644
index 12251442258..00000000000
--- a/yolean/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-/target
-/pom.xml.build
diff --git a/yolean/OWNERS b/yolean/OWNERS
deleted file mode 100644
index 569bf1cc3a1..00000000000
--- a/yolean/OWNERS
+++ /dev/null
@@ -1 +0,0 @@
-bjorncs
diff --git a/yolean/README.sh b/yolean/README.sh
deleted file mode 100755
index 628d5a6a2dd..00000000000
--- a/yolean/README.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-if [ -z ${VERSION} ]; then
- echo "Environment VERSION not set." >&2
- exit 1;
-fi
-cat <<EOF
-
-Yolean is a collection of Java utility classes that may be useful
-across various products. INclusion here has a higher threshold than
-vespajlib.
-
-EOF
diff --git a/yolean/abi-spec.json b/yolean/abi-spec.json
deleted file mode 100644
index 9e26dfeeb6e..00000000000
--- a/yolean/abi-spec.json
+++ /dev/null
@@ -1 +0,0 @@
-{} \ No newline at end of file
diff --git a/yolean/pom.xml b/yolean/pom.xml
deleted file mode 100644
index a767e6dfcdd..00000000000
--- a/yolean/pom.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<!-- Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>parent</artifactId>
- <version>8-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
- </parent>
- <artifactId>yolean</artifactId>
- <version>8-SNAPSHOT</version>
- <packaging>container-plugin</packaging>
- <name>${project.artifactId}</name>
- <dependencies>
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>annotations</artifactId>
- <version>${project.version}</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>bundle-plugin</artifactId>
- <extensions>true</extensions>
- </plugin>
- <plugin>
- <!-- Needed for IntelliJ -->
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>abi-check-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
-</project>