|
80 | 80 | javax.management.MBeanServer |
81 | 81 | </aries.osgi.import.service> |
82 | 82 |
|
| 83 | + <depends-maven-plugin.version>1.5.0</depends-maven-plugin.version> |
83 | 84 | <javax.inject.version>1</javax.inject.version> |
84 | 85 | <maven-antrun-plugin.version>3.1.0</maven-antrun-plugin.version> |
85 | 86 | <mockito-core.version>4.11.0</mockito-core.version> |
86 | 87 | <org.apache.aries.jmx.core.version>1.1.8</org.apache.aries.jmx.core.version> |
| 88 | + <org.apache.felix.configadmin.version>1.9.26</org.apache.felix.configadmin.version> |
87 | 89 | <org.eclipse.osgi.version>3.23.0</org.eclipse.osgi.version> |
88 | 90 | <osgi.cmpn.version>4.3.1</osgi.cmpn.version> |
89 | 91 | <osgi.core.version>4.3.1</osgi.core.version> |
90 | 92 | <pax-exam.version>4.13.5</pax-exam.version> |
| 93 | + <pax-logging.version>1.12.12</pax-logging.version> |
91 | 94 | <pax-tinybundles.version>2.1.1</pax-tinybundles.version> |
92 | 95 | <pax-url.version>2.6.16</pax-url.version> |
93 | 96 | </properties> |
|
128 | 131 | </excludes> |
129 | 132 | </configuration> |
130 | 133 | </plugin> |
| 134 | + <plugin> |
| 135 | + <groupId>org.apache.servicemix.tooling</groupId> |
| 136 | + <artifactId>depends-maven-plugin</artifactId> |
| 137 | + <!-- TODO ARIES-2165: remove configuration when the newest parent pom is used --> |
| 138 | + <version>${depends-maven-plugin.version}</version> |
| 139 | + <executions> |
| 140 | + <execution> |
| 141 | + <id>generate-depends-file</id> |
| 142 | + <goals> |
| 143 | + <goal>generate-depends-file</goal> |
| 144 | + </goals> |
| 145 | + </execution> |
| 146 | + </executions> |
| 147 | + </plugin> |
131 | 148 | </plugins> |
132 | 149 | </build> |
133 | 150 |
|
|
214 | 231 | <version>${pax-tinybundles.version}</version> |
215 | 232 | <scope>test</scope> |
216 | 233 | </dependency> |
| 234 | + <dependency> |
| 235 | + <groupId>org.ops4j.pax.logging</groupId> |
| 236 | + <artifactId>pax-logging-api</artifactId> |
| 237 | + <version>${pax-logging.version}</version> |
| 238 | + <scope>test</scope> |
| 239 | + </dependency> |
| 240 | + <dependency> |
| 241 | + <groupId>org.ops4j.pax.logging</groupId> |
| 242 | + <artifactId>pax-logging-log4j2</artifactId> |
| 243 | + <version>${pax-logging.version}</version> |
| 244 | + <scope>test</scope> |
| 245 | + </dependency> |
217 | 246 | <dependency> |
218 | 247 | <groupId>javax.inject</groupId> |
219 | 248 | <artifactId>javax.inject</artifactId> |
220 | 249 | <version>${javax.inject.version}</version> |
221 | 250 | </dependency> |
| 251 | + <dependency> |
| 252 | + <groupId>org.apache.felix</groupId> |
| 253 | + <artifactId>org.apache.felix.configadmin</artifactId> |
| 254 | + <version>${org.apache.felix.configadmin.version}</version> |
| 255 | + <exclusions> |
| 256 | + <exclusion> |
| 257 | + <groupId>org.apache.felix</groupId> |
| 258 | + <artifactId>org.osgi.compendium</artifactId> |
| 259 | + </exclusion> |
| 260 | + <exclusion> |
| 261 | + <groupId>org.apache.felix</groupId> |
| 262 | + <artifactId>org.osgi.core</artifactId> |
| 263 | + </exclusion> |
| 264 | + </exclusions> |
| 265 | + </dependency> |
222 | 266 | </dependencies> |
223 | 267 |
|
224 | 268 | <profiles> |
|
0 commit comments