io.quarkus:quarkus-registry-descriptor

Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs

License

License

Categories

Categories

Quarkus Container Microservices
GroupId

GroupId

io.quarkus
ArtifactId

ArtifactId

quarkus-registry-descriptor
Last Version

Last Version

1.0.0.Beta8
Release Date

Release Date

Type

Type

jar
Description

Description

Provides, via submodules, a base configuration for JBoss project builds, as well as a derived configuration supporting multi-release JARs
Project Organization

Project Organization

JBoss by Red Hat
Source Code Management

Source Code Management

https://github.com/quarkusio/quarkus-registry-descriptor

Download quarkus-registry-descriptor

How to add to project

<!-- https://jarcasting.com/artifacts/io.quarkus/quarkus-registry-descriptor/ -->
<dependency>
    <groupId>io.quarkus</groupId>
    <artifactId>quarkus-registry-descriptor</artifactId>
    <version>1.0.0.Beta8</version>
</dependency>
// https://jarcasting.com/artifacts/io.quarkus/quarkus-registry-descriptor/
implementation 'io.quarkus:quarkus-registry-descriptor:1.0.0.Beta8'
// https://jarcasting.com/artifacts/io.quarkus/quarkus-registry-descriptor/
implementation ("io.quarkus:quarkus-registry-descriptor:1.0.0.Beta8")
'io.quarkus:quarkus-registry-descriptor:jar:1.0.0.Beta8'
<dependency org="io.quarkus" name="quarkus-registry-descriptor" rev="1.0.0.Beta8">
  <artifact name="quarkus-registry-descriptor" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.quarkus', module='quarkus-registry-descriptor', version='1.0.0.Beta8')
)
libraryDependencies += "io.quarkus" % "quarkus-registry-descriptor" % "1.0.0.Beta8"
[io.quarkus/quarkus-registry-descriptor "1.0.0.Beta8"]

Dependencies

compile (6)

Group / Artifact Type Version
io.quarkus : quarkus-bootstrap-core jar 1.5.1.Final
io.quarkus : quarkus-platform-descriptor-api jar 1.5.1.Final
io.quarkus : quarkus-platform-descriptor-json Optional jar 1.5.1.Final
com.fasterxml.jackson.core : jackson-databind jar
com.fasterxml.jackson.dataformat : jackson-dataformat-yaml jar
io.smallrye.reactive : mutiny jar

provided (2)

Group / Artifact Type Version
org.immutables : value jar 2.8.3
com.google.code.findbugs : jsr305 jar 3.0.2

test (3)

Group / Artifact Type Version
org.junit.jupiter : junit-jupiter jar
org.assertj : assertj-core jar
org.mockito : mockito-core jar

Project Modules

There are no modules declared in this project.

Quarkus Registry Descriptor

This project provides a model and a parser API to handle the Quarkus extension registry.

Definitions

Repository

A repository is a local directory (which can be cloned from a Git repository) with the following structure:

.
├── extensions
│   └── jsf.json
└── platforms.json

Extensions

For maintenance purposes, each extension is declared in its own file and has the following structure:

{
  "group-id": "org.apache.myfaces.core.extensions.quarkus",
  "artifact-id": "quarkus-myfaces",
  "releases": [
    {
      "version": "2.3-next",
      "quarkus-core":  "1.3.1.Final"
    },
    {
      "version": "2.4-next",
      "quarkus-core": "1.3.2.Final"
    }
  ]
}

The Quarkus extension MUST be released to a Maven repository. The descriptor states the GAV and the Quarkus version for each release (which is listed here for performance purposes - if not specified, the parser will attempt to resolve using the Maven Resolver API)

Platforms

Platforms are a set of extensions of a specific version and MUST exist as a BOM. Since the order is important, it is declared as a single JSON (ordered by priority - the preferred BOMs in the top)

[
  {
    "group-id": "io.quarkus",
    "artifact-id": "quarkus-universe-bom",
    "releases": [
      {
        "version": "1.3.1.Final"
      },
      {
        "version": "1.3.2.Final"
      }
    ]
  },
  {
    "group-id": "io.quarkus",
    "artifact-id": "quarkus-bom",
    "artifact-id-json": "quarkus-bom-descriptor-json",
    "releases": [
      {
        "version": "1.3.1.Final"
      },
      {
        "version": "1.3.2.Final"
      },
      {
        "version": "1.4.0.CR1"
      }
    ]
  }
]

The idea is to provide an utility that would allow to perform all sorts of queries across the registry, such as:

  • which Quarkus Core versions are available;
  • which platforms are available;
  • which extensions are available.

For a given Quarkus Core version:

  • list the available platforms;
  • list all the extensions including those that aren't a part of any platform.

For a given platform:

  • list the platform versions available (i.e. releases of this platform);
  • list Quarkus Core versions it supports.

For a given platform release:

  • Quarkus Core version;
  • Extension releases that are included.

For a given extension:

  • list available versions of the extension (i.e. releases of the extension);
  • (The list could be easily extended)

For a given extension release:

  • Quarkus Core versions it was found to be compatible with;
  • Platforms it is appearing in.
io.quarkus

QuarkusIO

Quarkus: Supersonic Subatomic Java

Versions

Version
1.0.0.Beta8
1.0.0.Beta7
1.0.0.Beta6
1.0.0.Beta5
1.0.0.Beta4
1.0.0.Beta3
1.0.0.Beta2
1.0.0.Beta1