Skip to content

Commit 6bacf1b

Browse files
authored
fix dependencies for azure-java-appservice-sql example (#2168)
This example doesn't work with azure-native 3.x. However our dependencies currently *include* 3.0, instead of excluding it, which was probably what was intended here. This example also should keep working with pulumi-java `1.x`. Currently we allow `1.0.0`, but no further versions, which is also incorrect. Fix that, to include 1.x, but exclude 2.x. This fixes the test failure in pulumi-java (see the failing job in pulumi/pulumi-java#1767)
1 parent 7e6f009 commit 6bacf1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

azure-java-appservice-sql/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
<dependency>
2222
<groupId>com.pulumi</groupId>
2323
<artifactId>pulumi</artifactId>
24-
<version>(,1.0]</version>
24+
<version>(,2.0)</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>com.pulumi</groupId>
2828
<artifactId>azure-native</artifactId>
29-
<version>(2.0,3.0]</version>
29+
<version>[2.0,3.0)</version>
3030
</dependency>
3131
</dependencies>
3232

0 commit comments

Comments
 (0)