slack-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.hndrs.slack</groupId> <artifactId>slack-spring-boot-starter</artifactId> <version>3.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.hndrs.slack</groupId> <artifactId>slack-spring-boot-starter</artifactId> <version>3.0.0</version> <name>Slack Spring Boot Starter</name> <description>Spring Boot Starter package that aggregates and autoconfigures a slack application</description> <url>https://github.com/hndrs/slack-spring-boot-starter</url> <organization> <name>hndrs</name> <url>https://oss.hndrs.io</url> </organization> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <id>marvinschramm</id> <name>Marvin Schramm</name> <email>marvin.schramm@gmail.com</email> </developer> <developer> <id>bendenger</id> <name>Ben Denger</name> <email>ben.denger.bd@gmail.com</email> </developer> </developers> <contributors> <contributor> <name>Jascha Ostholt</name> <email>jascha.ostholt@gmail.com</email> </contributor> <contributor> <name>Volodymyr Abaza</name> <email>abaza.org@gmail.com</email> </contributor> <contributor> <name>Alexander Militzer</name> <email>alex.militzer@gmail.com</email> </contributor> </contributors> <scm> <connection>scm:git:git://github.com/hndrs/slack-spring-boot-starter.git</connection> <url>https://github.com/hndrs/slack-spring-boot-starter</url> </scm> <dependencies> <dependency> <groupId>io.hndrs.slack</groupId> <artifactId>slack-spring-boot-autoconfigure</artifactId> <version>3.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.hndrs.slack</groupId> <artifactId>slack-spring-boot</artifactId> <version>3.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-kotlin</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>1.4.20</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>1.4.20</version> <scope>runtime</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.4.0</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> </project>