pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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.flow</groupId>
  8. <artifactId>lowflow</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>flow-app</artifactId>
  13. <name>app 应用模块</name>
  14. <description>应用启动模块</description>
  15. <properties>
  16. <maven.compiler.source>8</maven.compiler.source>
  17. <maven.compiler.target>8</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <!--oauth-->
  22. <dependency>
  23. <groupId>com.flow</groupId>
  24. <artifactId>flow-oauth-controller</artifactId>
  25. <version>0.0.1-SNAPSHOT</version>
  26. </dependency>
  27. <!--im-->
  28. <dependency>
  29. <groupId>com.flow</groupId>
  30. <artifactId>flow-im-controller</artifactId>
  31. <version>0.0.1-SNAPSHOT</version>
  32. </dependency>
  33. <!--system-->
  34. <dependency>
  35. <groupId>com.flow</groupId>
  36. <artifactId>flow-system-controller</artifactId>
  37. <version>0.0.1-SNAPSHOT</version>
  38. </dependency>
  39. <!--file-->
  40. <dependency>
  41. <groupId>com.flow</groupId>
  42. <artifactId>flow-file-controller</artifactId>
  43. <version>0.0.1-SNAPSHOT</version>
  44. </dependency>
  45. <!--workflow-->
  46. <dependency>
  47. <groupId>com.flow</groupId>
  48. <artifactId>flow-workflow-controller</artifactId>
  49. <version>0.0.1-SNAPSHOT</version>
  50. </dependency>
  51. <!--report-->
  52. <dependency>
  53. <groupId>com.flow</groupId>
  54. <artifactId>flow-report-controller</artifactId>
  55. <version>0.0.1-SNAPSHOT</version>
  56. </dependency>
  57. <!--test-->
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-test</artifactId>
  61. <scope>test</scope>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. <executions>
  70. <execution>
  71. <goals>
  72. <goal>repackage</goal>
  73. </goals>
  74. </execution>
  75. </executions>
  76. </plugin>
  77. <plugin>
  78. <groupId>com.spotify</groupId>
  79. <artifactId>docker-maven-plugin</artifactId>
  80. <version>1.0.0</version>
  81. <configuration>
  82. <!-- made of '[a-z0-9-_.]' -->
  83. <imageName>${project.artifactId}:${project.version}</imageName>
  84. <dockerDirectory>${project.basedir}</dockerDirectory>
  85. <resources>
  86. <resource>
  87. <targetPath>/</targetPath>
  88. <directory>${project.build.directory}</directory>
  89. <include>${project.build.finalName}.jar</include>
  90. </resource>
  91. </resources>
  92. </configuration>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. </project>