libj
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.libj</groupId> <artifactId>libj</artifactId> <version>0.9.9</version> </dependency>
<!-- Copyright (c) 2006 LibJ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. You should have received a copy of The MIT License (MIT) along with this program. If not, see <http://opensource.org/licenses/MIT/>. --> <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>org.entinae</groupId> <artifactId>pom</artifactId> <version>1.0.8</version> </parent> <groupId>org.libj</groupId> <artifactId>libj</artifactId> <version>0.9.9</version> <packaging>pom</packaging> <url>https://www.libj.org/</url> <name>LibJ</name> <description> Collection of modules that supplement Java APIs. </description> <organization> <name>LibJ</name> <url>https://www.libj.org/</url> </organization> <scm> <url>https://github.com/libj/libj</url> <connection>scm:git:https://github.com/libj/libj.git</connection> <developerConnection>scm:git:https://github.com/libj/libj.git</developerConnection> <tag>HEAD</tag> </scm> <licenses> <license> <name>The MIT License (MIT)</name> <url>https://opensource.org/licenses/MIT/</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>safris</id> <name>Seva Safris</name> <email>seva@safris.org</email> </developer> </developers> <modules> <module>test</module> <module>logging</module> <module>console</module> <module>util</module> <module>net</module> <module>math</module> <module>io</module> <module>lang</module> <module>exec</module> <module>jci</module> <module>mail</module> <module>sql</module> </modules> <build> <pluginManagement> <plugins> <plugin> <groupId>org.entinae</groupId> <artifactId>coverallsio-maven-plugin</artifactId> <configuration> <skipModule>libj</skipModule> </configuration> </plugin> </plugins> </pluginManagement> </build> <dependencies> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-migrationsupport</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.11</version> <!-- All versions higher than 1.2.11 don't compile for jdk8 (not even 1.2.12 is working due to google-cloud-logging-logback) --> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.10.1</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-migrationsupport</artifactId> <version>5.10.1</version> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <version>5.10.1</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.11.0</version> <!-- All versions of v5+ don't run for jdk8 --> </dependency> </dependencies> </dependencyManagement> </project>