mirror of
https://github.com/wahyd4/coreutils.git
synced 2026-08-09 04:46:47 +10:00
88 lines
2.9 KiB
XML
88 lines
2.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Core Utils - Common Utilities.
|
|
Copyright 2015-2016 GRyCAP (Universitat Politecnica de Valencia)
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
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.
|
|
|
|
This product combines work with different licenses. See the "NOTICE" text
|
|
file for details on the various modules and licenses.
|
|
|
|
The "NOTICE" text file is part of the distribution. Any derivative works
|
|
that you distribute must include a readable copy of the "NOTICE" text file.
|
|
-->
|
|
<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>es.upv.grycap.coreutils</groupId>
|
|
<artifactId>coreutils</artifactId>
|
|
<version>0.2.0</version>
|
|
</parent>
|
|
|
|
<artifactId>coreutils-common</artifactId>
|
|
<name>Common base utilities</name>
|
|
<description>Provides utilities to simplify common development tasks</description>
|
|
<url>https://github.com/grycap/coreutils</url>
|
|
|
|
<dependencies>
|
|
<!-- GRyCAP common utilities -->
|
|
<dependency>
|
|
<groupId>es.upv.grycap.coreutils</groupId>
|
|
<artifactId>coreutils-test</artifactId>
|
|
<version>${es.upv.grycap.coreutils.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- JSR-305: Annotations for Software Defect Detection -->
|
|
<dependency>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>jsr305</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Google Guava core libraries for Java -->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Apache Commons -->
|
|
<dependency> <!-- Utility classes for the classes that are considered to be Java standards -->
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
</dependency>
|
|
<dependency> <!-- I/O utilities -->
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Configuration library -->
|
|
<dependency>
|
|
<groupId>com.typesafe</groupId>
|
|
<artifactId>config</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Logback and SLF4J logging framework -->
|
|
<dependency>
|
|
<groupId>ch.qos.logback</groupId>
|
|
<artifactId>logback-classic</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |