Home

Awesome

Plume Dependencies

Maven Central

Plume Dependencies fixed all maven dependencies that are used in the Plume ecosystem:

This Maven import feature enables:

<dependency>
  <groupId>com.coreoz</groupId>
  <artifactId>plume-conf</artifactId>
</dependency>

This project provides a POM file that should be imported in the maven project file when using Plume Framework. The pom.xml should contains something like:

<project>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>17</maven.compiler.source>
    <maven.compiler.target>17</maven.compiler.target>

    <plume.version>4.3.6</plume.version>
  </properties>

  <!-- The POM import of Plume Dependencies -->
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>com.coreoz</groupId>
        <artifactId>plume-dependencies</artifactId>
        <version>${plume.version}</version>
        <scope>import</scope>
        <type>pom</type>
      </dependency>
    </dependencies>
  </dependencyManagement>
</project>