-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependency-reduced-pom.xml
220 lines (220 loc) · 7.96 KB
/
dependency-reduced-pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.datastax.astra</groupId>
<artifactId>beam-sdks-java-io-astra</artifactId>
<name>Beam SDK for Astra</name>
<version>1.0-SNAPSHOT</version>
<description>Apache Beam SDK to work with Astra Pipelines</description>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>DataStax</name>
<url>http://datastax.com</url>
</organization>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${version.maven.plugin.exec}</version>
<configuration>
<cleanupDaemonThreads>false</cleanupDaemonThreads>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.maven.plugin.compiler}</version>
<configuration>
<source>${maven.plugin.compiler.source}</source>
<target>${maven.plugin.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${version.maven.plugin.enforcer}</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.0.5</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>${version.maven.plugin.shade}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer />
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
<configuration>
<artifactSet>
<excludes>
<exclude>module-info.java</exclude>
<exclude>*:junit-*</exclude>
</excludes>
</artifactSet>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>${version.maven.plugin.dependency}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${version.maven.plugin.license}</version>
<executions>
<execution>
<id>add-license</id>
<phase>process-sources</phase>
<goals>
<goal>update-file-header</goal>
</goals>
<configuration>
<projectName>Beam SDK for Astra</projectName>
<organizationName>DataStax</organizationName>
<inceptionYear>2023</inceptionYear>
<licenseName>apache2</licenseName>
<licenseResolver>${project.baseUri}/src/license</licenseResolver>
<addJavaLicenseAfterPackage>true</addJavaLicenseAfterPackage>
<sectionDelimiter>--</sectionDelimiter>
<roots>
<root>src/main/java</root>
</roots>
</configuration>
</execution>
</executions>
<configuration>
<verbose>false</verbose>
<extraExtensions>
<myProprietaryExtension>java</myProprietaryExtension>
</extraExtensions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>${version.maven.plugin.jar}</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>${version.maven.plugin.resources}</version>
<configuration>
<escapeString>\</escapeString>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.datastax.astra</groupId>
<artifactId>astra-sdk-devops</artifactId>
<version>0.5</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>logback-classic</artifactId>
<groupId>ch.qos.logback</groupId>
</exclusion>
<exclusion>
<artifactId>httpclient5</artifactId>
<groupId>org.apache.httpcomponents.client5</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-bom</artifactId>
<groupId>com.fasterxml.jackson</groupId>
</exclusion>
<exclusion>
<artifactId>jackson-datatype-jsr310</artifactId>
<groupId>com.fasterxml.jackson.datatype</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-runners-direct-java</artifactId>
<version>2.46.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<version.maven.plugin.jar>3.3.0</version.maven.plugin.jar>
<beam.version>2.46.0</beam.version>
<slf4j.version>2.0.7</slf4j.version>
<junit.version>4.13.2</junit.version>
<cassandra-driver-oss.version>3.11.3</cassandra-driver-oss.version>
<logback.version>1.4.7</logback.version>
<version.maven.plugin.license>2.0.0</version.maven.plugin.license>
<version.maven.plugin.shade>3.4.1</version.maven.plugin.shade>
<version.maven.plugin.resources>3.3.1</version.maven.plugin.resources>
<hamcrest.version>2.2</hamcrest.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.plugin.compiler.target>11</maven.plugin.compiler.target>
<version.maven.plugin.release>2.5.2</version.maven.plugin.release>
<version.maven.plugin.dependency>3.5.0</version.maven.plugin.dependency>
<version.maven.plugin.exec>1.6.0</version.maven.plugin.exec>
<version.maven.plugin.compiler>3.11.0</version.maven.plugin.compiler>
<astra-sdk.version>0.5</astra-sdk.version>
<maven.plugin.compiler.source>11</maven.plugin.compiler.source>
<auto-value.version>1.10.1</auto-value.version>
<version.maven.plugin.javadoc>3.4.1</version.maven.plugin.javadoc>
<version.maven.plugin.surefire>2.22.2</version.maven.plugin.surefire>
<version.maven.plugin.enforcer>3.3.0</version.maven.plugin.enforcer>
</properties>
</project>