aboutsummaryrefslogtreecommitdiffstats
path: root/config_test/pom.xml
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2022-10-26 09:38:48 +0200
committerHarald Musum <musum@yahooinc.com>2022-10-26 09:38:48 +0200
commitc5a1101793f32aeb2c770d59b30ecafbb0cc9538 (patch)
tree54ae030422326aaafb7dfb2a88c92326f48db7c1 /config_test/pom.xml
parent0b4815033206a1fa19c20e804e6e4750d70370e9 (diff)
Remove module config_test
We don't support using config without depending on Vespa anymore
Diffstat (limited to 'config_test/pom.xml')
-rw-r--r--config_test/pom.xml55
1 files changed, 0 insertions, 55 deletions
diff --git a/config_test/pom.xml b/config_test/pom.xml
deleted file mode 100644
index d2c8abf42ff..00000000000
--- a/config_test/pom.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<?xml version="1.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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>config_test</artifactId>
- <packaging>container-plugin</packaging>
- <version>8-SNAPSHOT</version>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.13.2</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>config-lib</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.1</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- <compilerArgs>
- <arg>-Xlint:all</arg>
- <arg>-Werror</arg>
- </compilerArgs>
- </configuration>
- </plugin>
- <plugin>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>bundle-plugin</artifactId>
- <version>${project.version}</version>
- <extensions>true</extensions>
- <configuration>
- <configGenVersion>${project.version}</configGenVersion>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <properties>
- <maven.deploy.skip>true</maven.deploy.skip>
- <maven.javadoc.skip>true</maven.javadoc.skip>
- <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
-</project>