pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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. <groupId>com.slodon</groupId>
  6. <artifactId>b2b2c</artifactId>
  7. <version>3.0</version>
  8. <packaging>pom</packaging>
  9. <name>b2b2c</name>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.2.2.RELEASE</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <properties>
  17. <maven.compiler.source>1.8</maven.compiler.source>
  18. <maven.compiler.target>1.8</maven.compiler.target>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. </properties>
  21. <modules>
  22. <module>b2b2c-core</module>
  23. <module>b2b2c-entity</module>
  24. <module>b2b2c-web</module>
  25. <module>b2b2c-config-starter</module>
  26. <module>smartid</module>
  27. <module>b2b2c-captcha</module>
  28. </modules>
  29. </project>