File tree 3 files changed +42
-1
lines changed
3 files changed +42
-1
lines changed Original file line number Diff line number Diff line change 50
50
51
51
- uses : ncipollo/release-action@v1
52
52
with :
53
+ artifacts : " migration-tool/target/migration-tool-*.jar"
53
54
token : ${{ secrets.GITHUB_TOKEN }}
54
55
generateReleaseNotes : true
Original file line number Diff line number Diff line change 14
14
* ~
15
15
* .iml
16
16
17
+ ** /dependency-reduced-pom.xml
18
+
17
19
# Chart dependencies
18
20
** /charts /* .tgz
19
21
Chart.lock
Original file line number Diff line number Diff line change 16
16
limitations under the License.
17
17
18
18
-->
19
- <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" >
19
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
20
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
20
21
<parent >
21
22
<artifactId >pulsar-operator-parent</artifactId >
22
23
<groupId >com.datastax.oss</groupId >
36
37
<groupId >${project.groupId} </groupId >
37
38
<artifactId >pulsar-operator</artifactId >
38
39
<version >${project.version} </version >
40
+ <exclusions >
41
+ <exclusion >
42
+ <groupId >org.apache.curator</groupId >
43
+ <artifactId >*</artifactId >
44
+ </exclusion >
45
+ </exclusions >
39
46
</dependency >
40
47
<dependency >
41
48
<groupId >${project.groupId} </groupId >
77
84
</execution >
78
85
</executions >
79
86
</plugin >
87
+ <plugin >
88
+ <groupId >org.apache.maven.plugins</groupId >
89
+ <artifactId >maven-shade-plugin</artifactId >
90
+ <version >2.3</version >
91
+ <executions >
92
+ <execution >
93
+ <phase >package</phase >
94
+ <goals >
95
+ <goal >shade</goal >
96
+ </goals >
97
+ <configuration >
98
+ <transformers >
99
+ <transformer
100
+ implementation =" org.apache.maven.plugins.shade.resource.ManifestResourceTransformer" >
101
+ <mainClass >com.datastax.oss.pulsaroperator.migrationtool.Main</mainClass >
102
+ </transformer >
103
+ </transformers >
104
+ <filters >
105
+ <filter >
106
+ <artifact >*:*</artifact >
107
+ <excludes >
108
+ <exclude >META-INF/*.SF</exclude >
109
+ <exclude >META-INF/*.DSA</exclude >
110
+ <exclude >META-INF/*.RSA</exclude >
111
+ </excludes >
112
+ </filter >
113
+ </filters >
114
+ </configuration >
115
+ </execution >
116
+ </executions >
117
+ </plugin >
80
118
</plugins >
81
119
</build >
82
120
You can’t perform that action at this time.
0 commit comments