Skip to content

Commit

Permalink
Suppress compile phase; update driver dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed May 31, 2016
1 parent 94bc439 commit b224a3e
Showing 1 changed file with 38 additions and 5 deletions.
43 changes: 38 additions & 5 deletions pom.xml
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<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>
<artifactId>java.jdbc</artifactId>
Expand Down Expand Up @@ -25,17 +26,49 @@
<url>git@github.com:clojure/java.jdbc.git</url>
<tag>HEAD</tag>
</scm>

<build>
<plugins>
<plugin>
<!-- By default, compile everything as a sanity check, but do
not include any AOT-compiled .class files in the
JAR. Projects may override as needed. -->
<groupId>com.theoryinpractise</groupId>
<artifactId>clojure-maven-plugin</artifactId>
<version>1.3.13</version>
<extensions>true</extensions>
<configuration>
<warnOnReflection>${clojure.warnOnReflection}</warnOnReflection>
<temporaryOutputDirectory>true</temporaryOutputDirectory>
</configuration>
<executions>
<execution>
<id>clojure-compile</id>
<phase>none</phase>
</execution>
<execution>
<id>clojure-test</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.36</version>
<version>5.1.39</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.8.1.2</version>
<version>10.12.1.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -47,19 +80,19 @@
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.188</version>
<version>1.4.191</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4-1201-jdbc41</version>
<version>9.4.1208.jre7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.8.11.1</version>
<version>3.8.11.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit b224a3e

Please sign in to comment.