|
6 | 6 | <modelVersion>4.0.0</modelVersion> |
7 | 7 | <groupId>org.reaktivity</groupId> |
8 | 8 | <artifactId>command-log</artifactId> |
9 | | - <version>0.83</version> |
| 9 | + <version>0.84</version> |
10 | 10 | <name>Reaktivity log Command</name> |
11 | 11 | <description>Reaktivity log Command</description> |
12 | 12 | <url>https://github.com/reaktivity/command-log.java</url> |
|
35 | 35 | <url>https://github.com/reaktivity/command-log.java</url> |
36 | 36 | </scm> |
37 | 37 |
|
| 38 | + <repositories> |
| 39 | + <repository> |
| 40 | + <id>github</id> |
| 41 | + <url>https://maven.pkg.github.com/reaktivity/packages/</url> |
| 42 | + </repository> |
| 43 | + </repositories> |
| 44 | + |
38 | 45 | <properties> |
39 | 46 | <maven.compiler.source>9</maven.compiler.source> |
40 | 47 | <maven.compiler.target>9</maven.compiler.target> |
|
43 | 50 | <checkstyle.config.location>src/conf/checkstyle/configuration.xml</checkstyle.config.location> |
44 | 51 | <checkstyle.suppressions.location>src/conf/checkstyle/suppressions.xml</checkstyle.suppressions.location> |
45 | 52 |
|
46 | | - <reaktor.version>0.155</reaktor.version> |
47 | | - <nukleus.plugin.version>0.77</nukleus.plugin.version> |
48 | | - <nukleus.amqp.spec.version>0.57</nukleus.amqp.spec.version> |
49 | | - <nukleus.mqtt.spec.version>0.58</nukleus.mqtt.spec.version> |
50 | | - <nukleus.kafka.spec.version>0.168</nukleus.kafka.spec.version> |
51 | | - <nukleus.http.spec.version>0.106</nukleus.http.spec.version> |
52 | | - <nukleus.tls.spec.version>0.59</nukleus.tls.spec.version> |
53 | | - <nukleus.proxy.spec.version>0.10</nukleus.proxy.spec.version> |
| 53 | + <reaktor.version>0.159</reaktor.version> |
| 54 | + <nukleus.plugin.version>0.83</nukleus.plugin.version> |
| 55 | + <nukleus.amqp.spec.version>0.58</nukleus.amqp.spec.version> |
| 56 | + <nukleus.mqtt.spec.version>0.59</nukleus.mqtt.spec.version> |
| 57 | + <nukleus.kafka.spec.version>0.169</nukleus.kafka.spec.version> |
| 58 | + <nukleus.http.spec.version>0.107</nukleus.http.spec.version> |
| 59 | + <nukleus.tls.spec.version>0.60</nukleus.tls.spec.version> |
| 60 | + <nukleus.proxy.spec.version>0.14</nukleus.proxy.spec.version> |
54 | 61 |
|
55 | 62 | <jacoco.coverage.ratio>1.00</jacoco.coverage.ratio> |
56 | 63 | <jacoco.missed.count>0</jacoco.missed.count> |
|
130 | 137 | <configuration> |
131 | 138 | <header>COPYRIGHT</header> |
132 | 139 | <properties> |
133 | | - <copyrightYears>2016-2020</copyrightYears> |
| 140 | + <copyrightYears>2016-2021</copyrightYears> |
134 | 141 | </properties> |
135 | 142 | <includes> |
136 | 143 | <include>src/**</include> |
|
264 | 271 | <id>release</id> |
265 | 272 |
|
266 | 273 | <distributionManagement> |
267 | | - <snapshotRepository> |
268 | | - <id>ossrh</id> |
269 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
270 | | - </snapshotRepository> |
| 274 | + <downloadUrl>https://maven.pkg.github.com/reaktivity/command-log.java/</downloadUrl> |
271 | 275 | <repository> |
272 | | - <id>ossrh</id> |
273 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 276 | + <id>github</id> |
| 277 | + <url>https://maven.pkg.github.com/reaktivity/command-log.java/</url> |
274 | 278 | </repository> |
| 279 | + <snapshotRepository> |
| 280 | + <id>github</id> |
| 281 | + <url>https://maven.pkg.github.com/reaktivity/command-log.java/</url> |
| 282 | + </snapshotRepository> |
275 | 283 | </distributionManagement> |
276 | 284 |
|
277 | 285 | <build> |
|
293 | 301 | <message>No Snapshots Allowed!</message> |
294 | 302 | </requireReleaseDeps> |
295 | 303 | <requireJavaVersion> |
296 | | - <version>[9,10)</version> |
| 304 | + <version>[13,14)</version> |
297 | 305 | </requireJavaVersion> |
298 | 306 | </rules> |
299 | 307 | </configuration> |
|
312 | 320 | </execution> |
313 | 321 | </executions> |
314 | 322 | </plugin> |
| 323 | + <plugin> |
| 324 | + <groupId>org.apache.maven.plugins</groupId> |
| 325 | + <artifactId>maven-antrun-plugin</artifactId> |
| 326 | + <version>3.0.0</version> |
| 327 | + <executions> |
| 328 | + <execution> |
| 329 | + <phase>package</phase> |
| 330 | + <configuration> |
| 331 | + <target> |
| 332 | + <mkdir dir="${project.build.directory}/apidocs" /> |
| 333 | + </target> |
| 334 | + </configuration> |
| 335 | + <goals> |
| 336 | + <goal>run</goal> |
| 337 | + </goals> |
| 338 | + </execution> |
| 339 | + </executions> |
| 340 | + </plugin> |
315 | 341 | <plugin> |
316 | 342 | <groupId>org.apache.maven.plugins</groupId> |
317 | 343 | <artifactId>maven-javadoc-plugin</artifactId> |
318 | | - <version>3.0.0-M1</version> |
| 344 | + <version>3.2.0</version> |
| 345 | + <configuration> |
| 346 | + <sourceFileExcludes> |
| 347 | + <exclude>**/internal/**/*.java</exclude> |
| 348 | + </sourceFileExcludes> |
| 349 | + </configuration> |
319 | 350 | <executions> |
320 | 351 | <execution> |
321 | 352 | <goals> |
|
324 | 355 | </execution> |
325 | 356 | </executions> |
326 | 357 | </plugin> |
| 358 | + </plugins> |
| 359 | + </build> |
| 360 | + </profile> |
| 361 | + |
| 362 | + <profile> |
| 363 | + <id>github.packages</id> |
| 364 | + |
| 365 | + <build> |
| 366 | + <plugins> |
| 367 | + <plugin> |
| 368 | + <groupId>org.apache.maven.plugins</groupId> |
| 369 | + <artifactId>maven-dependency-plugin</artifactId> |
| 370 | + <version>3.1.2</version> |
| 371 | + <configuration> |
| 372 | + <outputDirectory>${project.build.directory}</outputDirectory> |
| 373 | + <overWriteReleases>true</overWriteReleases> |
| 374 | + <artifactItems> |
| 375 | + <artifact> |
| 376 | + <groupId>${project.groupId}</groupId> |
| 377 | + <artifactId>${project.artifactId}</artifactId> |
| 378 | + <version>${project.version}</version> |
| 379 | + <type>pom</type> |
| 380 | + </artifact> |
| 381 | + <artifact> |
| 382 | + <groupId>${project.groupId}</groupId> |
| 383 | + <artifactId>${project.artifactId}</artifactId> |
| 384 | + <version>${project.version}</version> |
| 385 | + </artifact> |
| 386 | + <artifact> |
| 387 | + <groupId>${project.groupId}</groupId> |
| 388 | + <artifactId>${project.artifactId}</artifactId> |
| 389 | + <version>${project.version}</version> |
| 390 | + <classifier>sources</classifier> |
| 391 | + </artifact> |
| 392 | + <artifact> |
| 393 | + <groupId>${project.groupId}</groupId> |
| 394 | + <artifactId>${project.artifactId}</artifactId> |
| 395 | + <version>${project.version}</version> |
| 396 | + <classifier>javadoc</classifier> |
| 397 | + </artifact> |
| 398 | + <artifact> |
| 399 | + <groupId>${project.groupId}</groupId> |
| 400 | + <artifactId>${project.artifactId}</artifactId> |
| 401 | + <version>${project.version}</version> |
| 402 | + <classifier>tests</classifier> |
| 403 | + </artifact> |
| 404 | + </artifactItems> |
| 405 | + </configuration> |
| 406 | + </plugin> |
| 407 | + </plugins> |
| 408 | + </build> |
| 409 | + </profile> |
| 410 | + |
| 411 | + <profile> |
| 412 | + <id>ossrh</id> |
| 413 | + |
| 414 | + <distributionManagement> |
| 415 | + <snapshotRepository> |
| 416 | + <id>ossrh</id> |
| 417 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 418 | + </snapshotRepository> |
| 419 | + <repository> |
| 420 | + <id>ossrh</id> |
| 421 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 422 | + </repository> |
| 423 | + </distributionManagement> |
| 424 | + |
| 425 | + <build> |
| 426 | + <plugins> |
| 427 | + <plugin> |
| 428 | + <groupId>com.github.genthaler</groupId> |
| 429 | + <artifactId>beanshell-maven-plugin</artifactId> |
| 430 | + <version>1.4</version> |
| 431 | + <configuration> |
| 432 | + <script> |
| 433 | + <![CDATA[ |
| 434 | + project.getArtifact().setFile(new java.io.File(project.getBuild().getDirectory(), project.getBuild().getFinalName() + ".jar")); |
| 435 | + ]]> |
| 436 | + </script> |
| 437 | + </configuration> |
| 438 | + </plugin> |
| 439 | + <plugin> |
| 440 | + <groupId>org.codehaus.mojo</groupId> |
| 441 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 442 | + <version>3.2.0</version> |
| 443 | + <configuration> |
| 444 | + <artifacts> |
| 445 | + <artifact> |
| 446 | + <classifier>sources</classifier> |
| 447 | + <file>${project.build.directory}/${project.artifactId}-${project.version}-sources.jar</file> |
| 448 | + </artifact> |
| 449 | + <artifact> |
| 450 | + <classifier>javadoc</classifier> |
| 451 | + <file>${project.build.directory}/${project.artifactId}-${project.version}-javadoc.jar</file> |
| 452 | + </artifact> |
| 453 | + <artifact> |
| 454 | + <classifier>tests</classifier> |
| 455 | + <file>${project.build.directory}/${project.artifactId}-${project.version}-tests.jar</file> |
| 456 | + </artifact> |
| 457 | + </artifacts> |
| 458 | + </configuration> |
| 459 | + </plugin> |
| 460 | + <plugin> |
| 461 | + <groupId>org.apache.maven.plugins</groupId> |
| 462 | + <artifactId>maven-gpg-plugin</artifactId> |
| 463 | + <version>1.6</version> |
| 464 | + <configuration> |
| 465 | + <gpgArguments> |
| 466 | + <arg>--pinentry-mode</arg> |
| 467 | + <arg>loopback</arg> |
| 468 | + </gpgArguments> |
| 469 | + </configuration> |
| 470 | + </plugin> |
327 | 471 | <plugin> |
328 | 472 | <groupId>org.sonatype.plugins</groupId> |
329 | 473 | <artifactId>nexus-staging-maven-plugin</artifactId> |
|
335 | 479 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
336 | 480 | </configuration> |
337 | 481 | </plugin> |
338 | | - <plugin> |
339 | | - <groupId>org.apache.maven.plugins</groupId> |
340 | | - <artifactId>maven-gpg-plugin</artifactId> |
341 | | - <version>1.6</version> |
342 | | - <executions> |
343 | | - <execution> |
344 | | - <goals> |
345 | | - <goal>sign</goal> |
346 | | - </goals> |
347 | | - </execution> |
348 | | - </executions> |
349 | | - </plugin> |
350 | 482 | </plugins> |
351 | 483 | </build> |
352 | 484 | </profile> |
|
0 commit comments