pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.4.3</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>lti</groupId>
  12. <artifactId>tool-13-cmr</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>java-lti13-tool-cmr</name>
  15. <description></description>
  16. <properties>
  17. <java.version>14</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.auth0</groupId>
  22. <artifactId>java-jwt</artifactId>
  23. <version>3.10.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.bitbucket.b_c</groupId>
  27. <artifactId>jose4j</artifactId>
  28. <version>0.7.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <!-- https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf-spring5 -->
  35. <dependency>
  36. <groupId>org.thymeleaf</groupId>
  37. <artifactId>thymeleaf-spring5</artifactId>
  38. <version>3.0.12.RELEASE</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-configuration-processor</artifactId>
  47. <optional>true</optional>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-test</artifactId>
  52. <scope>test</scope>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>org.junit.vintage</groupId>
  56. <artifactId>junit-vintage-engine</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-actuator</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-cache</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-data-redis</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-integration</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.integration</groupId>
  78. <artifactId>spring-integration-redis</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.integration</groupId>
  82. <artifactId>spring-integration-test</artifactId>
  83. <scope>test</scope>
  84. </dependency>
  85. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk14 -->
  86. <dependency>
  87. <groupId>org.bouncycastle</groupId>
  88. <artifactId>bcprov-jdk14</artifactId>
  89. <version>1.68</version>
  90. </dependency>
  91. </dependencies>
  92. <build>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-maven-plugin</artifactId>
  97. <configuration>
  98. <excludes>
  99. <exclude>
  100. <groupId>org.projectlombok</groupId>
  101. <artifactId>lombok</artifactId>
  102. </exclude>
  103. </excludes>
  104. </configuration>
  105. </plugin>
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-compiler-plugin</artifactId>
  109. <configuration>
  110. <source>14</source>
  111. <target>14</target>
  112. <!-- <compilerArgs>&#45;&#45;enable-preview</compilerArgs>-->
  113. </configuration>
  114. </plugin>
  115. </plugins>
  116. </build>
  117. </project>