pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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>com.raycos</groupId>
  7. <artifactId>raycos</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <!-- <packaging>jar</packaging>-->
  11. <artifactId>raycoscommon</artifactId>
  12. <version>1.0.0-SNAPSHOT</version>
  13. <!-- <name>raycos_common</name>-->
  14. <!-- <description>Demo project for Spring Boot</description>-->
  15. <properties>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.alibaba.fastjson2</groupId>
  20. <artifactId>fastjson2</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.baomidou</groupId>
  24. <artifactId>mybatis-plus-boot-starter</artifactId>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-maven-plugin</artifactId>
  32. <configuration>
  33. <classifier>exec</classifier>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>