libs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.bitsensor</groupId>
<artifactId>libs</artifactId>
<version>4.11.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.bitsensor</groupId>
<artifactId>libs</artifactId>
<packaging>pom</packaging>
<version>4.11.0</version>
<name>BitSensor Libraries</name>
<description>BitSensor libraries</description>
<url>https://bitsensor.io/</url>
<licenses>
<license>
<name>The MIT License</name>
<url>https://git.bitsensor.io/plugins/java/blob/master/LICENSE.md</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>BitSensor</name>
<url>https://bitsensor.io/</url>
</organization>
<developers>
<developer>
<name>Sven Dubbeld</name>
<email>sven@bitsensor.io</email>
</developer>
<developer>
<name>Bram Mulders</name>
<email>bram@bitsensor.io</email>
</developer>
<developer>
<name>Ruben van Vreeland</name>
<email>ruben@bitsensor.io</email>
</developer>
<developer>
<name>Khanh Nguyen</name>
<email>khanh@bitsensor.io</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://git.bitsensor.io/common/libs.git</connection>
<developerConnection>scm:git:ssh://git.bitsensor.io:common/libs.git</developerConnection>
<url>https://git.bitsensor.io/common/libs</url>
</scm>
<issueManagement>
<system>GitLab</system>
<url>https://git.bitsensor.io/common/libs/issues</url>
</issueManagement>
<!-- END INFO -->
<modules>
<module>lib-entity</module>
<module>lib-util</module>
<module>lib-privacy</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<re2j.version>1.2</re2j.version>
<chlorinefinder.version>1.1.5</chlorinefinder.version>
<proto.version>4.11.0</proto.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.20.RELEASE</version>
</parent>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.bitsensor</groupId>
<artifactId>proto</artifactId>
<version>${proto.version}</version>
</dependency>
<dependency>
<groupId>io.bitsensor</groupId>
<artifactId>lib-entity</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.bitsensor</groupId>
<artifactId>lib-util</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.bitsensor</groupId>
<artifactId>lib-privacy</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.re2j</groupId>
<artifactId>re2j</artifactId>
<version>${re2j.version}</version>
</dependency>
<dependency>
<groupId>io.dataapps.chlorine</groupId>
<artifactId>chlorine-finder</artifactId>
<version>${chlorinefinder.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-guava</artifactId>
<version>2.9.5</version>
</dependency>
<!-- Test dependencies-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>java-hamcrest</artifactId>
<version>2.0.0.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>java-hamcrest</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<!-- bitsensor/back-end/bitbrain#129 workaround -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.10.0</version>
<configuration>
<gpgSignTag>true</gpgSignTag>
<gpgSignCommit>true</gpgSignCommit>
<useSnapshotInRelease>true</useSnapshotInRelease>
<allowSnapshots>true</allowSnapshots>
<pushRemote>false</pushRemote>
<versionDigitToIncrement>1</versionDigitToIncrement>
<installProject>true</installProject>
</configuration>
</plugin>
</plugins>
</build>
<!-- Develop -->
<repositories>
<repository>
<id>oss-sonatype-snapshot</id>
<name>oss-sonatype</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>oss-sonatype-release</id>
<name>oss-sonatype</name>
<url>https://oss.sonatype.org/content/repositories/releases/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<!-- CD -->
<profiles>
<profile>
<id>ci</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<!-- Avoid graphical pinentry -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<!-- Repository for snapshots -->
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<!-- Repository for releases -->
<repository>
<id>ossrh</id>
<name>Nexus Release Repository</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>