jbot-example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>me.ramswaroop.jbot</groupId>
<artifactId>jbot-example</artifactId>
<version>4.1.2-rc.2</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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>me.ramswaroop.jbot</groupId>
<artifactId>jbot-parent</artifactId>
<version>4.1.2-rc.2</version>
</parent>
<artifactId>jbot-example</artifactId>
<version>4.1.2-rc.2</version>
<packaging>jar</packaging>
<name>JBot Example</name>
<description>A sample Slack/Facebook bot using JBot.</description>
<dependencies>
<dependency>
<groupId>me.ramswaroop.jbot</groupId>
<artifactId>jbot</artifactId>
<version>4.1.2-rc.2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>