File tree Expand file tree Collapse file tree 12 files changed +210
-14
lines changed
connector-file/connector-file-base
connector-http/connector-http-base
seatunnel-connectors-flink-sql
seatunnel-connectors-flink
seatunnel-connectors-spark Expand file tree Collapse file tree 12 files changed +210
-14
lines changed Original file line number Diff line number Diff line change 581
581
<createDependencyReducedPom >true</createDependencyReducedPom >
582
582
<!-- Make sure the transitive dependencies are written to the generated pom under <dependencies> -->
583
583
<promoteTransitiveDependencies >true</promoteTransitiveDependencies >
584
+ <artifactSet >
585
+ <excludes >
586
+ <exclude >org.slf4j:*</exclude >
587
+ <exclude >ch.qos.logback:*</exclude >
588
+ <exclude >log4j:*</exclude >
589
+ </excludes >
590
+ </artifactSet >
584
591
<filters >
585
592
<filter >
586
593
<artifact >*:*</artifact >
600
607
<goal >shade</goal >
601
608
</goals >
602
609
<configuration >
603
- <transformers >
604
- <transformer
605
- implementation =" org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
610
+ <transformers combine.children= " append " >
611
+ <!-- The service transformer is needed to merge META-INF/services files -->
612
+ < transformer implementation =" org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
606
613
</transformers >
607
614
</configuration >
608
615
</execution >
807
814
<artifactId >scala-maven-plugin</artifactId >
808
815
</plugin >
809
816
810
- <plugin >
811
- <groupId >org.apache.maven.plugins</groupId >
812
- <artifactId >maven-shade-plugin</artifactId >
813
- </plugin >
814
-
815
- <!-- make sure that flatten runs after maven-shade-plugin -->
816
- <plugin >
817
- <groupId >org.codehaus.mojo</groupId >
818
- <artifactId >flatten-maven-plugin</artifactId >
819
- </plugin >
820
-
821
817
<plugin >
822
818
<groupId >org.apache.maven.plugins</groupId >
823
819
<artifactId >maven-surefire-plugin</artifactId >
Original file line number Diff line number Diff line change 28
28
<modelVersion >4.0.0</modelVersion >
29
29
30
30
<artifactId >connector-common</artifactId >
31
+
32
+ <build >
33
+ <plugins >
34
+ <plugin >
35
+ <groupId >org.apache.maven.plugins</groupId >
36
+ <artifactId >maven-shade-plugin</artifactId >
37
+ <executions >
38
+ <execution >
39
+ <phase >package</phase >
40
+ <goals >
41
+ <goal >shade</goal >
42
+ </goals >
43
+ <!-- common module need skip shading -->
44
+ <configuration >
45
+ <skip >true</skip >
46
+ </configuration >
47
+ </execution >
48
+ </executions >
49
+ </plugin >
50
+ <!-- make sure that flatten runs after maven-shade-plugin -->
51
+ <plugin >
52
+ <groupId >org.codehaus.mojo</groupId >
53
+ <artifactId >flatten-maven-plugin</artifactId >
54
+ </plugin >
55
+ </plugins >
56
+ </build >
31
57
</project >
Original file line number Diff line number Diff line change 41
41
<groupId >com.aliyun</groupId >
42
42
<artifactId >alibaba-dingtalk-service-sdk</artifactId >
43
43
<version >${dingtalk.service.version} </version >
44
+ <exclusions >
45
+ <exclusion >
46
+ <artifactId >log4j</artifactId >
47
+ <groupId >log4j</groupId >
48
+ </exclusion >
49
+ </exclusions >
44
50
</dependency >
45
51
</dependencies >
46
52
Original file line number Diff line number Diff line change 118
118
</dependency >
119
119
120
120
</dependencies >
121
+
122
+ <build >
123
+ <plugins >
124
+ <plugin >
125
+ <groupId >org.apache.maven.plugins</groupId >
126
+ <artifactId >maven-shade-plugin</artifactId >
127
+ <executions >
128
+ <execution >
129
+ <phase >package</phase >
130
+ <goals >
131
+ <goal >shade</goal >
132
+ </goals >
133
+ <!-- base module need skip shading -->
134
+ <configuration >
135
+ <skip >true</skip >
136
+ </configuration >
137
+ </execution >
138
+ </executions >
139
+ </plugin >
140
+ <!-- make sure that flatten runs after maven-shade-plugin -->
141
+ <plugin >
142
+ <groupId >org.codehaus.mojo</groupId >
143
+ <artifactId >flatten-maven-plugin</artifactId >
144
+ </plugin >
145
+ </plugins >
146
+ </build >
121
147
</project >
Original file line number Diff line number Diff line change 60
60
</dependency >
61
61
</dependencies >
62
62
63
+ <build >
64
+ <plugins >
65
+ <plugin >
66
+ <groupId >org.apache.maven.plugins</groupId >
67
+ <artifactId >maven-shade-plugin</artifactId >
68
+ <executions >
69
+ <execution >
70
+ <phase >package</phase >
71
+ <goals >
72
+ <goal >shade</goal >
73
+ </goals >
74
+ <!-- base module need skip shading -->
75
+ <configuration >
76
+ <skip >true</skip >
77
+ </configuration >
78
+ </execution >
79
+ </executions >
80
+ </plugin >
81
+ <!-- make sure that flatten runs after maven-shade-plugin -->
82
+ <plugin >
83
+ <groupId >org.codehaus.mojo</groupId >
84
+ <artifactId >flatten-maven-plugin</artifactId >
85
+ </plugin >
86
+ </plugins >
87
+ </build >
63
88
</project >
Original file line number Diff line number Diff line change 85
85
<skip >true</skip >
86
86
</configuration >
87
87
</plugin >
88
+
89
+ <plugin >
90
+ <groupId >org.apache.maven.plugins</groupId >
91
+ <artifactId >maven-shade-plugin</artifactId >
92
+ </plugin >
93
+
94
+ <!-- make sure that flatten runs after maven-shade-plugin -->
95
+ <plugin >
96
+ <groupId >org.codehaus.mojo</groupId >
97
+ <artifactId >flatten-maven-plugin</artifactId >
98
+ </plugin >
88
99
</plugins >
89
100
</build >
90
101
Original file line number Diff line number Diff line change 33
33
<module >flink-sql-connector-elasticsearch-7</module >
34
34
</modules >
35
35
36
+ <build >
37
+ <plugins >
38
+ <plugin >
39
+ <groupId >org.apache.maven.plugins</groupId >
40
+ <artifactId >maven-shade-plugin</artifactId >
41
+ </plugin >
36
42
43
+ <!-- make sure that flatten runs after maven-shade-plugin -->
44
+ <plugin >
45
+ <groupId >org.codehaus.mojo</groupId >
46
+ <artifactId >flatten-maven-plugin</artifactId >
47
+ </plugin >
48
+ </plugins >
49
+ </build >
37
50
</project >
Original file line number Diff line number Diff line change 103
103
</dependency >
104
104
</dependencies >
105
105
106
+ <build >
107
+ <plugins >
108
+ <plugin >
109
+ <groupId >org.apache.maven.plugins</groupId >
110
+ <artifactId >maven-shade-plugin</artifactId >
111
+ </plugin >
112
+
113
+ <!-- make sure that flatten runs after maven-shade-plugin -->
114
+ <plugin >
115
+ <groupId >org.codehaus.mojo</groupId >
116
+ <artifactId >flatten-maven-plugin</artifactId >
117
+ </plugin >
118
+ </plugins >
119
+ </build >
106
120
</project >
Original file line number Diff line number Diff line change 96
96
</dependency >
97
97
</dependencies >
98
98
99
+ <build >
100
+ <plugins >
101
+ <plugin >
102
+ <groupId >org.apache.maven.plugins</groupId >
103
+ <artifactId >maven-shade-plugin</artifactId >
104
+ </plugin >
105
+
106
+ <!-- make sure that flatten runs after maven-shade-plugin -->
107
+ <plugin >
108
+ <groupId >org.codehaus.mojo</groupId >
109
+ <artifactId >flatten-maven-plugin</artifactId >
110
+ </plugin >
111
+ </plugins >
112
+ </build >
99
113
</project >
Original file line number Diff line number Diff line change 39
39
<module >seatunnel-flink-starter</module >
40
40
<module >seatunnel-spark-starter</module >
41
41
</modules >
42
+
43
+ <build >
44
+ <plugins >
45
+ <plugin >
46
+ <groupId >org.apache.maven.plugins</groupId >
47
+ <artifactId >maven-shade-plugin</artifactId >
48
+ </plugin >
49
+
50
+ <!-- make sure that flatten runs after maven-shade-plugin -->
51
+ <plugin >
52
+ <groupId >org.codehaus.mojo</groupId >
53
+ <artifactId >flatten-maven-plugin</artifactId >
54
+ </plugin >
55
+ </plugins >
56
+ </build >
42
57
</project >
You can’t perform that action at this time.
0 commit comments