Add pom.xml
Project: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/commit/0219d0b3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/tree/0219d0b3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-gearpump/diff/0219d0b3 Branch: refs/heads/sql Commit: 0219d0b362a13d4d0cae0db35af575ea91534090 Parents: 6f1e182 Author: Buddhi Ayesha <[email protected]> Authored: Fri Jun 2 09:27:21 2017 +0530 Committer: manuzhang <[email protected]> Committed: Sun Jul 9 07:50:24 2017 +0800 ---------------------------------------------------------------------- experiments/sql/pom.xml | 84 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-gearpump/blob/0219d0b3/experiments/sql/pom.xml ---------------------------------------------------------------------- diff --git a/experiments/sql/pom.xml b/experiments/sql/pom.xml new file mode 100644 index 0000000..7ace8b8 --- /dev/null +++ b/experiments/sql/pom.xml @@ -0,0 +1,84 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +--> +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns="http://maven.apache.org/POM/4.0.0" + 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> + <groupId>org.apache.gearpump</groupId> + <artifactId>sql-support</artifactId> + <packaging>pom</packaging> + <version>0.1.0-SNAPSHOT</version> + + <licenses> + <license> + <name>Apache License Version 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0</url> + </license> + </licenses> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> + </plugins> + </build> + + <dependencies> + + <!-- core dependencies --> + <dependency> + <groupId>org.apache.calcite</groupId> + <artifactId>calcite-core</artifactId> + <version>${calcite.core.version}</version> + </dependency> + + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>${slf4j.api.version}</version> + </dependency> + + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>${log4j.version}</version> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>${junit.version}</version> + </dependency> + </dependencies> + + <properties> + <calcite.core.version>1.12.0</calcite.core.version> + <slf4j.api.version>1.7.25</slf4j.api.version> + <log4j.version>1.2.17</log4j.version> + <junit.version>4.12</junit.version> + </properties> + +</project> \ No newline at end of file
