devcontainer.java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>wtf.metio.devcontainer</groupId> <artifactId>devcontainer.java</artifactId> <version>2024.1.12</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ SPDX-FileCopyrightText: The devcontainer.java Authors ~ SPDX-License-Identifier: 0BSD --> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <!-- ordering follows https://maven.apache.org/developers/conventions/code.html#POM_Code_Convention --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- PARENT --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Inheritance --> <parent> <groupId>wtf.metio.maven.parents</groupId> <artifactId>maven-parents-java-prototype</artifactId> <version>2024.1.5</version> </parent> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- COORDINATES --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Maven_Coordinates --> <groupId>wtf.metio.devcontainer</groupId> <artifactId>devcontainer.java</artifactId> <version>2024.1.12</version> <packaging>jar</packaging> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- INFORMATIONS --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#More_Project_Information --> <name>devcontainer.java</name> <description>Java implementation of the devcontainer file specification</description> <url>https://github.com/metio/devcontainer.java</url> <inceptionYear>2022</inceptionYear> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- SCM --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#SCM --> <scm> <connection>scm:git:git@github.com:metio/devcontainer.java.git</connection> <developerConnection>scm:git:git@github.com:metio/devcontainer.java.git</developerConnection> <tag>HEAD</tag> <url>https://github.com/metio/devcontainer.java</url> </scm> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- ISSUE MANAGEMENT --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Issue_Management --> <issueManagement> <system>GitHub</system> <url>https://github.com/metio/devcontainer.java/issues</url> </issueManagement> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- PROPERTIES --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Properties --> <properties> <version.jdk>${javaVersion}</version.jdk> </properties> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- DEPENDENCIES --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Dependencies --> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>io.soabase.record-builder</groupId> <artifactId>record-builder-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <path> <groupId>io.soabase.record-builder</groupId> <artifactId>record-builder-processor</artifactId> <version>35</version> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>native</id> <build> <plugins> <plugin> <groupId>org.graalvm.buildtools</groupId> <artifactId>native-maven-plugin</artifactId> <extensions>true</extensions> <executions> <execution> <id>test-native</id> <goals> <goal>test</goal> </goals> <phase>test</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>