dsi-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.blazegraph</groupId>
<artifactId>dsi-utils</artifactId>
<version>2.1.4</version>
</dependency><?xml version="1.0"?>
<!--
Copyright (C) SYSTAP, LLC DBA Blazegraph 2006-2016. All rights reserved.
Contact:
SYSTAP, LLC DBA Blazegraph
2501 Calvert ST NW #106
Washington, DC 20008
licenses@blazegraph.com
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; version 2.1 of the License.
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 General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Copyright 2010 by TalkingTrends (Amsterdam, The Netherlands)
-->
<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>
<parent>
<groupId>com.blazegraph</groupId>
<artifactId>blazegraph-parent</artifactId>
<version>2.1.4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>com.blazegraph</groupId>
<artifactId>dsi-utils</artifactId>
<version>2.1.4</version>
<name>Blazegraph DSI Utils</name>
<description>Blazegraph Modifications to the DSI utils. This are forked from version 1.10.0 under LGPLv2.1.</description>
<packaging>jar</packaging>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE Version 2.1</name>
<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
</license>
</licenses>
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.in.*</include>
<include>**/*.out.*</include>
</includes>
</resource>
<resource>
<directory>src/test/java</directory>
<includes>
<include>**/test.html</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<includes>
<include>**/TestAll.java</include>
<include>**/*Test.java</include>
</includes>
<excludes>
<exclude>com/bigdata/TestAll.java</exclude>
</excludes>
<forkCount>1</forkCount>
<reuseForks>true</reuseForks>
<printSummary>false</printSummary>
<disableXmlReport>false</disableXmlReport>
<argLine>-server -ea -Xms512m -Xmx4g</argLine>
<rerunFailingTestsCount>2</rerunFailingTestsCount>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile>
<show>public</show>
<maxmemory>1000m</maxmemory>
<author>true</author>
<version>true</version>
<doctitle><![CDATA[<h1>Blazegraph DSI Utils</h1>]]></doctitle>
<bottom><![CDATA[ <i>
Copyright (C) SYSTAP, LLC DBA Blazegraph 2006-2016. All rights reserved.<p>
Licensed under the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at<p>
http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an 'AS IS' BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.<p>
<hr>
This product includes software developed by the dsiutils project (http://dsiutils.dsi.unimi.it/).
Copyright (C) 2002-2009 Sebastiano Vigna</i>]]></bottom>
</configuration>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit4.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.blazegraph</groupId>
<artifactId>colt</artifactId>
<version>${colt.version}</version>
</dependency>
<dependency>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil</artifactId>
<version>${fastutil.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${apache.commons_io.version}</version>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>com.martiansoftware</groupId>
<artifactId>jsap</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<!-- log4j is the primary logger for bigdata. -->
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
<!-- There is a bug with log4j 1.2.15 where it has a lot -->
<!-- of dependencies that we do not need in its POM. The -->
<!-- exclusions are only necessary with that version. -->
<!--
<exclusions>
<exclusion>
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jdmk</groupId>
<artifactId>jmxtools</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jmx</groupId>
<artifactId>jmxri</artifactId>
</exclusion>
</exclusions>
-->
</dependency>
</dependencies>
</project>