flower-agent-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.flowerjvm</groupId>
<artifactId>flower-agent-parent</artifactId>
<version>0.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.flowerjvm</groupId>
<artifactId>flower-agent-parent</artifactId>
<version>0.2.0</version>
<packaging>pom</packaging>
<name>flower-agent Parent</name>
<description>Flower-native agent loop library.</description>
<url>https://github.com/flowerjvm/flower-agent</url>
<inceptionYear>2026</inceptionYear>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>parkKevinSB</id>
<name>Kevin SB Park</name>
<email>oiltrustkr@gmail.com</email>
<url>https://github.com/parkKevinSB</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/flowerjvm/flower-agent.git</connection>
<developerConnection>scm:git:ssh://git@github.com/flowerjvm/flower-agent.git</developerConnection>
<url>https://github.com/flowerjvm/flower-agent</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/flowerjvm/flower-agent/issues</url>
</issueManagement>
<modules>
<module>flower-agent-core</module>
<module>flower-agent-recipes</module>
<module>flower-agent-observability</module>
<module>flower-agent-model-openai-compatible</module>
</modules>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/flowerjvm/flower-agent</url>
</repository>
<snapshotRepository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/flowerjvm/flower-agent</url>
</snapshotRepository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.release>21</maven.compiler.release>
<flower.version>0.1.2</flower.version>
<jackson.version>2.17.2</jackson.version>
<junit-jupiter.version>5.10.3</junit-jupiter.version>
<assertj.version>3.26.3</assertj.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
<maven-deploy-plugin.version>3.1.3</maven-deploy-plugin.version>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.10.1</maven-javadoc-plugin.version>
<maven-gpg-plugin.version>3.2.8</maven-gpg-plugin.version>
<central-publishing-maven-plugin.version>0.11.0</central-publishing-maven-plugin.version>
<central.autoPublish>true</central.autoPublish>
<central.skipPublishing>false</central.skipPublishing>
<central.waitUntil>published</central.waitUntil>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.github.flowerjvm</groupId>
<artifactId>flower-agent-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.flowerjvm</groupId>
<artifactId>flower-agent-recipes</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.flowerjvm</groupId>
<artifactId>flower-agent-observability</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.flowerjvm</groupId>
<artifactId>flower-agent-model-openai-compatible</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.flowerjvm</groupId>
<artifactId>flower-core</artifactId>
<version>${flower.version}</version>
</dependency>
<dependency>
<groupId>io.github.flowerjvm</groupId>
<artifactId>flower-testkit</artifactId>
<version>${flower.version}</version>
</dependency>
<dependency>
<groupId>io.github.flowerjvm</groupId>
<artifactId>flower-observability</artifactId>
<version>${flower.version}</version>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit-jupiter.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<release>${maven.compiler.release}</release>
<compilerArgs>
<arg>-Xlint:all</arg>
<arg>-Xlint:-serial</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<useModulePath>false</useModulePath>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<doclint>none</doclint>
<quiet>true</quiet>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
<configuration>
<bestPractices>true</bestPractices>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</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>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<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>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>${central-publishing-maven-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>${central.autoPublish}</autoPublish>
<skipPublishing>${central.skipPublishing}</skipPublishing>
<waitUntil>${central.waitUntil}</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>