Maven Repository - POM file for Library core 7.7.2 7.7.2

Summary

Core Lib.

The Core library of the JRebirth Framework.

Declaration

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.2</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.

Depends on

The core-7.7.2 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Logslf4j-api 1.7.5
The slf4j API
610
Loglogback-classic 1.0.13
logback-classic module
299




POM File Source

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.2</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.2</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>