language-builtins-native
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.noumenadigital.platform</groupId>
<artifactId>language-builtins-native</artifactId>
<version>2026.1.0</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
<artifactId>language-builtins-native</artifactId>
<name>${project.artifactId}</name>
<description>NPL builtin native Java interfaces</description>
<url>https://documentation.noumenadigital.com/</url>
<licenses>
<license>
<name>NPL Maven Plugin License</name>
<url>https://noumenadigital.com/npl-maven-plugin-license/</url>
</license>
</licenses>
<developers>
<developer>
<organization>Noumena Digital</organization>
<organizationUrl>https://noumenadigital.com/</organizationUrl>
</developer>
</developers>
<scm>
<url>https://github.com/NoumenaDigital/platform</url>
</scm>
<parent>
<groupId>com.noumenadigital.platform</groupId>
<artifactId>parent-pom</artifactId>
<version>2026.1.0</version>
<relativePath>../parent-pom</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>values</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit5</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>kotlin-maven-plugin</artifactId>
<groupId>org.jetbrains.kotlin</groupId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.basedir}/src/main/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>