summaryrefslogtreecommitdiffstats
path: root/provided-dependencies
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2016-06-15 23:09:44 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2016-06-15 23:09:44 +0200
commit72231250ed81e10d66bfe70701e64fa5fe50f712 (patch)
tree2728bba1131a6f6e5bdf95afec7d7ff9358dac50 /provided-dependencies
Publish
Diffstat (limited to 'provided-dependencies')
-rw-r--r--provided-dependencies/.gitignore2
-rw-r--r--provided-dependencies/OWNERS1
-rwxr-xr-xprovided-dependencies/pom.xml82
3 files changed, 85 insertions, 0 deletions
diff --git a/provided-dependencies/.gitignore b/provided-dependencies/.gitignore
new file mode 100644
index 00000000000..3cc25b51fc4
--- /dev/null
+++ b/provided-dependencies/.gitignore
@@ -0,0 +1,2 @@
+/pom.xml.build
+/target
diff --git a/provided-dependencies/OWNERS b/provided-dependencies/OWNERS
new file mode 100644
index 00000000000..3b2ba1ede81
--- /dev/null
+++ b/provided-dependencies/OWNERS
@@ -0,0 +1 @@
+gjoranv
diff --git a/provided-dependencies/pom.xml b/provided-dependencies/pom.xml
new file mode 100755
index 00000000000..332fff2a62f
--- /dev/null
+++ b/provided-dependencies/pom.xml
@@ -0,0 +1,82 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Copyright 2016 Yahoo Inc. 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>6-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+ <artifactId>provided-dependencies</artifactId>
+ <packaging>jar</packaging>
+ <version>6-SNAPSHOT</version>
+ <description>Dependencies that are installed and should not be included in artifacts with dependencies.</description>
+ <dependencies>
+ <!-- jdisc -->
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>jdisc_core</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.jvnet.hudson</groupId>
+ <artifactId>annotation-indexer</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>jdisc_http_service</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>config-lib</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>defaults</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.google.inject</groupId>
+ <artifactId>guice</artifactId>
+ <classifier>no_aop</classifier>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.main</artifactId>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.4</version>
+ <configuration>
+ <archive>
+ <index>true</index>
+ <manifestEntries>
+ <description>For compilation only, do NOT deploy.</description>
+ <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
+ <Bundle-Name>provided dependencies</Bundle-Name>
+ <Bundle-SymbolicName>provided-dependencies</Bundle-SymbolicName>
+ <Bundle-Version>1.0.0</Bundle-Version>
+ <Bundle-Vendor>Yahoo!</Bundle-Vendor>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>