|
133 | 133 |
|
134 | 134 | <dependencyManagement>
|
135 | 135 | <dependencies>
|
| 136 | + |
| 137 | + <!-- |
| 138 | + | Internal modules (reactor) |
| 139 | + --> |
| 140 | + <dependency> |
| 141 | + <groupId>org.eclipse.sisu</groupId> |
| 142 | + <artifactId>org.eclipse.sisu.inject</artifactId> |
| 143 | + <version>${project.version}</version> |
| 144 | + </dependency> |
| 145 | + <dependency> |
| 146 | + <groupId>org.eclipse.sisu</groupId> |
| 147 | + <artifactId>org.eclipse.sisu.plexus</artifactId> |
| 148 | + <version>${project.version}</version> |
| 149 | + </dependency> |
| 150 | + |
| 151 | + <!-- |
| 152 | + | Sisu is compatible with Guice 3.0+ |
| 153 | + --> |
| 154 | + <dependency> |
| 155 | + <groupId>com.google.inject</groupId> |
| 156 | + <artifactId>guice</artifactId> |
| 157 | + <version>4.0</version> |
| 158 | + </dependency> |
| 159 | + |
| 160 | + <!-- |
| 161 | + | Plexus classloading/utilities |
| 162 | + --> |
| 163 | + <dependency> |
| 164 | + <groupId>org.codehaus.plexus</groupId> |
| 165 | + <artifactId>plexus-component-annotations</artifactId> |
| 166 | + <version>2.1.0</version> |
| 167 | + </dependency> |
| 168 | + <dependency> |
| 169 | + <groupId>org.codehaus.plexus</groupId> |
| 170 | + <artifactId>plexus-classworlds</artifactId> |
| 171 | + <version>2.6.0</version> |
| 172 | + </dependency> |
| 173 | + <dependency> |
| 174 | + <groupId>org.codehaus.plexus</groupId> |
| 175 | + <artifactId>plexus-utils</artifactId> |
| 176 | + <version>3.5.1</version> |
| 177 | + </dependency> |
| 178 | + <dependency> |
| 179 | + <groupId>org.codehaus.plexus</groupId> |
| 180 | + <artifactId>plexus-xml</artifactId> |
| 181 | + <!-- keep 3.x to be compatible with Maven 3 --> |
| 182 | + <version>3.0.0</version> |
| 183 | + </dependency> |
| 184 | + |
| 185 | + <!-- |
| 186 | + | Optional support dependencies |
| 187 | + --> |
| 188 | + <dependency> |
| 189 | + <groupId>org.slf4j</groupId> |
| 190 | + <artifactId>slf4j-api</artifactId> |
| 191 | + <version>1.7.36</version> |
| 192 | + </dependency> |
| 193 | + <dependency> |
| 194 | + <groupId>org.slf4j</groupId> |
| 195 | + <artifactId>slf4j-nop</artifactId> |
| 196 | + <version>1.7.36</version> |
| 197 | + </dependency> |
| 198 | + <dependency> |
| 199 | + <groupId>org.osgi</groupId> |
| 200 | + <artifactId>osgi.core</artifactId> |
| 201 | + <version>5.0.0</version> |
| 202 | + </dependency> |
| 203 | + <dependency> |
| 204 | + <groupId>javax.annotation</groupId> |
| 205 | + <artifactId>javax.annotation-api</artifactId> |
| 206 | + <version>1.2</version> |
| 207 | + </dependency> |
| 208 | + <dependency> |
| 209 | + <groupId>javax.enterprise</groupId> |
| 210 | + <artifactId>cdi-api</artifactId> |
| 211 | + <version>1.2</version> |
| 212 | + <exclusions> |
| 213 | + <exclusion> |
| 214 | + <groupId>javax.el</groupId> |
| 215 | + <artifactId>javax.el-api</artifactId> |
| 216 | + </exclusion> |
| 217 | + <exclusion> |
| 218 | + <groupId>javax.interceptor</groupId> |
| 219 | + <artifactId>javax.interceptor-api</artifactId> |
| 220 | + </exclusion> |
| 221 | + </exclusions> |
| 222 | + </dependency> |
| 223 | + <dependency> |
| 224 | + <groupId>javax.servlet</groupId> |
| 225 | + <artifactId>servlet-api</artifactId> |
| 226 | + <version>2.5</version> |
| 227 | + </dependency> |
| 228 | + <dependency> |
| 229 | + <groupId>com.google.inject.extensions</groupId> |
| 230 | + <artifactId>guice-servlet</artifactId> |
| 231 | + <version>4.0</version> |
| 232 | + </dependency> |
| 233 | + <dependency> |
| 234 | + <groupId>junit</groupId> |
| 235 | + <artifactId>junit</artifactId> |
| 236 | + <version>4.13.2</version><!-- older version not supported by junit-vintage runner --> |
| 237 | + </dependency> |
| 238 | + <dependency> |
| 239 | + <groupId>org.testng</groupId> |
| 240 | + <artifactId>testng</artifactId> |
| 241 | + <version>6.7</version> |
| 242 | + </dependency> |
| 243 | + <dependency> |
| 244 | + <groupId>ch.qos.logback</groupId> |
| 245 | + <artifactId>logback-classic</artifactId> |
| 246 | + <version>1.2.13</version> |
| 247 | + </dependency> |
| 248 | + <dependency> |
| 249 | + <groupId>com.google.inject.extensions</groupId> |
| 250 | + <artifactId>guice-assistedinject</artifactId> |
| 251 | + <version>4.0</version> |
| 252 | + </dependency> |
| 253 | + <dependency> |
| 254 | + <groupId>org.apache.felix</groupId> |
| 255 | + <artifactId>org.apache.felix.framework</artifactId> |
| 256 | + <version>7.0.5</version> |
| 257 | + </dependency> |
| 258 | + <dependency> |
| 259 | + <groupId>org.sonatype.plexus</groupId> |
| 260 | + <artifactId>plexus-build-api</artifactId> |
| 261 | + <version>0.0.7</version> |
| 262 | + </dependency> |
| 263 | + |
| 264 | + <!-- |
| 265 | + | org.eclipse.sisu.mojos specific |
| 266 | + --> |
| 267 | + <dependency> |
| 268 | + <groupId>org.apache.maven.plugin-tools</groupId> |
| 269 | + <artifactId>maven-plugin-annotations</artifactId> |
| 270 | + <version>${mavenPluginToolsVersion}</version> |
| 271 | + </dependency> |
| 272 | + <dependency> |
| 273 | + <groupId>org.apache.maven.shared</groupId> |
| 274 | + <artifactId>maven-common-artifact-filters</artifactId> |
| 275 | + <version>3.3.2</version> |
| 276 | + </dependency> |
| 277 | + |
| 278 | + <!-- |
| 279 | + | Testing |
| 280 | + --> |
136 | 281 | <dependency>
|
137 | 282 | <groupId>org.junit</groupId>
|
138 | 283 | <artifactId>junit-bom</artifactId>
|
|
0 commit comments