pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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. <packaging>jar</packaging>
  7. <groupId>in.ocsf.bee.freigeld</groupId>
  8. <artifactId>freigeld-core</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <kotlin.version>1.9.20</kotlin.version>
  13. <target>1.8</target>
  14. <start-class>inn.ocsf.bee.freigeld.FreiAppKt</start-class>
  15. <spring.version>2.3.1.RELEASE</spring.version>
  16. </properties>
  17. <parent>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-parent</artifactId>
  20. <version>2.7.18</version>
  21. </parent>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. <exclusions>
  27. <exclusion>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-tomcat</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. <version>${spring.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-websocket</artifactId>
  37. <version>${spring.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-undertow</artifactId>
  42. <version>${spring.version}</version>
  43. </dependency>
  44. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-mongodb -->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  48. <version>${spring.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-security</artifactId>
  53. <version>${spring.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.querydsl</groupId>
  57. <artifactId>querydsl-mongodb</artifactId>
  58. <version>${querydsl.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.querydsl</groupId>
  62. <artifactId>querydsl-apt</artifactId>
  63. <version>${querydsl.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.jetbrains.kotlin</groupId>
  67. <artifactId>kotlin-stdlib-jdk8</artifactId>
  68. <version>${kotlin.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.jetbrains.kotlin</groupId>
  72. <artifactId>kotlin-reflect</artifactId>
  73. <version>${kotlin.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.jetbrains.kotlinx</groupId>
  77. <artifactId>kotlinx-coroutines-core</artifactId>
  78. <version>1.8.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.jetbrains.kotlin</groupId>
  82. <artifactId>kotlin-test</artifactId>
  83. <version>${kotlin.version}</version>
  84. <scope>test</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.junit.jupiter</groupId>
  88. <artifactId>junit-jupiter-api</artifactId>
  89. <version>5.6.2</version>
  90. <scope>test</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.junit.jupiter</groupId>
  94. <artifactId>junit-jupiter-engine</artifactId>
  95. <version>5.6.2</version>
  96. <scope>test</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.fasterxml.jackson.module</groupId>
  100. <artifactId>jackson-module-kotlin</artifactId>
  101. <version>2.9.4.1</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.oblac</groupId>
  105. <artifactId>nomen-est-omen</artifactId>
  106. <version>2.0.0</version>
  107. </dependency>
  108. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  109. <dependency>
  110. <groupId>commons-codec</groupId>
  111. <artifactId>commons-codec</artifactId>
  112. <version>1.14</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>dev.samstevens.totp</groupId>
  116. <artifactId>totp</artifactId>
  117. <version>1.7</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>eu.maxschuster</groupId>
  121. <artifactId>dataurl</artifactId>
  122. <version>2.0.0</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.aparapi</groupId>
  126. <artifactId>aparapi</artifactId>
  127. <version>1.8.0</version>
  128. </dependency>
  129. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  130. <dependency>
  131. <groupId>org.apache.commons</groupId>
  132. <artifactId>commons-lang3</artifactId>
  133. <version>3.10</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>io.jsonwebtoken</groupId>
  137. <artifactId>jjwt-api</artifactId>
  138. <version>0.11.1</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>io.jsonwebtoken</groupId>
  142. <artifactId>jjwt-impl</artifactId>
  143. <version>0.11.1</version>
  144. <scope>runtime</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>io.jsonwebtoken</groupId>
  148. <artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
  149. <version>0.11.1</version>
  150. <scope>runtime</scope>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.scala-lang</groupId>
  154. <artifactId>scala-library</artifactId>
  155. <version>2.11.7</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.github.ulisesbocchio</groupId>
  159. <artifactId>spring-boot-jar-resources</artifactId>
  160. <version>1.3</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.jetbrains</groupId>
  164. <artifactId>annotations</artifactId>
  165. <version>23.0.0</version>
  166. </dependency>
  167. </dependencies>
  168. <build>
  169. <finalName>frei</finalName>
  170. <resources>
  171. <resource>
  172. <directory>src/main/resources</directory>
  173. <filtering>true</filtering>
  174. </resource>
  175. <resource>
  176. <directory>src/main/resources/static/code</directory>
  177. <filtering>true</filtering>
  178. </resource>
  179. </resources>
  180. <plugins>
  181. <plugin>
  182. <groupId>com.mysema.maven</groupId>
  183. <artifactId>apt-maven-plugin</artifactId>
  184. <version>1.1.3</version>
  185. <executions>
  186. <execution>
  187. <goals>
  188. <goal>process</goal>
  189. </goals>
  190. <configuration>
  191. <outputDirectory>target/generated-sources/java</outputDirectory>
  192. <processor>
  193. org.springframework.data.mongodb.repository.support.MongoAnnotationProcessor
  194. </processor>
  195. </configuration>
  196. </execution>
  197. </executions>
  198. </plugin>
  199. <plugin>
  200. <groupId>org.springframework.boot</groupId>
  201. <artifactId>spring-boot-maven-plugin</artifactId>
  202. </plugin>
  203. <plugin>
  204. <artifactId>maven-surefire-plugin</artifactId>
  205. <version>2.22.2</version>
  206. </plugin>
  207. <plugin>
  208. <artifactId>maven-failsafe-plugin</artifactId>
  209. <version>2.22.2</version>
  210. </plugin>
  211. <plugin>
  212. <groupId>org.jetbrains.kotlin</groupId>
  213. <artifactId>kotlin-maven-plugin</artifactId>
  214. <version>${kotlin.version}</version>
  215. <executions>
  216. <execution>
  217. <id>compile</id>
  218. <phase>compile</phase>
  219. <goals>
  220. <goal>compile</goal>
  221. </goals>
  222. </execution>
  223. <execution>
  224. <id>test-compile</id>
  225. <phase>test-compile</phase>
  226. <goals>
  227. <goal>test-compile</goal>
  228. </goals>
  229. </execution>
  230. </executions>
  231. <configuration>
  232. <sourceDirs>
  233. <sourceDir>src/main/java</sourceDir>
  234. <sourceDir>src/main/kotlin</sourceDir>
  235. </sourceDirs>
  236. <compilerPlugins>
  237. <plugin>spring</plugin>
  238. </compilerPlugins>
  239. <jvmTarget>1.8</jvmTarget>
  240. </configuration>
  241. <dependencies>
  242. <dependency>
  243. <groupId>org.jetbrains.kotlin</groupId>
  244. <artifactId>kotlin-maven-allopen</artifactId>
  245. <version>${kotlin.version}</version>
  246. </dependency>
  247. </dependencies>
  248. </plugin>
  249. <plugin>
  250. <groupId>org.apache.maven.plugins</groupId>
  251. <artifactId>maven-resources-plugin</artifactId>
  252. <version>3.1.0</version>
  253. <configuration>
  254. <nonFilteredFileExtensions>
  255. <nonFilteredFileExtension>pdf</nonFilteredFileExtension>
  256. <nonFilteredFileExtension>swf</nonFilteredFileExtension>
  257. <nonFilteredFileExtension>png</nonFilteredFileExtension>
  258. <nonFilteredFileExtension>svg</nonFilteredFileExtension>
  259. <nonFilteredFileExtension>eot</nonFilteredFileExtension>
  260. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  261. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  262. <nonFilteredFileExtension>ico</nonFilteredFileExtension>
  263. </nonFilteredFileExtensions>
  264. <delimiters>
  265. <delimiter>@</delimiter>
  266. </delimiters>
  267. <useDefaultDelimiters>false</useDefaultDelimiters>
  268. </configuration>
  269. </plugin>
  270. </plugins>
  271. </build>
  272. </project>