|
45 | 45 | <properties> |
46 | 46 | <asm.version>9.7.1</asm.version> |
47 | 47 | <depends-maven-plugin.version>1.5.0</depends-maven-plugin.version> |
48 | | - <exam.version>4.13.3</exam.version> |
| 48 | + <exam.version>4.13.5</exam.version> |
49 | 49 | <javax.inject.version>1</javax.inject.version> |
50 | | - <logback.version>1.5.16</logback.version> |
51 | 50 | <org.apache.aries.proxy.api.version>1.1.2-SNAPSHOT</org.apache.aries.proxy.api.version> |
52 | 51 | <org.apache.aries.proxy.version>1.1.15-SNAPSHOT</org.apache.aries.proxy.version> |
53 | 52 | <org.eclipse.osgi.version>3.22.0</org.eclipse.osgi.version> |
54 | | - <slf4j-api.version>1.7.7</slf4j-api.version> |
55 | 53 | <tinybundles.version>2.0.0</tinybundles.version> |
56 | 54 | <url.version>2.6.16</url.version> |
57 | 55 | </properties> |
|
61 | 59 | <groupId>org.eclipse.platform</groupId> |
62 | 60 | <artifactId>org.eclipse.osgi</artifactId> |
63 | 61 | <version>${org.eclipse.osgi.version}</version> |
64 | | - <scope>provided</scope> |
65 | | - </dependency> |
66 | | - <dependency> |
67 | | - <groupId>org.osgi</groupId> |
68 | | - <artifactId>org.osgi.compendium</artifactId> |
69 | | - <scope>provided</scope> |
70 | 62 | </dependency> |
71 | 63 | <dependency> |
72 | 64 | <groupId>org.apache.aries.proxy</groupId> |
|
80 | 72 | <scope>test</scope> |
81 | 73 | <version>${org.apache.aries.proxy.version}</version> |
82 | 74 | </dependency> |
83 | | - |
84 | | - <!-- pax exam --> |
85 | 75 | <dependency> |
86 | | - <groupId>org.slf4j</groupId> |
87 | | - <artifactId>slf4j-api</artifactId> |
88 | | - <version>${slf4j-api.version}</version> |
| 76 | + <groupId>org.osgi</groupId> |
| 77 | + <artifactId>org.osgi.compendium</artifactId> |
| 78 | + <scope>provided</scope> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>junit</groupId> |
| 82 | + <artifactId>junit</artifactId> |
| 83 | + <scope>provided</scope> |
89 | 84 | </dependency> |
90 | 85 | <dependency> |
| 86 | + <groupId>org.ops4j.pax.logging</groupId> |
| 87 | + <artifactId>pax-logging-api</artifactId> |
| 88 | + <scope>test</scope> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>org.ops4j.pax.logging</groupId> |
| 92 | + <artifactId>pax-logging-service</artifactId> |
| 93 | + <scope>test</scope> |
| 94 | + </dependency> |
| 95 | + |
| 96 | + <!-- pax exam --> |
| 97 | + <dependency> |
91 | 98 | <groupId>org.ops4j.pax.exam</groupId> |
92 | 99 | <artifactId>pax-exam</artifactId> |
93 | 100 | <version>${exam.version}</version> |
94 | 101 | <scope>test</scope> |
95 | 102 | </dependency> |
96 | 103 | <dependency> |
97 | 104 | <groupId>org.ops4j.pax.exam</groupId> |
98 | | - <artifactId>pax-exam-container-forked</artifactId> |
| 105 | + <artifactId>pax-exam-container-native</artifactId> |
99 | 106 | <version>${exam.version}</version> |
100 | 107 | <scope>test</scope> |
101 | 108 | </dependency> |
|
117 | 124 | <version>${url.version}</version> |
118 | 125 | <scope>test</scope> |
119 | 126 | </dependency> |
120 | | - <dependency> |
121 | | - <groupId>ch.qos.logback</groupId> |
122 | | - <artifactId>logback-core</artifactId> |
123 | | - <version>${logback.version}</version> |
124 | | - <scope>test</scope> |
125 | | - </dependency> |
126 | | - <dependency> |
127 | | - <groupId>ch.qos.logback</groupId> |
128 | | - <artifactId>logback-classic</artifactId> |
129 | | - <version>${logback.version}</version> |
130 | | - <scope>test</scope> |
131 | | - </dependency> |
132 | 127 | <dependency> |
133 | 128 | <groupId>org.ops4j.pax.tinybundles</groupId> |
134 | 129 | <artifactId>tinybundles</artifactId> |
135 | 130 | <version>${tinybundles.version}</version> |
136 | 131 | </dependency> |
137 | | - <dependency> |
138 | | - <groupId>junit</groupId> |
139 | | - <artifactId>junit</artifactId> |
140 | | - <scope>test</scope> |
141 | | - </dependency> |
142 | 132 |
|
143 | 133 | <dependency> |
144 | 134 | <groupId>org.ow2.asm</groupId> |
|
170 | 160 | <version>${javax.inject.version}</version> |
171 | 161 | <scope>test</scope> |
172 | 162 | </dependency> |
173 | | - <dependency> |
174 | | - <groupId>org.ops4j.pax.logging</groupId> |
175 | | - <artifactId>pax-logging-api</artifactId> |
176 | | - <scope>test</scope> |
177 | | - </dependency> |
178 | | - <dependency> |
179 | | - <groupId>org.ops4j.pax.logging</groupId> |
180 | | - <artifactId>pax-logging-service</artifactId> |
181 | | - <scope>test</scope> |
182 | | - </dependency> |
183 | 163 | </dependencies> |
184 | 164 |
|
185 | 165 | <build> |
|
201 | 181 | </build> |
202 | 182 |
|
203 | 183 | <profiles> |
| 184 | + <profile> |
| 185 | + <id>java9To21</id> |
| 186 | + <activation> |
| 187 | + <jdk>(8,22)</jdk> |
| 188 | + </activation> |
| 189 | + <build> |
| 190 | + <plugins> |
| 191 | + <plugin> |
| 192 | + <groupId>org.apache.maven.plugins</groupId> |
| 193 | + <artifactId>maven-surefire-plugin</artifactId> |
| 194 | + <configuration> |
| 195 | + <argLine>--add-opens java.base/java.lang=ALL-UNNAMED</argLine> |
| 196 | + </configuration> |
| 197 | + </plugin> |
| 198 | + </plugins> |
| 199 | + </build> |
| 200 | + </profile> |
204 | 201 | <profile> |
205 | 202 | <id>ci-build-profile</id> |
206 | 203 | <activation> |
|
0 commit comments