pom.xml 3.4 KB
Newer Older
V
Vlad Ilyushchenko 已提交
1
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
V
Vlad Ilyushchenko 已提交
2 3 4 5 6
  ~    ___                  _   ____  ____
  ~   / _ \ _   _  ___  ___| |_|  _ \| __ )
  ~  | | | | | | |/ _ \/ __| __| | | |  _ \
  ~  | |_| | |_| |  __/\__ \ |_| |_| | |_) |
  ~   \__\_\\__,_|\___||___/\__|____/|____/
7
  ~
V
Vlad Ilyushchenko 已提交
8
  ~ Copyright (C) 2014-2018 Appsicle
9
  ~
V
Vlad Ilyushchenko 已提交
10 11 12
  ~ This program is free software: you can redistribute it and/or  modify
  ~ it under the terms of the GNU Affero General Public License, version 3,
  ~ as published by the Free Software Foundation.
13
  ~
V
Vlad Ilyushchenko 已提交
14 15 16 17
  ~ This program is distributed in the hope that it will be useful,
  ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
  ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  ~ GNU Affero General Public License for more details.
V
Vlad Ilyushchenko 已提交
18
  ~
V
Vlad Ilyushchenko 已提交
19 20
  ~ You should have received a copy of the GNU Affero General Public License
  ~ along with this program.  If not, see <http://www.gnu.org/licenses/>.
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>3.0.2-SNAPSHOT</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>https://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>
64
                <version>3.6.1</version>
65
                <configuration>
66 67
                    <source>1.8</source>
                    <target>1.8</target>
68 69 70 71 72 73 74 75
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>

        <dependency>
76
            <groupId>org.questdb</groupId>
V
Vlad Ilyushchenko 已提交
77
            <artifactId>questdb-core</artifactId>
78
            <version>${project.version}</version>
79 80
        </dependency>

81 82 83 84 85 86 87
        <dependency>
            <groupId>com.intellij</groupId>
            <artifactId>annotations</artifactId>
            <version>12.0</version>
            <scope>provided</scope>
        </dependency>

88 89 90
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
91
            <version>4.12</version>
92 93 94 95
            <scope>test</scope>
        </dependency>

        <dependency>
96
            <groupId>org.questdb</groupId>
V
Vlad Ilyushchenko 已提交
97
            <artifactId>questdb-core</artifactId>
98
            <version>${project.version}</version>
99 100 101 102 103 104 105
            <type>test-jar</type>
            <scope>test</scope>
        </dependency>

    </dependencies>

</project>