答题项目
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.

60 lines
1.8 KiB

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