Fork of Program AB, the reference implementation of the AIML 2.0 draft specification. AIML is a widely adopted standard for creating chat bots and mobile virtual assistants like ALICE, Mitsuku, English Tutor, The Professor, S.U.P.E.R. and many more.
<repositories>
<repository>
<id>soluvas-public-snapshots</id>
<url>http://nexus.bippo.co.id/nexus/content/repositories/soluvas-public-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.alicebot.ab</groupId>
<artifactId>ab</artifactId>
<version>4.0.4-SNAPSHOT</version>
</dependency>
</dependencies>
repositories {
maven {
url 'http://nexus.bippo.co.id/nexus/content/repositories/soluvas-public-snapshots/'
}
}
dependencies {
compile 'org.alicebot.ab:ab:4.0.4-SNAPSHOT'
}
-
Build using Maven to your local Maven repository:
mvn -DskipTests install
-
Use in your Maven project:
<dependencies> <dependency> <groupId>org.alicebot.ab</groupId> <artifactId>ab</artifactId> <version>4.0.4-SNAPSHOT</version> </dependency> </dependencies>
or Gradle project:
dependencies { compile 'org.alicebot.ab:ab:4.0.4-SNAPSHOT' }
- Build entirely with Maven, without embedded JARs in project sources [done]
- Replace System.out.println with SLF4J logging [done]
- Replace ex.printStackTrace(); with detailed Exception [partial]
- Replace commons-logging dependency with SLF4J 1.6/1.7 [done]
- -Allow loading bot data files from classpath- (too complex, and probably non-performant in Android anyway, alternative: extract the bot ZIP file to @getCacheDir()@)
- Replace json dependency with jackson 2.2
- Run well with Android Gingerbread (API 9)