12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--suppress MavenPackageUpdate -->
- <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.7.5</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <groupId>fr.natan</groupId>
- <artifactId>akka-stream-file-processing-api</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>akka-stream-file-processing-api</name>
- <description>akka-stream-file-processing-api</description>
- <properties>
- <java.version>11</java.version>
- <scala.version>2.12.10</scala.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-devtools</artifactId>
- <scope>runtime</scope>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
-
- <!-- scala dependencies-->
- <dependency>
- <groupId>org.scala-lang</groupId>
- <artifactId>scala-library</artifactId>
- <version>${scala.version}</version>
- </dependency>
- <dependency>
- <groupId>org.scala-lang</groupId>
- <artifactId>scala-compiler</artifactId>
- <version>${scala.version}</version>
- </dependency>
- <!-- akka stream dependencies-->
- <dependency>
- <groupId>com.lightbend.akka</groupId>
- <artifactId>akka-stream-alpakka-csv_2.12</artifactId>
- <version>2.0.1</version>
- </dependency>
- <dependency>
- <groupId>com.typesafe.akka</groupId>
- <artifactId>akka-stream_2.12</artifactId>
- <version>2.6.6</version>
- </dependency>
-
- <!-- https://mvnrepository.com/artifact/com.typesafe.scala-logging/scala-logging-slf4j -->
- <dependency>
- <groupId>com.typesafe.scala-logging</groupId>
- <artifactId>scala-logging-slf4j_2.11</artifactId>
- <version>2.1.2</version>
- </dependency>
-
- <!-- https://mvnrepository.com/artifact/com.typesafe.play/play-json -->
- <dependency>
- <groupId>com.typesafe.play</groupId>
- <artifactId>play-json_2.12</artifactId>
- <version>2.10.0-RC7</version>
- </dependency>
-
-
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
-
- </project>
|