No Description

pom.xml 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>groupId</groupId>
  7. <artifactId>mediahub</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>18</maven.compiler.source>
  11. <maven.compiler.target>18</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <scala.binary.version>2.13</scala.binary.version>
  14. </properties>
  15. <parent>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-parent</artifactId>
  18. <version>2.7.3</version>
  19. <relativePath/>
  20. </parent>
  21. <build>
  22. <plugins>
  23. <plugin>
  24. <groupId>org.apache.maven.plugins</groupId>
  25. <artifactId>maven-compiler-plugin</artifactId>
  26. <version>3.8.1</version>
  27. <configuration>
  28. <source>18</source>
  29. <target>18</target>
  30. </configuration>
  31. </plugin>
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-shade-plugin</artifactId>
  35. <version>3.2.4</version>
  36. <configuration>
  37. </configuration>
  38. <executions>
  39. <execution>
  40. <phase>package</phase>
  41. <goals>
  42. <goal>shade</goal>
  43. </goals>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. <plugin>
  48. <groupId>net.alchim31.maven</groupId>
  49. <artifactId>scala-maven-plugin</artifactId>
  50. <version>3.1.3</version>
  51. <executions>
  52. <execution>
  53. <goals>
  54. <goal>compile</goal>
  55. <goal>testCompile</goal>
  56. </goals>
  57. </execution>
  58. </executions>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. <dependencyManagement>
  63. <dependencies>
  64. <dependency>
  65. <groupId>com.typesafe.akka</groupId>
  66. <artifactId>akka-bom_${scala.binary.version}</artifactId>
  67. <version>2.6.20</version>
  68. <type>pom</type>
  69. <scope>import</scope>
  70. </dependency>
  71. </dependencies>
  72. </dependencyManagement>
  73. <dependencies>
  74. <!-- Scala -->
  75. <dependency>
  76. <groupId>org.scala-lang</groupId>
  77. <artifactId>scala-library</artifactId>
  78. <version>2.13.8</version>
  79. </dependency>
  80. <!-- Akka stream -->
  81. <dependency>
  82. <groupId>com.typesafe.akka</groupId>
  83. <artifactId>akka-stream_${scala.binary.version}</artifactId>
  84. </dependency>
  85. <!-- alpakka -->
  86. <dependency>
  87. <groupId>com.lightbend.akka</groupId>
  88. <artifactId>akka-stream-alpakka-file_2.13</artifactId>
  89. <version>4.0.0</version>
  90. </dependency>
  91. <!-- SpringBoot -->
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-web</artifactId>
  95. <exclusions>
  96. <exclusion>
  97. <groupId>org.slf4j</groupId>
  98. <artifactId>log4j-over-slf4j</artifactId>
  99. </exclusion>
  100. <exclusion>
  101. <groupId>ch.qos.logback</groupId>
  102. <artifactId>logback-classic</artifactId>
  103. </exclusion>
  104. </exclusions>
  105. </dependency>
  106. <!-- Test -->
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-starter-test</artifactId>
  110. <scope>test</scope>
  111. </dependency>
  112. </dependencies>
  113. </project>

Powered by TurnKey Linux.