|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + This POM is used exclusively by the bnd MavenBndRepository plugin to resolve |
| 4 | + external bundle artifacts from Maven Central into the bnd workspace repository. |
| 5 | + It is NOT a build POM — do not run mvn against it. |
| 6 | +--> |
| 7 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 8 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 9 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
| 10 | + http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 11 | + <modelVersion>4.0.0</modelVersion> |
| 12 | + <groupId>io.klib</groupId> |
| 13 | + <artifactId>workspace-deps</artifactId> |
| 14 | + <version>0.3.0</version> |
| 15 | + <packaging>pom</packaging> |
| 16 | + |
| 17 | + <dependencies> |
| 18 | + |
| 19 | + <!-- ═══════════════════════════════════════════════ |
| 20 | + OSGi Core & Annotations |
| 21 | + ═══════════════════════════════════════════════ --> |
| 22 | + <dependency> |
| 23 | + <groupId>org.osgi</groupId> |
| 24 | + <artifactId>osgi.core</artifactId> |
| 25 | + <version>8.0.0</version> |
| 26 | + </dependency> |
| 27 | + <dependency> |
| 28 | + <groupId>org.osgi</groupId> |
| 29 | + <artifactId>osgi.annotation</artifactId> |
| 30 | + <version>8.1.0</version> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>org.osgi</groupId> |
| 34 | + <artifactId>org.osgi.service.component.annotations</artifactId> |
| 35 | + <version>1.5.1</version> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.osgi</groupId> |
| 39 | + <artifactId>org.osgi.service.component</artifactId> |
| 40 | + <version>1.5.1</version> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>org.osgi</groupId> |
| 44 | + <artifactId>org.osgi.util.promise</artifactId> |
| 45 | + <version>1.3.0</version> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.osgi</groupId> |
| 49 | + <artifactId>org.osgi.util.function</artifactId> |
| 50 | + <version>1.1.0</version> |
| 51 | + </dependency> |
| 52 | + |
| 53 | + <!-- ═══════════════════════════════════════════════ |
| 54 | + Apache Felix Runtime |
| 55 | + ═══════════════════════════════════════════════ --> |
| 56 | + <dependency> |
| 57 | + <groupId>org.apache.felix</groupId> |
| 58 | + <artifactId>org.apache.felix.framework</artifactId> |
| 59 | + <version>7.0.5</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.apache.felix</groupId> |
| 63 | + <artifactId>org.apache.felix.scr</artifactId> |
| 64 | + <version>2.2.6</version> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.apache.felix</groupId> |
| 68 | + <artifactId>org.apache.felix.log</artifactId> |
| 69 | + <version>1.3.0</version> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>org.apache.felix</groupId> |
| 73 | + <artifactId>org.apache.felix.logback</artifactId> |
| 74 | + <version>1.0.6</version> |
| 75 | + </dependency> |
| 76 | + <dependency> |
| 77 | + <groupId>org.apache.felix</groupId> |
| 78 | + <artifactId>org.apache.felix.gogo.runtime</artifactId> |
| 79 | + <version>1.1.6</version> |
| 80 | + </dependency> |
| 81 | + <dependency> |
| 82 | + <groupId>org.apache.felix</groupId> |
| 83 | + <artifactId>org.apache.felix.gogo.command</artifactId> |
| 84 | + <version>1.1.2</version> |
| 85 | + </dependency> |
| 86 | + <dependency> |
| 87 | + <groupId>org.apache.felix</groupId> |
| 88 | + <artifactId>org.apache.felix.gogo.shell</artifactId> |
| 89 | + <version>1.1.4</version> |
| 90 | + </dependency> |
| 91 | + |
| 92 | + <!-- ═══════════════════════════════════════════════ |
| 93 | + SLF4J (required by Felix Logback) |
| 94 | + ═══════════════════════════════════════════════ --> |
| 95 | + <dependency> |
| 96 | + <groupId>org.slf4j</groupId> |
| 97 | + <artifactId>slf4j-api</artifactId> |
| 98 | + <version>2.0.16</version> |
| 99 | + </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>ch.qos.logback</groupId> |
| 102 | + <artifactId>logback-classic</artifactId> |
| 103 | + <version>1.5.12</version> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>ch.qos.logback</groupId> |
| 107 | + <artifactId>logback-core</artifactId> |
| 108 | + <version>1.5.12</version> |
| 109 | + </dependency> |
| 110 | + |
| 111 | + <!-- ═══════════════════════════════════════════════ |
| 112 | + JUnit 5 (OSGi-compatible bundles from JUnit 5.11+) |
| 113 | + ═══════════════════════════════════════════════ --> |
| 114 | + <dependency> |
| 115 | + <groupId>org.junit.jupiter</groupId> |
| 116 | + <artifactId>junit-jupiter-api</artifactId> |
| 117 | + <version>5.11.4</version> |
| 118 | + </dependency> |
| 119 | + <dependency> |
| 120 | + <groupId>org.junit.jupiter</groupId> |
| 121 | + <artifactId>junit-jupiter-engine</artifactId> |
| 122 | + <version>5.11.4</version> |
| 123 | + </dependency> |
| 124 | + <dependency> |
| 125 | + <groupId>org.junit.jupiter</groupId> |
| 126 | + <artifactId>junit-jupiter-params</artifactId> |
| 127 | + <version>5.11.4</version> |
| 128 | + </dependency> |
| 129 | + <dependency> |
| 130 | + <groupId>org.junit.platform</groupId> |
| 131 | + <artifactId>junit-platform-commons</artifactId> |
| 132 | + <version>1.11.4</version> |
| 133 | + </dependency> |
| 134 | + <dependency> |
| 135 | + <groupId>org.junit.platform</groupId> |
| 136 | + <artifactId>junit-platform-engine</artifactId> |
| 137 | + <version>1.11.4</version> |
| 138 | + </dependency> |
| 139 | + <dependency> |
| 140 | + <groupId>org.junit.platform</groupId> |
| 141 | + <artifactId>junit-platform-launcher</artifactId> |
| 142 | + <version>1.11.4</version> |
| 143 | + </dependency> |
| 144 | + <dependency> |
| 145 | + <groupId>org.opentest4j</groupId> |
| 146 | + <artifactId>opentest4j</artifactId> |
| 147 | + <version>1.3.0</version> |
| 148 | + </dependency> |
| 149 | + <!-- apiguardian-api (required by JUnit 5 annotations) --> |
| 150 | + <dependency> |
| 151 | + <groupId>org.apiguardian</groupId> |
| 152 | + <artifactId>apiguardian-api</artifactId> |
| 153 | + <version>1.1.2</version> |
| 154 | + </dependency> |
| 155 | + |
| 156 | + <!-- ═══════════════════════════════════════════════ |
| 157 | + bnd JUnit 5 OSGi Test Runner |
| 158 | + ═══════════════════════════════════════════════ --> |
| 159 | + <dependency> |
| 160 | + <groupId>biz.aQute.bnd</groupId> |
| 161 | + <artifactId>biz.aQute.tester.junit-platform</artifactId> |
| 162 | + <version>7.1.0</version> |
| 163 | + </dependency> |
| 164 | + <dependency> |
| 165 | + <groupId>biz.aQute.bnd</groupId> |
| 166 | + <artifactId>biz.aQute.tester</artifactId> |
| 167 | + <version>7.1.0</version> |
| 168 | + </dependency> |
| 169 | + |
| 170 | + <!-- ═══════════════════════════════════════════════ |
| 171 | + eclipse-osgi-technology/osgi-test |
| 172 | + https://github.com/eclipse-osgi-technology/osgi-test |
| 173 | + Published on Maven Central under groupId org.osgi |
| 174 | + Provides: @InjectBundleContext, @InjectService, BundleContextExtension, ServiceExtension |
| 175 | + ═══════════════════════════════════════════════ --> |
| 176 | + <dependency> |
| 177 | + <groupId>org.osgi</groupId> |
| 178 | + <artifactId>org.osgi.test.common</artifactId> |
| 179 | + <version>1.3.0</version> |
| 180 | + </dependency> |
| 181 | + <dependency> |
| 182 | + <groupId>org.osgi</groupId> |
| 183 | + <artifactId>org.osgi.test.junit5</artifactId> |
| 184 | + <version>1.3.0</version> |
| 185 | + </dependency> |
| 186 | + |
| 187 | + </dependencies> |
| 188 | +</project> |
0 commit comments