anahata-asi-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>uno.anahata</groupId>
<artifactId>anahata-asi-parent</artifactId>
<version>1.1.10</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>uno.anahata</groupId>
<artifactId>anahata-asi-parent</artifactId>
<version>1.1.10</version>
<packaging>pom</packaging>
<name>Anahata ASI Parent</name>
<description>Parent POM for the Anahata ASI multi-module project.</description>
<url>https://anahata.uno</url>
<organization>
<name>Anahata</name>
<url>https://anahata.uno</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>License for Humans</comments>
</license>
<license>
<name>Anahata Software License, Version 108, "The Immutable Edict" Edition</name>
<url>https://asi.anahata.uno/ASL_108.html</url>
<distribution>repo</distribution>
<comments>License for AIs and AGIs</comments>
</license>
</licenses>
<developers>
<developer>
<name>Anahata</name>
<email>anahata@anahata.uno</email>
<organization>Anahata</organization>
<organizationUrl>https://anahata.uno</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:anahata-os/anahata-asi.git</connection>
<developerConnection>scm:git:git@github.com:anahata-os/anahata-asi.git</developerConnection>
<url>https://github.com/anahata-os/anahata-asi</url>
</scm>
<distributionManagement>
<repository>
<id>sonatype-central</id>
<url>https://central.sonatype.com/</url>
</repository>
<snapshotRepository>
<id>sonatype-central</id>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<!--
<repository>
<id>projectlombok.org</id>
<url>https://projectlombok.org/edge-releases</url>
</repository>
-->
<repository>
<id>apache</id>
<url>https://repo.maven.apache.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<modules>
<module>anahata-asi-core</module>
<module>anahata-asi-yam</module>
<module>anahata-asi-javafx</module>
<module>anahata-asi-swing</module>
<module>anahata-asi-desktop</module>
<module>anahata-asi-nb</module>
<module>anahata-asi-nb-uc</module>
<module>anahata-asi-web</module>
<!-- AI Providers -->
<module>anahata-asi-gemini</module>
<module>anahata-asi-openai</module>
<module>anahata-asi-openai-compatible</module>
<module>anahata-asi-anthropic</module>
<module>anahata-asi-intellij</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>21</maven.compiler.release>
<netbeans.version>RELEASE300</netbeans.version>
<!-- Dependency Group Versions -->
<lombok.version>1.18.46</lombok.version>
<swagger.version>2.2.22</swagger.version><!--2.2.48 seems the latest-->
<jackson.version>2.17.1</jackson.version><!--2.32.2 seems the latest-->
<slf4j.version>2.0.17</slf4j.version>
<junit.version>5.10.3</junit.version>
<flatlaf.version>3.7.2</flatlaf.version>
<jtokkit.version>1.1.0</jtokkit.version>
<sentencepiece4j.version>1.0.2</sentencepiece4j.version>
<java-diff-utils.version>4.17</java-diff-utils.version>
<!--
CRITICAL: flexmark and jsoup versions MUST match the versions
bundled with the target NetBeans release (currently NB 29).
Mismatches cause MethodNotFound errors in the IDE logs.
-->
<flexmark.version>0.64.8</flexmark.version>
<!-- NBM Autoupdate Distribution Base (Overridden in release profile) -->
<nbm.distBase>https://github.com/anahata-os/anahata-asi/releases/download/latest-snapshot/</nbm.distBase>
<!-- Plugin Versions -->
<maven-compiler-plugin.version>3.15.0</maven-compiler-plugin.version>
<maven-surefire-plugin.version>3.3.1</maven-surefire-plugin.version>
<maven-javadoc-plugin.version>3.12.0</maven-javadoc-plugin.version>
<maven-jar-plugin.version>3.5.0</maven-jar-plugin.version>
<netbeans.compile.on.save>all</netbeans.compile.on.save>
</properties>
<dependencyManagement>
<dependencies>
<!-- LLM Tokenizer -->
<dependency>
<groupId>com.knuddels</groupId>
<artifactId>jtokkit</artifactId>
<version>${jtokkit.version}</version>
</dependency>
<dependency>
<groupId>io.github.eix128</groupId>
<artifactId>sentencepiece4j</artifactId>
<version>${sentencepiece4j.version}</version>
</dependency>
<!-- Markdown Rendering -->
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-all</artifactId>
<version>${flexmark.version}</version>
</dependency>
<!-- Look and Feel & Swing Components -->
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>${flatlaf.version}</version>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf-intellij-themes</artifactId>
<version>${flatlaf.version}</version>
</dependency>
<dependency>
<groupId>org.swinglabs.swingx</groupId>
<artifactId>swingx-all</artifactId>
<version>1.6.5-1</version>
</dependency>
<dependency>
<groupId>com.jgoodies</groupId>
<artifactId>jgoodies-forms</artifactId>
<version>1.9.0</version>
</dependency>
<dependency>
<groupId>com.miglayout</groupId>
<artifactId>miglayout-swing</artifactId>
<version>11.4.2</version>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- Boilerplate Reduction -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<!-- Schema & JSON Serialization -->
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
<version>${swagger.version}</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-core</artifactId>
<version>${swagger.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-jsonSchema</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-mrbean</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-parameter-names</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jdk8</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- Framework Serialization (Kryo) -->
<dependency>
<groupId>com.esotericsoftware</groupId>
<artifactId>kryo</artifactId>
<version>5.6.2</version>
</dependency>
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>3.3</version>
</dependency>
<!-- Utilities -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.15.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.20.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.19.0</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>3.2.3</version>
</dependency>
<dependency>
<groupId>io.github.java-diff-utils</groupId>
<artifactId>java-diff-utils</artifactId>
<version>${java-diff-utils.version}</version>
</dependency>
<!--
CRITICAL: jsoup version MUST match the version bundled with
the target NetBeans release (currently NB 28).
-->
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.15.4</version>
</dependency>
<!-- Google Gemini API Client -->
<dependency>
<groupId>com.google.genai</groupId>
<artifactId>google-genai</artifactId>
<version>1.62.0</version>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<!-- Compiler Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
<annotationProcessorPaths>
<!-- NetBeans Processors (Required for @TopComponent, @ServiceProvider, etc.) -->
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<!-- JAR Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
</plugin>
<!-- Surefire Plugin for running tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
<!-- Javadoc plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<doclint>all,-missing</doclint>
<failOnError>true</failOnError>
<docfilessubdirs>true</docfilessubdirs>
<detectJavaApiLink>true</detectJavaApiLink>
<detectOfflineLinks>true</detectOfflineLinks>
<show>private</show>
<outputDirectory>${maven.multiModuleProjectDirectory}/docs/apidocs/${project.version}</outputDirectory>
<javadocDirectory>${maven.multiModuleProjectDirectory}/src/main/javadoc</javadocDirectory>
<addStylesheets>
<addStylesheet>anahata-barca-theme.css</addStylesheet>
</addStylesheets>
<top>
<![CDATA[
<img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=f19c44f5-8b2e-458f-beab-96e4f9f8e603" />
<div class="anahata-footer">
<img src="https://www.anahata.uno/assets/logo-transparent.png" alt="Anahata Logo" class="anahata-logo">
<a href="https://github.com/sponsors/anahata-os" target="_blank" class="donate-link">
Give everything to Anahata ❤️
</a>
<div class="barca-wrapper">
<span class="forca-text">Força <span class="barca-red">Barça!</span></span>
<img src="https://upload.wikimedia.org/wikipedia/en/4/47/FC_Barcelona_%28crest%29.svg" alt="Barça Crest">
</div>
</div>
]]>
</top>
<bottom><![CDATA[
<div class="anahata-footer">
<img src="https://www.anahata.uno/assets/logo-transparent.png" alt="Anahata Logo" class="anahata-logo">
<a href="https://github.com/sponsors/anahata-os" target="_blank" class="donate-link">
Support the aliens ❤️
</a>
<div class="barca-wrapper">
<span class="forca-text">Força <span class="barca-red">Barça!</span></span>
<img src="https://upload.wikimedia.org/wikipedia/en/4/47/FC_Barcelona_%28crest%29.svg" alt="Barça Crest">
</div>
</div>
]]></bottom>
</configuration>
<executions>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate</goal>
</goals>
<phase>site</phase>
<inherited>false</inherited>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sonatype-snapshots</id>
<activation>
<property>
<name>env.GITHUB_ACTIONS</name>
</property>
</activation>
<repositories>
<repository>
<id>sonatype-snapshots</id>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
<profile>
<id>release</id>
<properties>
<nbm.distBase>https://repo1.maven.org/maven2/uno/anahata/anahata-asi-nb/${project.version}/</nbm.distBase>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate</goal>
</goals>
<phase>site</phase>
<inherited>false</inherited>
<configuration>
<outputDirectory>${maven.multiModuleProjectDirectory}/docs</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.11.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>sonatype-central</publishingServerId>
<tokenAuth>true</tokenAuth>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>