123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.flow</groupId>
- <artifactId>lowflow</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>flow-app</artifactId>
- <name>app 应用模块</name>
- <description>应用启动模块</description>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <!--oauth-->
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-oauth-controller</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <!--im-->
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-im-controller</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <!--system-->
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-system-controller</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <!--file-->
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-file-controller</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <!--workflow-->
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-workflow-controller</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <!--report-->
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-report-controller</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <!--test-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>com.spotify</groupId>
- <artifactId>docker-maven-plugin</artifactId>
- <version>1.0.0</version>
- <configuration>
- <!-- made of '[a-z0-9-_.]' -->
- <imageName>${project.artifactId}:${project.version}</imageName>
- <dockerDirectory>${project.basedir}</dockerDirectory>
- <resources>
- <resource>
- <targetPath>/</targetPath>
- <directory>${project.build.directory}</directory>
- <include>${project.build.finalName}.jar</include>
- </resource>
- </resources>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|