diff options
| author | wanglihui <[email protected]> | 2021-12-28 11:29:10 +0800 |
|---|---|---|
| committer | wanglihui <[email protected]> | 2021-12-28 11:29:10 +0800 |
| commit | 2cb7dcba4bcd41355b8be53c13a493d8371a64fc (patch) | |
| tree | 2fc13f852843d5bddde02ef4e0753d4ed2c57cf3 /pom.xml | |
| parent | 15f9cb1e2f78d5ea9803eac8b5d9b8c40e8d5a26 (diff) | |
修改module名称
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 43 |
1 files changed, 41 insertions, 2 deletions
@@ -10,8 +10,8 @@ <version>1.0-SNAPSHOT</version> <modules> <module>dos-detection</module> - <module>base-platform</module> - <module>schedule-platform</module> + <module>platform-base</module> + <module>platform-schedule</module> </modules> <properties> @@ -84,6 +84,45 @@ </compilerArgs> </configuration> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <version>2.4.1</version> + <executions> + <execution> + <id>flink-stream-schedule-platform</id> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + + <configuration> + <finalName>flink-stream-schedule-platform</finalName> + <filters> + <filter> + <!-- Do not copy the signatures in the META-INF folder. + Otherwise, this might cause SecurityExceptions when using the JAR. --> + <artifact>*:*</artifact> + <excludes> + <exclude>META-INF</exclude> + <exclude>META-INF/*.SF</exclude> + <exclude>META-INF/*.DSA</exclude> + <exclude>META-INF/*.RSA</exclude> + </excludes> + </filter> + </filters> + <transformers> + <transformer + implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> + <mainClass>com.zdjizhi.schedule.Execute</mainClass> + </transformer> + </transformers> + </configuration> + </execution> + </executions> + </plugin> + </plugins> </build> |
