pom.xml 3.7 KB
Newer Older
V
Vlad Ilyushchenko 已提交
1
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
V
Vlad Ilyushchenko 已提交
2 3 4 5 6
  ~     ___                  _   ____  ____
  ~    / _ \ _   _  ___  ___| |_|  _ \| __ )
  ~   | | | | | | |/ _ \/ __| __| | | |  _ \
  ~   | |_| | |_| |  __/\__ \ |_| |_| | |_) |
  ~    \__\_\\__,_|\___||___/\__|____/|____/
7
  ~
V
Vlad Ilyushchenko 已提交
8
  ~  Copyright (c) 2014-2016 Appsicle
9
  ~
V
Vlad Ilyushchenko 已提交
10 11 12
  ~  Licensed 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
13
  ~
V
Vlad Ilyushchenko 已提交
14 15 16 17 18 19 20
  ~  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.
V
Vlad Ilyushchenko 已提交
21 22
  ~
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
23 24 25 26 27

<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

28 29 30 31
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

V
Vlad Ilyushchenko 已提交
32
    <version>1.0.1</version>
33
    <groupId>org.questdb</groupId>
34
    <artifactId>examples</artifactId>
35
    <packaging>jar</packaging>
V
Vlad Ilyushchenko 已提交
36
    <description>Code examples and usage scenarios for QuestDB</description>
37

V
Vlad Ilyushchenko 已提交
38
    <url>http://www.questdb.org</url>
39 40
    <licenses>
        <license>
V
Vlad Ilyushchenko 已提交
41
            <name>Apache 2</name>
42 43 44 45 46 47 48 49 50 51 52 53 54 55
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
            <comments>A business-friendly OSS license</comments>
        </license>
    </licenses>

    <developers>
        <developer>
            <name>Vlad Ilyushchenko</name>
            <email>bluestreak@gmail.com</email>
        </developer>
    </developers>

    <scm>
V
Vlad Ilyushchenko 已提交
56
        <url>scm:git:https://github.com/bluestreak01/questdb.git</url>
57 58 59 60 61 62 63
    </scm>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
V
Vlad Ilyushchenko 已提交
64
                <version>3.3</version>
65 66 67 68 69 70 71 72
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-deploy-plugin</artifactId>
V
Vlad Ilyushchenko 已提交
73
                <version>2.8.2</version>
74 75 76 77 78 79 80 81 82 83
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>

        <dependency>
84
            <groupId>org.questdb</groupId>
V
Vlad Ilyushchenko 已提交
85
            <artifactId>questdb-core</artifactId>
86
            <version>${project.version}</version>
87 88
        </dependency>

89 90 91 92 93 94 95
        <dependency>
            <groupId>com.intellij</groupId>
            <artifactId>annotations</artifactId>
            <version>12.0</version>
            <scope>provided</scope>
        </dependency>

96 97 98
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
99
            <version>4.12</version>
100 101 102 103
            <scope>test</scope>
        </dependency>

        <dependency>
104
            <groupId>org.questdb</groupId>
V
Vlad Ilyushchenko 已提交
105
            <artifactId>questdb-core</artifactId>
106
            <version>${project.version}</version>
107 108 109 110 111 112 113
            <type>test-jar</type>
            <scope>test</scope>
        </dependency>

    </dependencies>

</project>