diff options
| author | wangkuan <[email protected]> | 2023-10-12 15:21:54 +0800 |
|---|---|---|
| committer | wangkuan <[email protected]> | 2023-10-12 15:21:54 +0800 |
| commit | 3bc31e68f8cdcfc92ceef736d1872ef1bc9830b7 (patch) | |
| tree | 08cedfbf99bbc8d0dfbd43812aeebde0c6bb633d /groot-bootstrap/pom.xml | |
| parent | 5b5b5eafafb5281be74d9e90761dd4c7eb84d076 (diff) | |
groot平台重构,分为多个module,打包方式修改为个子项目独立打包,去掉函数注册main_class
Diffstat (limited to 'groot-bootstrap/pom.xml')
| -rw-r--r-- | groot-bootstrap/pom.xml | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/groot-bootstrap/pom.xml b/groot-bootstrap/pom.xml new file mode 100644 index 0000000..62892c7 --- /dev/null +++ b/groot-bootstrap/pom.xml @@ -0,0 +1,77 @@ +<?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"> + <parent> + <artifactId>groot-stream-platform</artifactId> + <groupId>com.geedgenetworks</groupId> + <version>1.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + + <artifactId>groot-bootstrap</artifactId> + + <dependencies> + <dependency> + <groupId>com.geedgenetworks</groupId> + <artifactId>groot-common</artifactId> + <version>1.0-SNAPSHOT</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>com.geedgenetworks</groupId> + <artifactId>groot-core</artifactId> + <version>1.0-SNAPSHOT</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>com.geedgenetworks</groupId> + <artifactId>connector-kafka</artifactId> + <version>1.0-SNAPSHOT</version> + <scope>provided</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <version>3.1.1</version> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <finalName>groot-bootstrap</finalName> + <artifactSet> + <excludes> + <exclude>com.google.code.findbugs:jsr305</exclude> + <exclude>org.slf4j:*</exclude> + <exclude>log4j:*</exclude> + </excludes> + </artifactSet> + <filters> + <filter> + <artifact>*:*</artifact> + <excludes> + <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.geedgenetworks.schedule.Execute</mainClass> + </transformer> + </transformers> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project>
\ No newline at end of file |
