Dmitry Lychagin | b9a7be2 | 2021-10-06 09:33:42 -0700 | [diff] [blame^] | 1 | <!-- |
| 2 | ! Licensed to the Apache Software Foundation (ASF) under one |
| 3 | ! or more contributor license agreements. See the NOTICE file |
| 4 | ! distributed with this work for additional information |
| 5 | ! regarding copyright ownership. The ASF licenses this file |
| 6 | ! to you under the Apache License, Version 2.0 (the |
| 7 | ! "License"); you may not use this file except in compliance |
| 8 | ! with the License. You may obtain a copy of the License at |
| 9 | ! |
| 10 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | ! |
| 12 | ! Unless required by applicable law or agreed to in writing, |
| 13 | ! software distributed under the License is distributed on an |
| 14 | ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | ! KIND, either express or implied. See the License for the |
| 16 | ! specific language governing permissions and limitations |
| 17 | ! under the License. |
| 18 | !--> |
| 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <artifactId>apache-asterixdb-jdbc</artifactId> |
| 23 | <version>0.9.7-SNAPSHOT</version> |
| 24 | <packaging>pom</packaging> |
| 25 | <url>${implementation.url}</url> |
| 26 | <parent> |
| 27 | <groupId>org.apache.asterix</groupId> |
| 28 | <artifactId>apache-asterixdb</artifactId> |
| 29 | <version>0.9.7-SNAPSHOT</version> |
| 30 | <relativePath>../../asterixdb/asterixdb/pom.xml</relativePath> |
| 31 | </parent> |
| 32 | <licenses> |
| 33 | <license> |
| 34 | <name>Apache License, Version 2.0</name> |
| 35 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 36 | <distribution>repo</distribution> |
| 37 | <comments>A business-friendly OSS license</comments> |
| 38 | </license> |
| 39 | </licenses> |
| 40 | <scm> |
| 41 | <connection>scm:git:https://github.com/apache/asterixdb-clients</connection> |
| 42 | <developerConnection>scm:git:ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb-clients</developerConnection> |
| 43 | <url>https://github.com/apache/asterixdb</url> |
| 44 | <tag>HEAD</tag> |
| 45 | </scm> |
| 46 | <properties> |
| 47 | <root.dir>${basedir}</root.dir> |
| 48 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 49 | <file.encoding>UTF-8</file.encoding> |
| 50 | <source.jdk.version>8</source.jdk.version> |
| 51 | <target.jdk.version>8</target.jdk.version> |
| 52 | |
| 53 | <implementation.title>Apache AsterixDB JDBC - ${project.name}</implementation.title> |
| 54 | <implementation.url>https://asterixdb.apache.org/</implementation.url> |
| 55 | <implementation.version>${project.version}</implementation.version> |
| 56 | <implementation.vendor>${project.organization.name}</implementation.vendor> |
| 57 | </properties> |
| 58 | <build> |
| 59 | <pluginManagement> |
| 60 | <plugins> |
| 61 | <plugin> |
| 62 | <groupId>org.apache.maven.plugins</groupId> |
| 63 | <artifactId>maven-shade-plugin</artifactId> |
| 64 | <version>3.2.4</version> |
| 65 | </plugin> |
| 66 | </plugins> |
| 67 | </pluginManagement> |
| 68 | </build> |
| 69 | <modules> |
| 70 | <module>asterix-jdbc-core</module> |
| 71 | <module>asterix-jdbc-driver</module> |
| 72 | </modules> |
| 73 | </project> |