AppModel

mill.javalib.quarkus.ApplicationModelWorker.AppModel
case class AppModel(projectRoot: Path, buildDir: Path, buildFile: Path, quarkusVersion: String, groupId: String, artifactId: String, version: String, sourcesDir: Path, resourcesDir: Path, compiledPath: Path, compiledResources: Path, boms: Seq[String], dependencies: Seq[Dependency], nativeImage: String)

This app model has the necessary elements to build the Quarkus Application Model. This data class is used to populate the quarkus ApplicationModelBuilder and PlatformInfo which are serialized for the QuarkusBootstrap to be able to create the Quarkus build artifacts.

The effort for Quarkus support is ongoing.

For details on the requirements see https://github.com/quarkusio/quarkus/tree/main/independent-projects/bootstrap/app-model/src/main/java/io/quarkus/bootstrap/model

Attributes

Source
ApplicationModelWorker.scala
Graph
Supertypes
trait Serializable
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

An iterator over the names of all the elements of this product.

An iterator over the names of all the elements of this product.

Attributes

Inherited from:
Product
Source
Product.scala
def productIterator: Iterator[Any]

An iterator over all the elements of this product.

An iterator over all the elements of this product.

Attributes

Returns

in the default implementation, an Iterator[Any]

Inherited from:
Product
Source
Product.scala