pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. <parent>
  6. <artifactId>manage-root</artifactId>
  7. <groupId>cn.efunbox.manage</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <relativePath>../../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <version>1.0.0-SNAPSHOT</version>
  13. <artifactId>manage-base-api</artifactId>
  14. <dependencies>
  15. <dependency>
  16. <groupId>cn.efunbox.manage</groupId>
  17. <artifactId>manage-common</artifactId>
  18. <version>1.0.0-SNAPSHOT</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.google.zxing</groupId>
  22. <artifactId>core</artifactId>
  23. <version>3.2.1</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.tomcat.embed</groupId>
  27. <artifactId>tomcat-embed-core</artifactId>
  28. <version>8.5.5</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.poi</groupId>
  32. <artifactId>poi</artifactId>
  33. <version>3.14</version>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <!--上传源码 -->
  39. <plugin>
  40. <artifactId>maven-source-plugin</artifactId>
  41. <version>2.4</version>
  42. <configuration>
  43. <attach>true</attach>
  44. </configuration>
  45. <executions>
  46. <execution>
  47. <phase>package</phase>
  48. <goals>
  49. <goal>jar-no-fork</goal>
  50. </goals>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>