summaryrefslogtreecommitdiffstats
path: root/yolean
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 /yolean
parentb1c741e102711830fa2fe0caa4908b76274aa9b2 (diff)
Remove yolean.
Diffstat (limited to 'yolean')
-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
5 files changed, 0 insertions, 68 deletions
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>