DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
But what happens if we have two dependencies.
Or - in plain XML
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
<dependencies>
<dependency>
<groupId>t</groupId>
<artifactId>b</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>t</groupId>
<artifactId>c</artifactId>
<version>1</version>
</dependency>
</dependencies>
|
and then t:b:1 lists it's dependencies as
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
</dependencies>
|
and t:c:1 listls it's dependencies as
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>[3.8.1,4.0.0)</version>
</dependency>
</dependencies>
|
...
