|
66 | 66 | <assertj.version>3.27.3</assertj.version> |
67 | 67 | <awaitility.version>4.2.2</awaitility.version> |
68 | 68 | <bsh.version>2.0b6</bsh.version> |
| 69 | + <bnd.annotation.version>7.1.0</bnd.annotation.version> |
69 | 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> |
|
125 | 126 | <oro.version>2.0.8</oro.version> |
126 | 127 | <!-- The OSGi API version MUST always be the MINIMUM version Log4j supports: --> |
127 | 128 | <osgi.api.version>6.0.0</osgi.api.version> |
| 129 | + <osgi.annotation.bundle.version>2.0.0</osgi.annotation.bundle.version> |
| 130 | + <osgi.annotation.versioning.version>1.1.2</osgi.annotation.versioning.version> |
128 | 131 | <pax-exam.version>4.14.0</pax-exam.version> |
129 | 132 | <plexus-utils.version>3.6.0</plexus-utils.version> |
| 133 | + <spotbugs-annotations.version>4.9.1</spotbugs-annotations.version> |
130 | 134 | <spring-boot.version>2.7.18</spring-boot.version> |
131 | 135 | <spring-framework.version>5.3.39</spring-framework.version> |
132 | 136 | <system-stubs.version>2.0.3</system-stubs.version> |
|
574 | 578 | <version>${jna.version}</version> |
575 | 579 | </dependency> |
576 | 580 |
|
| 581 | + <dependency> |
| 582 | + <groupId>org.jspecify</groupId> |
| 583 | + <artifactId>jspecify</artifactId> |
| 584 | + <version>${jspecify.version}</version> |
| 585 | + </dependency> |
| 586 | + |
577 | 587 | <dependency> |
578 | 588 | <groupId>junit</groupId> |
579 | 589 | <artifactId>junit</artifactId> |
|
829 | 839 | <dependency> |
830 | 840 | <groupId>biz.aQute.bnd</groupId> |
831 | 841 | <artifactId>biz.aQute.bnd.annotation</artifactId> |
| 842 | + <version>${bnd.annotation.version}</version> |
832 | 843 | <scope>provided</scope> |
833 | 844 | </dependency> |
834 | 845 |
|
|
841 | 852 |
|
842 | 853 | <dependency> |
843 | 854 | <groupId>org.osgi</groupId> |
844 | | - <artifactId>osgi.annotation</artifactId> |
| 855 | + <artifactId>org.osgi.annotation.bundle</artifactId> |
| 856 | + <version>${osgi.annotation.bundle.version}</version> |
845 | 857 | <scope>provided</scope> |
846 | 858 | </dependency> |
847 | 859 |
|
848 | 860 | <dependency> |
849 | 861 | <groupId>org.osgi</groupId> |
850 | | - <artifactId>org.osgi.annotation.bundle</artifactId> |
| 862 | + <artifactId>org.osgi.annotation.versioning</artifactId> |
| 863 | + <version>${osgi.annotation.versioning.version}</version> |
851 | 864 | <scope>provided</scope> |
852 | 865 | </dependency> |
853 | 866 |
|
854 | 867 | <dependency> |
855 | 868 | <groupId>com.github.spotbugs</groupId> |
856 | 869 | <artifactId>spotbugs-annotations</artifactId> |
| 870 | + <version>${spotbugs-annotations.version}</version> |
857 | 871 | <scope>provided</scope> |
858 | 872 | </dependency> |
859 | 873 |
|
|
977 | 991 | </executions> |
978 | 992 | </plugin> |
979 | 993 |
|
| 994 | + <plugin> |
| 995 | + <groupId>org.apache.maven.plugins</groupId> |
| 996 | + <artifactId>maven-compiler-plugin</artifactId> |
| 997 | + <configuration> |
| 998 | + <compilerArgs combine.children="append"> |
| 999 | + <arg>--should-stop=ifError=FLOW</arg> |
| 1000 | + </compilerArgs> |
| 1001 | + </configuration> |
| 1002 | + </plugin> |
| 1003 | + |
980 | 1004 | <!-- |
981 | 1005 | ~ Some external logging bridges can interfere with our tests, giving false negatives. |
982 | 1006 | --> |
|
0 commit comments