blob: 93e0191b48171e382b34bde393e52f6d3e92b04e [file] [log] [blame]
<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>net.hydromatic</groupId>
<artifactId>optiq-parent</artifactId>
<version>0.4.17</version>
</parent>
<artifactId>optiq-splunk</artifactId>
<packaging>jar</packaging>
<version>0.4.17</version>
<name>optiq-splunk</name>
<description>Splunk adapter for Optiq; also a JDBC driver for Splunk.</description>
<dependencies>
<dependency>
<groupId>net.hydromatic</groupId>
<artifactId>optiq-core</artifactId>
<version>0.4.17</version>
</dependency>
<dependency>
<groupId>net.sf.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>2.3</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.15</version>
<configuration>
<excludes>
<exclude>net/hydromatic/**/SplunkAdapterTest.java</exclude>
</excludes>
</configuration>
</plugin>
<!-- Parent module has the same plugin and does the work of
generating -sources.jar for each project. But without the
plugin declared here, IDEs don't know the sources are
available. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
<goal>test-jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>