Commit 424a59d
authored
Arrange assertion (#264)
* Arrange assertion
* generated dependencies in pom have changed
Before (assert 2):
```
<dependencies>
<dependency>
<groupId>io.pivotal.cfenv</groupId>
<artifactId>java-cfenv</artifactId>
<version>3.1.6-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.pivotal.cfenv</groupId>
<artifactId>java-cfenv</artifactId>
<version>3.1.6-SNAPSHOT</version>
<scope>compile</scope>
<type>test-jar</type>
</dependency>
[...]
</dependencies>
```
after (assert 1):
```
<dependencies>
<dependency>
<groupId>io.pivotal.cfenv</groupId>
<artifactId>java-cfenv</artifactId>
<version>3.1.6-SNAPSHOT</version>
<scope>compile</scope>
<type>test-jar</type>
</dependency>
</dependencies>
```
It's as if Gradle "optimized" the 2 deps into 1 - for most probably (I'm gonna find out) the same classpath result in Maven
* Keep previous assertion and generated pom too!1 parent f85c603 commit 424a59d
File tree
1 file changed
+6
-1
lines changed- buildSrc/src/main/groovy
1 file changed
+6
-1
lines changedLines changed: 6 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
161 | 161 | | |
162 | 162 | | |
163 | 163 | | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
164 | 170 | | |
165 | | - | |
166 | 171 | | |
167 | 172 | | |
168 | 173 | | |
| |||
0 commit comments