resource
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.microfalx.resource</groupId>
<artifactId>resource</artifactId>
<version>1.0.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you 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.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.microfalx.resource</groupId>
<artifactId>resource</artifactId>
<version>1.0.2</version>
<packaging>pom</packaging>
<parent>
<groupId>net.microfalx</groupId>
<artifactId>pom</artifactId>
<version>1.0.11</version>
</parent>
<name>Resource</name>
<description>Low level resource abstraction for Java projects.</description>
<url>https://github.com/adrian-tarau/resource</url>
<organization>
<name>Adrian Tarau</name>
<url>https://github.com/adrian-tarau</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/adrian-tarau/resource</connection>
<developerConnection>scm:git:https://github.com/adrian-tarau/resource</developerConnection>
<url>https://github.com/adrian-tarau/resource/tree/main</url>
</scm>
<modules>
<module>core</module>
<module>archive</module>
<module>sftp</module>
<module>s3</module>
<module>rocksdb</module>
<module>bom</module>
</modules>
<issueManagement>
<system>github</system>
<url>https://github.com/adrian-tarau/resource/issues</url>
</issueManagement>
<inceptionYear>2022</inceptionYear>
<properties>
<java.version>11</java.version>
<bom.version>1.0.17</bom.version>
<lang.version>1.0.2</lang.version>
<metrics.version>1.0.1</metrics.version>
<jacoco.file>jacoco.exec</jacoco.file>
<jacoco.ut.dest>${project.build.directory}/${jacoco.file}</jacoco.ut.dest>
<jacoco.reports>${project.reporting.outputDirectory}/jacoco</jacoco.reports>
</properties>
<developers>
<developer>
<name>Adrian Tarau</name>
<email>adrian@tarau.net</email>
</developer>
</developers>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>net.microfalx.bom</groupId>
<artifactId>bom-base</artifactId>
<version>${bom.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>net.microfalx</groupId>
<artifactId>lang</artifactId>
<version>${lang.version}</version>
</dependency>
<dependency>
<groupId>net.microfalx</groupId>
<artifactId>metrics</artifactId>
<version>${metrics.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- Runtime -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>net.microfalx</groupId>
<artifactId>metrics</artifactId>
</dependency>
<dependency>
<groupId>net.microfalx</groupId>
<artifactId>lang</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
</dependency>
<!-- Tests -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>