pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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>com.goldenwater</groupId>
  8. <artifactId>goldenwater</artifactId>
  9. <version>3.9.2</version>
  10. </parent>
  11. <artifactId>gw-slgc</artifactId>
  12. <description>业务模块(项目管理、文件管理、水利工程)</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.goldenwater</groupId>
  16. <artifactId>gw-common</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.mybatis.spring.boot</groupId>
  24. <artifactId>mybatis-spring-boot-starter</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.github.pagehelper</groupId>
  28. <artifactId>pagehelper-spring-boot-starter</artifactId>
  29. </dependency>
  30. <!-- Lombok -->
  31. <dependency>
  32. <groupId>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.apache.maven.plugins</groupId>
  40. <artifactId>maven-compiler-plugin</artifactId>
  41. <configuration>
  42. <source>${java.version}</source>
  43. <target>${java.version}</target>
  44. <encoding>UTF-8</encoding>
  45. </configuration>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. </project>