83 lines
3.2 KiB
XML
83 lines
3.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.baeldung.twitterhdfs</groupId>
|
|
<artifactId>twitterhdfs</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<name>twitterhdfs</name>
|
|
<packaging>jar</packaging>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.1.13.RELEASE</version>
|
|
<relativePath />
|
|
</parent>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- for junit5 to successfully be able to discover junit4 tests, we need 4.12+ version of
|
|
junit:junit in the classpath. hence forcing the latest 4.13.2 available version for junit5 compatibility -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit</groupId>
|
|
<artifactId>junit-bom</artifactId>
|
|
<version>${junit-jupiter.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<!-- Spring Stream Starter Apps -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud.stream.app</groupId>
|
|
<artifactId>spring-cloud-starter-stream-source-twitterstream</artifactId>
|
|
<version>${spring-cloud-starter-stream.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud.stream.app</groupId>
|
|
<artifactId>spring-cloud-starter-stream-sink-hdfs</artifactId>
|
|
<version>${spring-cloud-starter-stream.version}</version>
|
|
</dependency>
|
|
<!-- JSTL/JSP -->
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>jstl</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.vintage</groupId>
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
<finalName>twitterhdfs</finalName>
|
|
</build>
|
|
|
|
<properties>
|
|
<spring-cloud-starter-stream.version>2.1.2.RELEASE</spring-cloud-starter-stream.version>
|
|
<!-- used only in dependency management to force this version, not included as a direct dependency -->
|
|
<junit.version>4.13.2</junit.version>
|
|
<junit-jupiter.version>5.8.1</junit-jupiter.version>
|
|
</properties>
|
|
|
|
</project> |