rss-bot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.finos.symphony.toolkit.tools</groupId> <artifactId>rss-bot</artifactId> <version>7.20.4</version> </dependency>
<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>org.finos.symphony.toolkit</groupId> <artifactId>symphony-java-toolkit</artifactId> <version>7.20.4</version> <relativePath>../..</relativePath> </parent> <groupId>org.finos.symphony.toolkit.tools</groupId> <artifactId>rss-bot</artifactId> <name>RSS Publications Bot</name> <description>Sends RSS Feeds to Symphony Rooms</description> <properties> <spring-boot.run.main-class>org.finos.symphony.rssbot.RSSBot</spring-boot.run.main-class> </properties> <dependencies> <dependency> <groupId>org.finos.symphony.toolkit</groupId> <artifactId>chat-workflow-spring-boot-starter</artifactId> <version>7.20.4</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>com.rometools</groupId> <artifactId>rome</artifactId> <version>1.15.0</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-common</artifactId> </dependency> <dependency> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId> </dependency> <dependency> <groupId>org.glassfish.jersey.inject</groupId> <artifactId>jersey-hk2</artifactId> </dependency> <dependency> <groupId>org.glassfish.jersey.connectors</groupId> <artifactId>jersey-apache-connector</artifactId> </dependency> <dependency> <groupId>org.glassfish.jersey.media</groupId> <artifactId>jersey-media-multipart</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <goals> <goal>repackage</goal> </goals> <configuration> <mainClass>${spring-boot.run.main-class}</mainClass> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>