pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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>shop.alien</groupId>
  7. <artifactId>alien-cloud</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <artifactId>alien-entity</artifactId>
  11. <version>1.0.0</version>
  12. <name>alien-entity</name>
  13. <description>alien-entity</description>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>io.springfox</groupId>
  21. <artifactId>springfox-swagger2</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.swagger</groupId>
  25. <artifactId>swagger-annotations</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>io.swagger</groupId>
  29. <artifactId>swagger-models</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.baomidou</groupId>
  37. <artifactId>mybatis-plus-annotation</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-extension</artifactId>
  42. </dependency>
  43. <!--农历转公历-->
  44. <dependency>
  45. <groupId>cn.6tail</groupId>
  46. <artifactId>lunar</artifactId>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-maven-plugin</artifactId>
  54. </plugin>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-compiler-plugin</artifactId>
  58. <configuration>
  59. <source>8</source>
  60. <target>8</target>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>