dice-where-build
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>technology.dice.open</groupId> <artifactId>dice-where-build</artifactId> <version>1.3.14</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>technology.dice.open</groupId> <artifactId>dice-where-build</artifactId> <version>1.3.14</version> <packaging>pom</packaging> <modules> <module>dice-where</module> <module>dice-where-downloader</module> <module>dice-where-downloader-lib</module> </modules> <name>dice-where-build</name> <description>dice-where is a low memory footprint, highly efficient Geo IP lookup library that relies on locally available data. </description> <url>http://open.dice.technology/dice-where</url> <scm> <connection>scm:git:git@github.com:DiceTechnology/dice-where.git</connection> <developerConnection>scm:git:ssh://github.com:DiceTechnology/dice-where.git </developerConnection> <url>http://github.com/DiceTechnology/dice-where/tree/master</url> </scm> <licenses> <license> <name>MIT</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <name>Alex Kryvenkyi</name> <id>zorg</id> <email>akryvenkyi at endeavorco dot com</email> <organization>DiceTechnology</organization> <organizationUrl>http://open.dice.technology</organizationUrl> </developer> <developer> <name>Goncalo Luiz</name> <id>gedl</id> <email>gluiz at endeavorco dot com</email> <organization>DiceTechnology</organization> <organizationUrl>http://open.dice.technology</organizationUrl> </developer> <developer> <name>Julian Howarth</name> <id>julianhowarth</id> <email>jhowarth at endeavorco dot com</email> <organization>DiceTechnology</organization> <organizationUrl>http://open.dice.technology</organizationUrl> </developer> <developer> <name>Savvas Michael</name> <id>SavvasMichael</id> <email>smichael at endeavorco dot com</email> <organization>DiceTechnology</organization> <organizationUrl>http://open.dice.technology</organizationUrl> </developer> <developer> <name>Stanislav Vasilev</name> <id>stykiaz</id> <email>svasilev at endeavorco dot com</email> <organization>DiceTechnology</organization> <organizationUrl>http://open.dice.technology</organizationUrl> </developer> <developer> <name>Kamil Wlodarczyk</name> <id>fifol-img</id> <email>kwlodarczyk at endeavorco dot com</email> <organization>DiceTechnology</organization> <organizationUrl>http://open.dice.technology</organizationUrl> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <guava.version>21.0</guava.version> <ipaddress.version>4.2.0</ipaddress.version> <mapdb.version>3.0.7</mapdb.version> <protobuf.version>3.21.12</protobuf.version> <junit.version>5.9.2</junit.version> <mockito.version>5.1.1</mockito.version> <jacoco.version>0.8.8</jacoco.version> <jmh.version>1.21</jmh.version> <maxmind.mmdb.version>3.0.0</maxmind.mmdb.version> <jsr305.version>3.0.2</jsr305.version> </properties> <build> <plugins> <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-surefire-plugin</artifactId> <version>3.0.0-M8</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> <configuration> <source>8</source> <sourceFileExcludes> <sourceFileExclude>**/protobuf/*.java</sourceFileExclude> </sourceFileExcludes> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <configuration> <excludes> <exclude>**technology/dice/dicewhere/lineprocessing/serializers/protobuf/*</exclude> </excludes> </configuration> <executions> <execution> <id>pre-unit-tests</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>post-unit-tests</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> <execution> <id>default-check</id> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule implementation="org.jacoco.maven.RuleConfiguration"> <element>BUNDLE</element> <limits> <limit implementation="org.jacoco.report.check.Limit"> <counter>COMPLEXITY</counter> <value>COVEREDRATIO</value> <minimum>0.6</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-scm-plugin</artifactId> <version>2.0.0-M3</version> <configuration> <tag>${project.version}</tag> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <release>11</release> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>publish</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <waitUntil>published</waitUntil> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>