Apache maven

Clone this repo:
  1. b59b15a Bump Maven in CI to 4.0 rc4 by Sylwester Lachiewicz · 5 weeks ago main
  2. b9fd6ec Bump org.apache.maven.plugins:maven-invoker-plugin from 3.9.0 to 3.9.1 by dependabot[bot] · 7 weeks ago
  3. 1a7e383 Bump org.apache.maven.extensions:maven-extensions from 43 to 45 by dependabot[bot] · 9 weeks ago
  4. 4fa0d62 Archive repository (#21) by Guillaume Nodet · 5 months ago
  5. 078be14 Update plugins and clean deps by Guillaume Nodet · 9 months ago

⚠️ WARNING ⚠️

This extension has several significant limitations:

  • No location tracking support, making error messages less helpful
  • Uses an unmaintained library as its core dependency

Consider using Mason instead, which provides a more robust and maintained alternative.

📢 ARCHIVED REPOSITORY 📢

This repository has been archived and is no longer maintained. Please use Mason instead.

Apache Maven Hocon Extension

Apache License, Version 2.0, January 2004 Maven Central

This project provides a Hocon POM parser extension for Maven 4. It allows POMs to be written with the Hocon syntax, which is a superset of the JSON syntax.

License

This code is under the [Apache License, Version 2.0, January 2004][./LICENSE].

See the NOTICE file for required notices and attributions.

Usage

To use this extension, the following declaration needs to be done in your ${rootDirectory}/.mvn/extensions.xml:

<extensions xmlns="http://maven.apache.org/EXTENSIONS/1.2.0">
    <extension>
        <groupId>org.apache.maven.extensions</groupId>
        <artifactId>maven-hocon-extension</artifactId>
        <version>@project.version@</version>
    </extension>
</extensions>

This allows defining a POM using Hocon syntax:

modelVersion = 4.1.0
parent {
    groupId = org.apache.maven.hocon.its
    artifactId = parent
    version = 1.0.0-SNAPSHOT
}
artifactId = test

properties = {
  "my.property" = foo
  pluginVersion = 3.9
}

dependencies = [
    # just add one dummy dependency
    "com.typesafe:config:1.4.2"
]