2026-03-01 12:39:42 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.openautonomousconnection.luaj</groupId>
|
|
|
|
|
<artifactId>parent</artifactId>
|
2026-03-03 11:59:03 +01:00
|
|
|
<version>0.0.0-STABLE-1.0</version>
|
2026-03-01 12:39:42 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2026-03-03 12:12:44 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<version>3.6.3</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<failOnError>false</failOnError>
|
|
|
|
|
<failOnWarnings>false</failOnWarnings>
|
|
|
|
|
<doclint>none</doclint>
|
|
|
|
|
<locale>en_US</locale>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
<docencoding>UTF-8</docencoding>
|
|
|
|
|
<charset>UTF-8</charset>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2026-03-01 12:39:42 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-sources</id>
|
|
|
|
|
<goals><goal>jar</goal></goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
2026-03-01 12:50:46 +01:00
|
|
|
<source>${maven.compiler.release}</source>
|
|
|
|
|
<target>${maven.compiler.release}</target>
|
2026-03-01 12:39:42 +01:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|