bindex-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.machanism.machai</groupId>
<artifactId>bindex-core</artifactId>
<version>1.2.0</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>
<parent>
<groupId>org.machanism.machai</groupId>
<artifactId>machai</artifactId>
<version>1.2.0</version>
</parent>
<artifactId>bindex-core</artifactId>
<name>Bindex Core</name>
<description>
bindex-core provides core functions for managing bindex metadata,
including library generation, registration, selection, and project
building.
It enables automated processing of library metadata to support
efficient application discovery, integration, and assembly workflows.
</description>
<profiles>
<profile>
<id>pack</id>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
<outputDirectory>
${env.MACHANISM_PACK_DIR}/machai/${project.artifactId}/releases</outputDirectory>
</configuration>
<executions>
<execution>
<id>build-artifact</id>
<phase>install</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<properties>
<maven.javadoc.skip>false</maven.javadoc.skip>
<maven.compiler.release>17</maven.compiler.release>
<plantuml-generator.scanPackages>org.machanism.machai.bindex*</plantuml-generator.scanPackages>
</properties>
<dependencies>
<dependency>
<groupId>org.machanism.machai</groupId>
<artifactId>genai-client</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>org.tomlj</groupId>
<artifactId>tomlj</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>com.graphql-java</groupId>
<artifactId>graphql-java</artifactId>
<version>22.3</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${maven.version}</version>
</dependency>
<!-- MongoDB Java Sync Driver v5.6.4 or later -->
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-sync</artifactId>
<version>5.6.4</version>
</dependency>
<!-- Test-only: enable Mockito static mocking on Java 8 -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
</dependency>
<!-- Test-only: JUnit Jupiter parameterized tests support (Sonar
java:S5976) -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
</dependency>
<!-- Test-only: ByteBuddy override for Java 21 compatibility with
Mockito 5.2.0 -->
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jsonschema2pojo</groupId>
<artifactId>jsonschema2pojo-maven-plugin</artifactId>
<version>1.3.3</version>
<configuration>
<sourceDirectory>${basedir}/src/main/resources/schema</sourceDirectory>
<targetPackage>org.machanism.machai.schema</targetPackage>
<useTitleAsClassname>true</useTitleAsClassname>
</configuration>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>
${project.build.directory}/generated-sources/jsonschema2pojo</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>org/machanism/machai/schema/*.*</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<excludePackageNames>org.machanism.machai.schema</excludePackageNames>
<links>
<link>
https://docs.oracle.com/en/java/javase/11/docs/api/</link>
<link>
https://macha.machanism.org/core/core-commons/configurator/apidocs/</link>
<link>
https://machai.machanism.org/project-layout/apidocs/</link>
</links>
</configuration>
</plugin>
</plugins>
</reporting>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/machanism-org/machai.git</connection>
<developerConnection>scm:git:https://github.com/machanism-org/machai.git</developerConnection>
<url>https://github.com/machanism-org/machai.git</url>
</scm>
<issueManagement>
<url>https://github.com/machanism-org/machai/issues</url>
</issueManagement>
</project>