evolver-ai-task-chain
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fi.evolver</groupId> <artifactId>evolver-ai-task-chain</artifactId> <version>0.0.4</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> <artifactId>evolver-ai-task-chain</artifactId> <version>0.0.4</version> <name>evolver-ai-task-chain</name> <licenses> <license> <name>All rights reserved</name> <url>https://github.com/Avarko/evolver-public-documents/blob/main/licences/all-rights-reserved.txt</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>Evolver Business Solutions Oy</name> <url>https://evolver.fi/</url> </organization> <parent> <groupId>fi.evolver</groupId> <artifactId>evolver-base</artifactId> <version>3.0.6</version> <relativePath /> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <scm> <url>https://github.com/Avarko/${project.artifactId}</url> <connection>scm:git:git@github.com:Avarko/${project.artifactId}</connection> <tag>v0.0.4</tag> </scm> <distributionManagement> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/releases</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>fi.evolver</groupId> <artifactId>evolver-ai-spring</artifactId> <version>0.9.0</version> </dependency> <dependency> <groupId>org.beryx</groupId> <artifactId>text-io</artifactId> <version>3.4.1</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.github.git-commit-id</groupId> <artifactId>git-commit-id-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>no-source</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> <configuration> <includes> <include>/**/README.md</include> </includes> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>