pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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.7.2</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>serverless-fc-jplag</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>serverless-fc-jplag</name>
  15. <description>serverless-fc-jplag</description>
  16. <packaging>jar</packaging>
  17. <properties>
  18. <java.version>17</java.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>de.jplag</groupId>
  23. <artifactId>jplag</artifactId>
  24. <version>4.1.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>de.jplag</groupId>
  28. <artifactId>java</artifactId>
  29. <version>4.1.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>de.jplag</groupId>
  33. <artifactId>python-3</artifactId>
  34. <version>4.1.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>de.jplag</groupId>
  38. <artifactId>cpp</artifactId>
  39. <version>4.1.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-validation</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-web</artifactId>
  48. <version>2.6.5</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.projectlombok</groupId>
  52. <artifactId>lombok</artifactId>
  53. <optional>true</optional>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.velocity</groupId>
  57. <artifactId>velocity-engine-core</artifactId>
  58. <version>2.3</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.springfox</groupId>
  62. <artifactId>springfox-boot-starter</artifactId>
  63. <version>3.0.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-test</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.aliyun.oss</groupId>
  72. <artifactId>aliyun-sdk-oss</artifactId>
  73. <version>3.15.1</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>javax.xml.bind</groupId>
  77. <artifactId>jaxb-api</artifactId>
  78. <version>2.3.1</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>javax.activation</groupId>
  82. <artifactId>activation</artifactId>
  83. <version>1.1.1</version>
  84. </dependency>
  85. <!-- no more than 2.3.3-->
  86. <dependency>
  87. <groupId>org.glassfish.jaxb</groupId>
  88. <artifactId>jaxb-runtime</artifactId>
  89. <version>2.3.3</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>io.github.bitstorm</groupId>
  93. <artifactId>tinyzip-core</artifactId>
  94. <version>1.0.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.ant</groupId>
  98. <artifactId>ant</artifactId>
  99. <version>1.8.4</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>commons-io</groupId>
  103. <artifactId>commons-io</artifactId>
  104. <version>2.11.0</version>
  105. </dependency>
  106. </dependencies>
  107. <build>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-maven-plugin</artifactId>
  112. <configuration>
  113. <excludes>
  114. <exclude>
  115. <groupId>org.projectlombok</groupId>
  116. <artifactId>lombok</artifactId>
  117. </exclude>
  118. </excludes>
  119. </configuration>
  120. </plugin>
  121. <plugin>
  122. <groupId>org.apache.maven.plugins</groupId>
  123. <artifactId>maven-compiler-plugin</artifactId>
  124. <configuration>
  125. <source>17</source>
  126. <target>17</target>
  127. </configuration>
  128. </plugin>
  129. </plugins>
  130. </build>
  131. </project>