答题项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.7 KiB

6 months ago
  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. <parent>
  6. <artifactId>answer-api</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.2.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>applet-home-api</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <repositories>
  17. <repository>
  18. <id>aliyun</id>
  19. <name>aliyun Repository</name>
  20. <url>https://maven.aliyun.com/repository/public</url>
  21. </repository>
  22. <repository>
  23. <id>jeecg</id>
  24. <name>jeecg Repository</name>
  25. <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  26. <snapshots>
  27. <enabled>false</enabled>
  28. </snapshots>
  29. </repository>
  30. </repositories>
  31. <dependencies>
  32. <dependency>
  33. <groupId>io.swagger</groupId>
  34. <artifactId>swagger-annotations</artifactId>
  35. <version>1.5.22</version>
  36. <scope>compile</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-web</artifactId>
  41. </dependency>
  42. <!-- lzx:公用工具类每个新模块必加 -->
  43. <dependency>
  44. <groupId>org.jeecgframework.boot</groupId>
  45. <artifactId>base-core</artifactId>
  46. </dependency>
  47. </dependencies>
  48. </project>