Bez popisu

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--suppress MavenPackageUpdate -->
  3. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.7.5</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>fr.natan</groupId>
  13. <artifactId>akka-stream-file-processing-api</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <name>akka-stream-file-processing-api</name>
  16. <description>akka-stream-file-processing-api</description>
  17. <properties>
  18. <java.version>11</java.version>
  19. <scala.version>2.12.10</scala.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-devtools</artifactId>
  29. <scope>runtime</scope>
  30. <optional>true</optional>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-test</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <!-- scala dependencies-->
  38. <dependency>
  39. <groupId>org.scala-lang</groupId>
  40. <artifactId>scala-library</artifactId>
  41. <version>${scala.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.scala-lang</groupId>
  45. <artifactId>scala-compiler</artifactId>
  46. <version>${scala.version}</version>
  47. </dependency>
  48. <!-- akka stream dependencies-->
  49. <dependency>
  50. <groupId>com.lightbend.akka</groupId>
  51. <artifactId>akka-stream-alpakka-csv_2.12</artifactId>
  52. <version>2.0.1</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.typesafe.akka</groupId>
  56. <artifactId>akka-stream_2.12</artifactId>
  57. <version>2.6.6</version>
  58. </dependency>
  59. <!-- https://mvnrepository.com/artifact/com.typesafe.scala-logging/scala-logging-slf4j -->
  60. <dependency>
  61. <groupId>com.typesafe.scala-logging</groupId>
  62. <artifactId>scala-logging-slf4j_2.11</artifactId>
  63. <version>2.1.2</version>
  64. </dependency>
  65. <!-- https://mvnrepository.com/artifact/com.typesafe.play/play-json -->
  66. <dependency>
  67. <groupId>com.typesafe.play</groupId>
  68. <artifactId>play-json_2.12</artifactId>
  69. <version>2.10.0-RC7</version>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-maven-plugin</artifactId>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>

Powered by TurnKey Linux.