pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.storlead.boot</groupId>
  8. <artifactId>storlead-message</artifactId>
  9. <version>1.0</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>storlead-message-biz</artifactId>
  13. <packaging>jar</packaging>
  14. <name>storlead-message-biz</name>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.storlead.boot</groupId>
  18. <artifactId>storlead-message-core</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.storlead.boot</groupId>
  22. <artifactId>storlead-common</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.storlead.boot</groupId>
  26. <artifactId>storlead-mybatis</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.storlead.boot</groupId>
  30. <artifactId>storlead-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.storlead.boot</groupId>
  34. <artifactId>storlead-user</artifactId>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <sourceDirectory>${project.basedir}/../src/main/java</sourceDirectory>
  39. <testSourceDirectory>${project.basedir}/../src/test/java</testSourceDirectory>
  40. <resources>
  41. <resource>
  42. <directory>${project.basedir}/../src/main/resources</directory>
  43. </resource>
  44. </resources>
  45. </build>
  46. </project>