jaiclaw-memory-wiki
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.jaiclaw</groupId>
<artifactId>jaiclaw-memory-wiki</artifactId>
<version>0.9.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>
<parent>
<groupId>io.jaiclaw</groupId>
<artifactId>jaiclaw-extensions</artifactId>
<version>0.9.0</version>
</parent>
<artifactId>jaiclaw-memory-wiki</artifactId>
<name>JaiClaw :: Memory Wiki</name>
<description>Wiki knowledge base with categorized pages, JSON persistence, and CRUD tools</description>
<dependencies>
<dependency>
<groupId>io.jaiclaw</groupId>
<artifactId>jaiclaw-core</artifactId>
</dependency>
<dependency>
<groupId>io.jaiclaw</groupId>
<artifactId>jaiclaw-tools</artifactId>
</dependency>
<dependency>
<groupId>io.jaiclaw</groupId>
<artifactId>jaiclaw-docstore</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- Test: Spock + Groovy -->
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>