Core Lib.
The Core library of the JRebirth Framework.
Here is the list of declaration for core. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jrebirth.af</groupId> <artifactId>core</artifactId> <version>7.7.1</version> </dependency>
If you think this Maven repository POM file listing for core is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The core-7.7.1 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Log | slf4j-api 1.7.5 The slf4j API | 610 |
Log | logback-classic 1.0.13 logback-classic module | 299 |
Here is the content of the POM 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>org.jrebirth</groupId> <artifactId>af</artifactId> <version>7.7.1</version> <relativePath>..</relativePath> </parent> <groupId>org.jrebirth.af</groupId> <artifactId>core</artifactId> <packaging>jar</packaging> <name>Core Lib</name> <description>The Core library of the JRebirth Framework</description> <dependencies> <dependency> <groupId>org.jrebirth.af</groupId> <artifactId>preloader</artifactId> <version>7.7.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.5</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.0.13</version> <!-- <optional>true</optional> --> <scope>provided</scope> </dependency> </dependencies> </project>