Skip to content

Commit 2adc333

Browse files
committed
add more versioned comments
1 parent 4fd870a commit 2adc333

File tree

7 files changed

+27
-6
lines changed

7 files changed

+27
-6
lines changed

confidence-proto/pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4+
<!-- x-release-please-start-version -->
45
<parent>
56
<groupId>com.spotify.confidence</groupId>
67
<artifactId>confidence-sdk-java</artifactId>
78
<version>0.1.11-SNAPSHOT</version>
89
</parent>
9-
10+
<!---x-release-please-end-->
11+
1012
<artifactId>confidence-proto</artifactId>
1113
<name>Confidence Proto files</name>
1214

openfeature-provider-local/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4+
<!-- x-release-please-start-version -->
45
<parent>
56
<groupId>com.spotify.confidence</groupId>
67
<artifactId>confidence-sdk-java</artifactId>
78
<version>0.1.11-SNAPSHOT</version>
89
</parent>
10+
<!---x-release-please-end-->
911

1012
<name>Confidence local resolve provider</name>
1113
<artifactId>openfeature-provider-local</artifactId>
@@ -61,10 +63,23 @@
6163
<artifactId>grpc-services</artifactId>
6264
<version>1.68.1</version>
6365
</dependency>
66+
<dependency>
67+
<groupId>net.bytebuddy</groupId>
68+
<artifactId>byte-buddy</artifactId>
69+
<version>1.17.6</version>
70+
<scope>test</scope>
71+
</dependency>
6472
<dependency>
6573
<groupId>org.mockito</groupId>
6674
<artifactId>mockito-inline</artifactId>
6775
<version>5.2.0</version>
76+
<scope>test</scope>
77+
<exclusions>
78+
<exclusion>
79+
<groupId>net.bytebuddy</groupId>
80+
<artifactId>byte-buddy</artifactId>
81+
</exclusion>
82+
</exclusions>
6883
</dependency>
6984
<dependency>
7085
<groupId>org.mockito</groupId>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package com.spotify.confidence;
22

3-
record ApiSecret(String clientId, String clientSecret) {}
3+
public record ApiSecret(String clientId, String clientSecret) {}

openfeature-provider-shared/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4+
<!-- x-release-please-start-version -->
45
<parent>
56
<groupId>com.spotify.confidence</groupId>
67
<artifactId>confidence-sdk-java</artifactId>
78
<version>0.1.11-SNAPSHOT</version>
89
</parent>
9-
10+
<!---x-release-please-end-->
1011
<name>Confidence java resolver shared components</name>
1112
<artifactId>openfeature-provider-shared</artifactId>
1213
<organization>

openfeature-provider/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4+
<!-- x-release-please-start-version -->
45
<parent>
56
<groupId>com.spotify.confidence</groupId>
67
<artifactId>confidence-sdk-java</artifactId>
78
<version>0.1.11-SNAPSHOT</version>
89
</parent>
9-
10+
<!---x-release-please-end-->
1011
<artifactId>openfeature-provider</artifactId>
1112

1213
<name>Confidence SDK - OpenFeature Provider</name>

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@
2121
</repository>
2222
</distributionManagement>
2323

24+
<!-- x-release-please-start-version -->
2425
<groupId>com.spotify.confidence</groupId>
2526
<artifactId>confidence-sdk-java</artifactId>
2627
<version>0.1.11-SNAPSHOT</version>
27-
28+
<!---x-release-please-end-->
2829
<url>https://github.com/spotify/confidence-sdk-java</url>
2930
<description>Confidence SDK for Java</description>
3031

sdk-java/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4+
<!-- x-release-please-start-version -->
45
<parent>
56
<groupId>com.spotify.confidence</groupId>
67
<artifactId>confidence-sdk-java</artifactId>
78
<version>0.1.11-SNAPSHOT</version>
89
</parent>
9-
10+
<!---x-release-please-end-->
1011
<artifactId>sdk-java</artifactId>
1112

1213
<name>Confidence SDK - Native</name>

0 commit comments

Comments
 (0)