|
64 | 64 | <dependency>
|
65 | 65 | <groupId>io.lettuce</groupId>
|
66 | 66 | <artifactId>lettuce-core</artifactId>
|
67 |
| - <version>6.1.2.RELEASE</version> |
| 67 | + <version>6.1.3.RELEASE</version> |
68 | 68 | </dependency>
|
69 | 69 | <dependency>
|
70 | 70 | <groupId>org.slf4j</groupId>
|
|
74 | 74 | <dependency>
|
75 | 75 | <groupId>com.redislabs</groupId>
|
76 | 76 | <artifactId>spring-batch-redis</artifactId>
|
77 |
| - <version>2.13.4</version> |
| 77 | + <version>2.13.5-SNAPSHOT</version> |
78 | 78 | </dependency>
|
79 | 79 | <dependency>
|
80 | 80 | <groupId>org.projectlombok</groupId>
|
|
129 | 129 | </plugin>
|
130 | 130 | <plugin>
|
131 | 131 | <groupId>org.apache.maven.plugins</groupId>
|
132 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
| 132 | + <artifactId>maven-assembly-plugin</artifactId> |
| 133 | + <version>3.3.0</version> |
133 | 134 | <configuration>
|
134 |
| - <source>8</source> |
| 135 | + <skipAssembly>true</skipAssembly> |
135 | 136 | </configuration>
|
136 | 137 | </plugin>
|
137 | 138 | <plugin>
|
138 |
| - <artifactId>maven-assembly-plugin</artifactId> |
| 139 | + <groupId>org.apache.maven.plugins</groupId> |
| 140 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 141 | + <version>3.3.0</version> |
139 | 142 | <configuration>
|
140 |
| - <skipAssembly>true</skipAssembly> |
| 143 | + <source>8</source> |
141 | 144 | </configuration>
|
142 | 145 | </plugin>
|
143 | 146 | <plugin>
|
|
181 | 184 | </executions>
|
182 | 185 | </plugin>
|
183 | 186 | <plugin>
|
184 |
| - <groupId>org.apache.maven.plugins</groupId> |
185 |
| - <artifactId>maven-site-plugin</artifactId> |
186 |
| - <version>3.7.1</version> |
| 187 | + <groupId>org.asciidoctor</groupId> |
| 188 | + <artifactId>asciidoctor-maven-plugin</artifactId> |
| 189 | + <version>${asciidoctor.maven.plugin.version}</version> |
187 | 190 | <configuration>
|
188 |
| - <!-- Disable generateReports if you don't want to include the built-in reports --> |
189 |
| - <generateReports>true</generateReports> |
190 |
| - <generateSitemap>true</generateSitemap> |
191 |
| - <relativizeDecorationLinks>false</relativizeDecorationLinks> |
192 |
| - <locales>en</locales> |
193 |
| - <inputEncoding>UTF-8</inputEncoding> |
194 |
| - <outputEncoding>UTF-8</outputEncoding> |
| 191 | + <attributes> |
| 192 | + <project-name>${project.name}</project-name> |
| 193 | + <project-version>${project.version}</project-version> |
| 194 | + </attributes> |
| 195 | + </configuration> |
| 196 | + <executions> |
| 197 | + <execution> |
| 198 | + <id>asciidoc-to-html</id> |
| 199 | + <phase>generate-resources</phase> |
| 200 | + <goals> |
| 201 | + <goal>process-asciidoc</goal> |
| 202 | + </goals> |
| 203 | + <configuration> |
| 204 | + <backend>html5</backend> |
| 205 | + <attributes> |
| 206 | + <source-highlighter>highlightjs</source-highlighter> |
| 207 | + <toc>left</toc> |
| 208 | + <toclevels>1</toclevels> |
| 209 | + <icons>font</icons> |
| 210 | + <sectanchors>true</sectanchors> |
| 211 | + <!-- set the idprefix to blank --> |
| 212 | + <idprefix/> |
| 213 | + <idseparator>-</idseparator> |
| 214 | + </attributes> |
| 215 | + </configuration> |
| 216 | + </execution> |
| 217 | + </executions> |
| 218 | + </plugin> |
| 219 | + <plugin> |
| 220 | + <groupId>org.jreleaser</groupId> |
| 221 | + <artifactId>jreleaser-maven-plugin</artifactId> |
| 222 | + <version>0.5.0-SNAPSHOT</version> |
| 223 | + <configuration> |
| 224 | + <jreleaser> |
| 225 | + <distributions> |
| 226 | + <kafka-connect-archive> |
| 227 | + <artifacts> |
| 228 | + <artifact> |
| 229 | + <path>target/components/packages/redislabs-${project.artifactId}-${project.version}.zip</path> |
| 230 | + </artifact> |
| 231 | + </artifacts> |
| 232 | + </kafka-connect-archive> |
| 233 | + </distributions> |
| 234 | + <release> |
| 235 | + <github> |
| 236 | + <owner>RedisLabs-Field-Engineering</owner> |
| 237 | + <overwrite>true</overwrite> |
| 238 | + <changelog> |
| 239 | + <formatted>ALWAYS</formatted> |
| 240 | + <change>- {{commitShortHash}} {{commitTitle}}</change> |
| 241 | + <labelers> |
| 242 | + <labeler> |
| 243 | + <label>feature</label> |
| 244 | + <title>Resolves #</title> |
| 245 | + <body>Resolves #</body> |
| 246 | + </labeler> |
| 247 | + <labeler> |
| 248 | + <label>issue</label> |
| 249 | + <title>Fixes #</title> |
| 250 | + <body>Fixes #</body> |
| 251 | + </labeler> |
| 252 | + <labeler> |
| 253 | + <label>issue</label> |
| 254 | + <title>Relates to #</title> |
| 255 | + <body>Relates to #</body> |
| 256 | + </labeler> |
| 257 | + <labeler> |
| 258 | + <label>task</label> |
| 259 | + <title>[chore]</title> |
| 260 | + </labeler> |
| 261 | + </labelers> |
| 262 | + <categories> |
| 263 | + <category> |
| 264 | + <title>🚀 Features</title> |
| 265 | + <labelsAsString>feature</labelsAsString> |
| 266 | + </category> |
| 267 | + <category> |
| 268 | + <title>✅ Issues</title> |
| 269 | + <labelsAsString>issue</labelsAsString> |
| 270 | + </category> |
| 271 | + <category> |
| 272 | + <title>🧰 Tasks</title> |
| 273 | + <labelsAsString>task</labelsAsString> |
| 274 | + </category> |
| 275 | + </categories> |
| 276 | + <replacers> |
| 277 | + <replacer> |
| 278 | + <search>\[chore\]\s</search> |
| 279 | + <replace>''</replace> |
| 280 | + </replacer> |
| 281 | + </replacers> |
| 282 | + </changelog> |
| 283 | + </github> |
| 284 | + </release> |
| 285 | + </jreleaser> |
195 | 286 | </configuration>
|
196 |
| - <dependencies> |
197 |
| - <dependency> |
198 |
| - <groupId>org.asciidoctor</groupId> |
199 |
| - <artifactId>asciidoctor-maven-plugin</artifactId> |
200 |
| - <version>${asciidoctor.maven.plugin.version}</version> |
201 |
| - </dependency> |
202 |
| - <!-- Comment this section to use the default jruby artifact provided by the plugin --> |
203 |
| - <dependency> |
204 |
| - <groupId>org.jruby</groupId> |
205 |
| - <artifactId>jruby-complete</artifactId> |
206 |
| - <version>${jruby.version}</version> |
207 |
| - </dependency> |
208 |
| - <!-- Comment this section to use the default AsciidoctorJ artifact provided by the plugin --> |
209 |
| - <dependency> |
210 |
| - <groupId>org.asciidoctor</groupId> |
211 |
| - <artifactId>asciidoctorj</artifactId> |
212 |
| - <version>${asciidoctorj.version}</version> |
213 |
| - </dependency> |
214 |
| - </dependencies> |
215 | 287 | </plugin>
|
216 | 288 | </plugins>
|
217 | 289 | </build>
|
|
224 | 296 | <version>2.6</version>
|
225 | 297 | </plugin>
|
226 | 298 | <plugin>
|
| 299 | + <groupId>org.apache.maven.plugins</groupId> |
227 | 300 | <artifactId>maven-project-info-reports-plugin</artifactId>
|
228 | 301 | <version>2.8</version>
|
229 | 302 | </plugin>
|
|
0 commit comments