tsdb4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.webfolder</groupId> <artifactId>tsdb4j</artifactId> <version>1.0.0</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.webfolder</groupId> <artifactId>tsdb4j</artifactId> <version>1.0.0</version> <name>tsdb4j</name> <description>Java driver for Akumuli which makes time-series fast and easy.</description> <licenses> <license> <name>Apache License 2.0</name> <url>https://github.com/webfolderio/tsdb4j/blob/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/webfolderio/tsdb4j.git</url> </scm> <url>https://webfolder.io</url> <organization> <name>WebFolder OÜ</name> <url>https://webfolder.io</url> </organization> <developers> <developer> <name>WebFolder</name> <email>support@webfolder.io</email> <timezone>GMT+2</timezone> <organization>WebFolder OÜ</organization> <url>https://webfolder.io</url> <organizationUrl>https://webfolder.io</organizationUrl> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <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> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <failOnError>false</failOnError> <doclint>none</doclint> <additionalparam>-Xdoclint:none</additionalparam> <author>WebFolder OÜ</author> <quiet>true</quiet> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <index>true</index> <manifest> <addClasspath>true</addClasspath> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <manifestEntries> <Built-By>WebFolder (https://webfolder.io)</Built-By> <Build-Time>${maven.build.timestamp}</Build-Time> <License>Apache 2.0</License> <Implementation-Title>tsdb4j</Implementation-Title> <Implementation-Version>1.0.0</Implementation-Version> <Automatic-Module-Name>io.webfolder.tsdb4j</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.grack</groupId> <artifactId>nanojson</artifactId> <version>1.6</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13</version> <scope>test</scope> </dependency> <dependency> <groupId>com.jakewharton.fliptables</groupId> <artifactId>fliptables</artifactId> <version>1.1.0</version> <scope>test</scope> </dependency> </dependencies> <properties> <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format> <project.build.sourceEncoding>utf-8</project.build.sourceEncoding> <project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding> </properties> </project>