From 9a3eee09448afcad242f9415efeed59dcec16fd9 Mon Sep 17 00:00:00 2001 From: Jonathan Swenson Date: Tue, 18 Aug 2015 19:07:42 -0700 Subject: [PATCH] Update pom to allow for building of antlr resources during mvn build. --- .gitignore | 3 + pom.xml | 226 +++++++++++++++++++++++++++++++++-------------------- 2 files changed, 144 insertions(+), 85 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..16b61c5d --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/target/ +/.idea/ +*.iml diff --git a/pom.xml b/pom.xml index 0560346d..bef68447 100644 --- a/pom.xml +++ b/pom.xml @@ -1,85 +1,141 @@ - - 4.0.0 - net.starschema.clouddb.bqjdbc - bqjdbc - Big Query over JDBC - A simple JDBC driver, to reach Google's BigQuery - - - google-api-services - http://mavenrepo.google-api-java-client.googlecode.com/hg - - true - - - - - - org.apache.commons - commons-io - 1.3.2 - - - log4j - log4j - 1.2.17 - - - com.google.api-client - google-api-client - 1.19.0 - - - org.mortbay.jetty - jetty - 7.0.0.pre5 - - - com.google.http-client - google-http-client-jackson - 1.19.0 - - - com.google.apis - google-api-services-bigquery - v2-rev157-1.19.0 - - - junit - junit - 4.8.2 - - - org.antlr - antlr-runtime - 3.4 - - - - - - org.apache.maven.plugins - maven-shade-plugin - 1.7.1 - - - package - - shade - - - - - ${project.artifactId}-${project.version}-standalone - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.3.2 - - - - 1.4 - + + 4.0.0 + net.starschema.clouddb.bqjdbc + bqjdbc + Big Query over JDBC + A simple JDBC driver, to reach Google's BigQuery + + + google-api-services + http://mavenrepo.google-api-java-client.googlecode.com/hg + + true + + + + + + commons-io + commons-io + 1.3.2 + + + log4j + log4j + 1.2.17 + + + com.google.api-client + google-api-client + 1.19.0 + + + org.mortbay.jetty + jetty + 7.0.0.pre5 + + + com.google.http-client + google-http-client-jackson + 1.19.0 + + + com.google.apis + google-api-services-bigquery + v2-rev157-1.19.0 + + + junit + junit + 4.8.2 + + + org.antlr + antlr + 3.4 + jar + compile + + + + + + org.antlr + antlr3-maven-plugin + 3.4 + + + run antlr + generate-sources + + antlr + + + src/main/java/net/starschema/clouddb/jdbc + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.9.1 + + + add-source + generate-sources + + add-source + + + + ${basedir}/target/generated-sources/antlr + + + + + + + org.apache.maven.plugins + maven-shade-plugin + 1.7.1 + + + package + + shade + + + + + ${project.artifactId}-${project.version}-standalone + + + + org.apache.maven.plugins + maven-compiler-plugin + 2.3.2 + + 1.6 + 1.6 + + + + org.apache.maven.plugins + maven-source-plugin + 2.1.1 + + + attach-sources + verify + + jar-no-fork + + + + + + + 1.4 +