pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.orangeforms</groupId>
  6. <artifactId>DemoFlow</artifactId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>application-webadmin</artifactId>
  11. <version>1.0.0</version>
  12. <name>application</name>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <!-- 业务组件依赖 -->
  16. <dependency>
  17. <groupId>com.orangeforms</groupId>
  18. <artifactId>common-redis</artifactId>
  19. <version>1.0.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.orangeforms</groupId>
  23. <artifactId>common-online-api</artifactId>
  24. <version>1.0.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.orangeforms</groupId>
  28. <artifactId>common-flow-online</artifactId>
  29. <version>1.0.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.orangeforms</groupId>
  33. <artifactId>common-log</artifactId>
  34. <version>1.0.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.orangeforms</groupId>
  38. <artifactId>common-sequence</artifactId>
  39. <version>1.0.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.orangeforms</groupId>
  43. <artifactId>common-datafilter</artifactId>
  44. <version>1.0.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.orangeforms</groupId>
  48. <artifactId>common-online-table</artifactId>
  49. <version>1.0.0</version>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <resources>
  54. <resource>
  55. <directory>src/main/resources</directory>
  56. <includes>
  57. <include>**/*.*</include>
  58. </includes>
  59. <filtering>false</filtering>
  60. </resource>
  61. <resource>
  62. <directory>src/main/java</directory>
  63. <includes>
  64. <include>**/*.xml</include>
  65. </includes>
  66. <filtering>false</filtering>
  67. </resource>
  68. </resources>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-maven-plugin</artifactId>
  73. <version>${spring-boot.version}</version>
  74. <executions>
  75. <execution>
  76. <goals>
  77. <goal>repackage</goal>
  78. </goals>
  79. </execution>
  80. </executions>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </project>