|
66 | 66 | <assertj.version>3.26.3</assertj.version>
|
67 | 67 | <awaitility.version>4.2.2</awaitility.version>
|
68 | 68 | <bsh.version>2.0b6</bsh.version>
|
69 |
| - <cassandra.version>3.11.17</cassandra.version> |
| 69 | + <bnd.annotation.version>7.1.0</bnd.annotation.version> |
| 70 | + <cassandra.version>3.11.18</cassandra.version> |
70 | 71 | <cassandra-driver.version>3.11.5</cassandra-driver.version>
|
71 | 72 | <commons-codec.version>1.17.1</commons-codec.version>
|
72 | 73 | <commons-compress.version>1.27.1</commons-compress.version>
|
|
127 | 128 | <oro.version>2.0.8</oro.version>
|
128 | 129 | <!-- The OSGi API version MUST always be the MINIMUM version Log4j supports: -->
|
129 | 130 | <osgi.api.version>6.0.0</osgi.api.version>
|
130 |
| - <pax-exam.version>4.13.5</pax-exam.version> |
131 |
| - <plexus-utils.version>3.5.1</plexus-utils.version> |
| 131 | + <osgi.annotation.bundle.version>2.0.0</osgi.annotation.bundle.version> |
| 132 | + <osgi.annotation.versioning.version>1.1.2</osgi.annotation.versioning.version> |
| 133 | + <pax-exam.version>4.14.0</pax-exam.version> |
| 134 | + <plexus-utils.version>3.6.0</plexus-utils.version> |
| 135 | + <spotbugs-annotations.version>4.9.1</spotbugs-annotations.version> |
132 | 136 | <spring-boot.version>2.7.18</spring-boot.version>
|
133 | 137 | <spring-framework.version>5.3.39</spring-framework.version>
|
134 | 138 | <system-stubs.version>2.0.3</system-stubs.version>
|
|
582 | 586 | <version>${json-unit.version}</version>
|
583 | 587 | </dependency>
|
584 | 588 |
|
| 589 | + <dependency> |
| 590 | + <groupId>org.jspecify</groupId> |
| 591 | + <artifactId>jspecify</artifactId> |
| 592 | + <version>${jspecify.version}</version> |
| 593 | + </dependency> |
| 594 | + |
585 | 595 | <dependency>
|
586 | 596 | <groupId>junit</groupId>
|
587 | 597 | <artifactId>junit</artifactId>
|
|
837 | 847 | <dependency>
|
838 | 848 | <groupId>biz.aQute.bnd</groupId>
|
839 | 849 | <artifactId>biz.aQute.bnd.annotation</artifactId>
|
| 850 | + <version>${bnd.annotation.version}</version> |
840 | 851 | <scope>provided</scope>
|
841 | 852 | </dependency>
|
842 | 853 |
|
|
849 | 860 |
|
850 | 861 | <dependency>
|
851 | 862 | <groupId>org.osgi</groupId>
|
852 |
| - <artifactId>osgi.annotation</artifactId> |
| 863 | + <artifactId>org.osgi.annotation.bundle</artifactId> |
| 864 | + <version>${osgi.annotation.bundle.version}</version> |
853 | 865 | <scope>provided</scope>
|
854 | 866 | </dependency>
|
855 | 867 |
|
856 | 868 | <dependency>
|
857 | 869 | <groupId>org.osgi</groupId>
|
858 |
| - <artifactId>org.osgi.annotation.bundle</artifactId> |
| 870 | + <artifactId>org.osgi.annotation.versioning</artifactId> |
| 871 | + <version>${osgi.annotation.versioning.version}</version> |
859 | 872 | <scope>provided</scope>
|
860 | 873 | </dependency>
|
861 | 874 |
|
862 | 875 | <dependency>
|
863 | 876 | <groupId>com.github.spotbugs</groupId>
|
864 | 877 | <artifactId>spotbugs-annotations</artifactId>
|
| 878 | + <version>${spotbugs-annotations.version}</version> |
865 | 879 | <scope>provided</scope>
|
866 | 880 | </dependency>
|
867 | 881 |
|
|
985 | 999 | </executions>
|
986 | 1000 | </plugin>
|
987 | 1001 |
|
| 1002 | + <plugin> |
| 1003 | + <groupId>org.apache.maven.plugins</groupId> |
| 1004 | + <artifactId>maven-compiler-plugin</artifactId> |
| 1005 | + <configuration> |
| 1006 | + <compilerArgs combine.children="append"> |
| 1007 | + <arg>--should-stop=ifError=FLOW</arg> |
| 1008 | + </compilerArgs> |
| 1009 | + </configuration> |
| 1010 | + </plugin> |
| 1011 | + |
988 | 1012 | <!--
|
989 | 1013 | ~ Some external logging bridges can interfere with our tests, giving false negatives.
|
990 | 1014 | -->
|
|
0 commit comments