Download chatter-bot-api-1.3.2.jar file

Introduction

You can download chatter-bot-api-1.3.2.jar in this page.

License

GNU LESSER GENERAL PUBLIC LICENSE

Type List

chatter-bot-api-1.3.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/ca.pjer/chatter-bot-api/pom.properties
META-INF/maven/ca.pjer/chatter-bot-api/pom.xml
com.google.code.chatterbotapi.ChatterBot.class
com.google.code.chatterbotapi.ChatterBotFactory.class
com.google.code.chatterbotapi.ChatterBotSession.class
com.google.code.chatterbotapi.ChatterBotThought.class
com.google.code.chatterbotapi.ChatterBotType.class
com.google.code.chatterbotapi.Cleverbot.class
com.google.code.chatterbotapi.Pandorabots.class
com.google.code.chatterbotapi.Utils.class

Pom

chatter-bot-api-1.3.2.pom file content.

<?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>

    <groupId>ca.pjer</groupId>
    <artifactId>chatter-bot-api</artifactId>
    <version>1.3.2</version>

    <name>Chatter Bot API</name>
    <description>
        A JAVA (also Mono/.NET, Python and PHP) chatter bot API
        that supports Cleverbot, JabberWacky and Pandorabots.
    </description>
    <url>https://code.google.com/p/chatter-bot-api/</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>1.5</java.version>
    </properties>

    <licenses>
        <license>
            <name>GNU LESSER GENERAL PUBLIC LICENSE</name>
            <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
        </license>
    </licenses>

    <developers>
        <developer>
            <name>Pierre-David B?langer</name>
            <email>pierredavidbelanger@gmail.com</email>
            <organization>PjEr.ca</organization>
            <organizationUrl>http://www.pjer.ca/</organizationUrl>
        </developer>
    </developers>

    <scm>
        <connection>scm:svn:https://chatter-bot-api.googlecode.com/svn/trunk/</connection>
        <developerConnection>scm:svn:https://chatter-bot-api.googlecode.com/svn/trunk/</developerConnection>
        <url>https://chatter-bot-api.googlecode.com/svn/trunk/</url>
    </scm>

    <distributionManagement>
        <snapshotRepository>
            <id>ossrh</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </snapshotRepository>
        <repository>
            <id>ossrh</id>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.2.1</version>
                <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>
                <version>2.9.1</version>
                <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>
                <version>1.5</version>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <!-- HOWTO: http://central.stage.sonatype.org/pages/apache-maven.html -->
                <groupId>org.sonatype.plugins</groupId>
                <artifactId>nexus-staging-maven-plugin</artifactId>
                <version>1.6.2</version>
                <extensions>true</extensions>
                <configuration>
                    <serverId>ossrh</serverId>
                    <nexusUrl>https://oss.sonatype.org/</nexusUrl>
                    <autoReleaseAfterClose>true</autoReleaseAfterClose>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

POM Entry

<dependency>
   <groupId>ca.pjer</groupId>
   <artifactId>chatter-bot-api</artifactId>
   <version>1.3.2</version>
</dependency>

Download

If you think the following chatter-bot-api-1.3.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download chatter-bot-api-1.3.2.jar file




PreviousNext

Related