pom.xml 7.6 KB
Newer Older
1
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
V
Vlad Ilyushchenko 已提交
2 3 4 5 6
  ~    ___                  _   ____  ____
  ~   / _ \ _   _  ___  ___| |_|  _ \| __ )
  ~  | | | | | | |/ _ \/ __| __| | | |  _ \
  ~  | |_| | |_| |  __/\__ \ |_| |_| | |_) |
  ~   \__\_\\__,_|\___||___/\__|____/|____/
V
Vlad 已提交
7
  ~
8
  ~ Copyright (C) 2014-2016 Appsicle
V
Vlad 已提交
9
  ~
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.
V
Vlad 已提交
13
  ~
14 15 16 17 18 19 20 21
  ~ 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.
  ~
  ~ 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/>.
  ~
22
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
V
Vlad 已提交
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.0-SNAPSHOT</version>
33
    <groupId>org.questdb</groupId>
V
Vlad Ilyushchenko 已提交
34
    <artifactId>core</artifactId>
V
Vlad 已提交
35
    <packaging>jar</packaging>
36 37

    <description>QuestDB is High Performance Time Series Database</description>
V
Vlad 已提交
38

V
Vlad Ilyushchenko 已提交
39
    <url>http://www.questdb.org</url>
V
Vlad 已提交
40 41
    <licenses>
        <license>
V
Vlad Ilyushchenko 已提交
42 43
            <name>GNU Affero General Public License 3.0</name>
            <url>http://www.fsf.org/licensing/licenses/agpl-3.0.html</url>
V
Vlad 已提交
44 45 46 47 48 49 50 51 52 53 54 55
            <distribution>repo</distribution>
        </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>
V
Vlad 已提交
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>
V
Vlad 已提交
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-jar-plugin</artifactId>
V
Vlad Ilyushchenko 已提交
73
                <version>2.6</version>
V
Vlad 已提交
74 75 76 77 78 79 80 81
                <executions>
                    <execution>
                        <goals>
                            <goal>test-jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
82
            <plugin>
V
Vlad Ilyushchenko 已提交
83
                <groupId>org.apache.maven.plugins</groupId>
84
                <artifactId>maven-assembly-plugin</artifactId>
85
                <version>2.6</version>
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
                <configuration>
                    <descriptors>
                        <descriptor>src/main/assembly/assembly.xml</descriptor>
                    </descriptors>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
101 102 103
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
V
Vlad Ilyushchenko 已提交
104
                <version>2.19</version>
105
                <configuration>
V
Vlad Ilyushchenko 已提交
106
                    <argLine>-Xmx2048m</argLine>
107
                    <systemPropertyVariables>
108 109
                        <java.util.logging.SimpleFormatter.format>
                            <![CDATA[%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$s %2$s %5$s%6$s%n]]>
110 111 112 113
                        </java.util.logging.SimpleFormatter.format>
                    </systemPropertyVariables>
                </configuration>
            </plugin>
V
Vlad 已提交
114 115 116
        </plugins>
    </build>

V
Vlad 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130
    <profiles>
        <profile>
            <id>release-sign-artifacts</id>
            <activation>
                <property>
                    <name>release</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-source-plugin</artifactId>
V
Vlad Ilyushchenko 已提交
131
                        <version>2.4</version>
V
Vlad 已提交
132 133 134 135 136 137 138 139 140 141 142 143
                        <executions>
                            <execution>
                                <id>attach-sources</id>
                                <goals>
                                    <goal>jar</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-javadoc-plugin</artifactId>
V
Vlad Ilyushchenko 已提交
144
                        <version>2.10.3</version>
V
Vlad 已提交
145 146 147 148 149 150 151 152 153 154 155 156
                        <executions>
                            <execution>
                                <id>attach-javadocs</id>
                                <goals>
                                    <goal>jar</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
V
Vlad Ilyushchenko 已提交
157
                        <version>1.6</version>
V
Vlad 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

V
Vlad 已提交
173 174 175 176 177
    <dependencies>
        <!-- test dependencies -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
178
            <version>4.12</version>
V
Vlad 已提交
179 180 181
            <scope>test</scope>
        </dependency>

182 183 184 185
        <dependency>
            <groupId>com.intellij</groupId>
            <artifactId>annotations</artifactId>
            <version>12.0</version>
186
            <scope>provided</scope>
187 188
        </dependency>

V
Vlad Ilyushchenko 已提交
189 190 191 192 193 194 195 196 197 198 199 200 201 202
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.5.1</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpmime</artifactId>
            <version>4.5.1</version>
            <scope>test</scope>
        </dependency>

I
ideoma 已提交
203 204 205 206 207 208 209
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.5</version>
            <scope>test</scope>
        </dependency>

V
Vlad 已提交
210 211
    </dependencies>
</project>