-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
256 lines (238 loc) · 11.6 KB
/
Copy pathpom.xml
File metadata and controls
256 lines (238 loc) · 11.6 KB
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.apify</groupId>
<artifactId>apify-client</artifactId>
<version>0.5.0</version>
<packaging>jar</packaging>
<name>Apify Java Client</name>
<description>Official (experimental, AI-generated and AI-maintained) Java client for the Apify API.</description>
<url>https://github.com/apify/apify-client-java</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Apify</name>
<email>support@apify.com</email>
<organization>Apify</organization>
<organizationUrl>https://apify.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/apify/apify-client-java.git</connection>
<developerConnection>scm:git:git@github.com:apify/apify-client-java.git</developerConnection>
<url>https://github.com/apify/apify-client-java</url>
</scm>
<properties>
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jackson.version>3.2.1</jackson.version>
<junit.version>5.10.2</junit.version>
<brotli4j.version>1.23.0</brotli4j.version>
<slf4j.version>2.0.13</slf4j.version>
</properties>
<dependencies>
<!-- Jackson 3's package rename: databind/core now live under the tools.jackson.core
groupId; jackson-annotations stayed at the old groupId/package, pulled in
transitively. Java-time (de)serialization is built into jackson-databind itself in
Jackson 3 (no separate jackson-datatype-jsr310 module/registration needed). -->
<dependency>
<groupId>tools.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- Logging facade only: the client logs (default log-redirection destination, transport
warnings) through SLF4J's API and binds to whatever logging backend the consuming
application already uses. It ships no backend of its own; an application that wires no
SLF4J binding at all simply gets SLF4J's standard no-op-with-one-time-warning behavior. -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- Brotli request-body compression. The client prefers brotli (Content-Encoding: br) and
falls back to gzip whenever no brotli native codec is on the classpath, which is the
case by default: this is the core Java API only, `optional` so it is not forced on
downstream consumers transitively. A consumer that wants brotli (instead of the always-
available gzip fallback) opts in by adding brotli4j's own platform-specific native
artifact (e.g. `native-linux-x86_64`) to their own project. -->
<dependency>
<groupId>com.aayushatharva.brotli4j</groupId>
<artifactId>brotli4j</artifactId>
<version>${brotli4j.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- Test-only: exercises the real brotli path (CompressionTest) instead of always skipping
it via the gzip fallback, without forcing a native codec on every consumer's classpath. -->
<dependency>
<groupId>com.aayushatharva.brotli4j</groupId>
<artifactId>native-linux-x86_64</artifactId>
<version>${brotli4j.version}</version>
<scope>test</scope>
</dependency>
<!-- Test-only SLF4J binding, so log-redirection output (e.g. the examples/tests exercising
the default destination) is visible on the console during a build, matching the previous
java.util.logging default's observable behavior. -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<!-- Filter apify-client-build.properties so ${project.version} is substituted at build
time. The version-drift test reads the filtered value and asserts it equals
Version.CLIENT_VERSION, guarding against pom.xml and the constant drifting apart on a
release bump. Kept in a dedicated directory so filtering never touches other resources. -->
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
<testResource>
<directory>src/test/resources-filtered</directory>
<filtering>true</filtering>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<!-- Type-checking rigor: surface all javac warnings in CI. -->
<compilerArgs>
<arg>-Xlint:all</arg>
</compilerArgs>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
<configuration>
<!-- Be gentle on the shared integration-test account: run test classes serially. -->
<forkCount>1</forkCount>
<reuseForks>true</reuseForks>
<!-- Keep running the test suite on the classpath, unaffected by module-info's
`exports`: tests intentionally reach into com.apify.client.internal (e.g.
HttpClientCore, ResourceContext) as white-box unit tests, which the module
path would block since that package is not exported. -->
<useModulePath>false</useModulePath>
</configuration>
</plugin>
<!-- Static-analysis linter (bug finder). `spotbugs:check` runs in CI and fails the
build on findings. Effort Max / threshold
Medium; a small, documented exclude filter covers the deliberate raw-bytes DTO
accessors (returning the actual record/response bytes is the API contract). -->
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.8.6.4</version>
<configuration>
<effort>Max</effort>
<threshold>Medium</threshold>
<failOnError>true</failOnError>
<includeTests>false</includeTests>
<excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile>
</configuration>
</plugin>
<!-- Formatter + lint gate. Spotless enforces google-java-format and import hygiene;
`spotless:check` runs in CI, `spotless:apply` reformats locally. -->
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>2.43.0</version>
<configuration>
<java>
<googleJavaFormat>
<version>1.22.0</version>
<style>GOOGLE</style>
</googleJavaFormat>
<removeUnusedImports/>
<importOrder/>
<trimTrailingWhitespace/>
<endWithNewline/>
</java>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<!-- Release profile: attaches sources and javadoc, GPG-signs artifacts, and publishes
to Maven Central via the Sonatype Central Publisher Portal. The publish workflow
authenticates the "central" server with the Maven Central repository credentials from
the "Publishing" GitHub environment. Activated by the publish CI workflow with -Prelease. -->
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.7.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.5.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>