Skip to content

Commit bf1e2d1

Browse files
committed
wip
Signed-off-by: Todd Baert <[email protected]>
1 parent bcfc65a commit bf1e2d1

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ jobs:
2222
java-version: "18"
2323
distribution: "temurin"
2424
cache: maven
25-
server-id: ossrh
26-
server-username: OSSRH_USERNAME
27-
server-password: OSSRH_PASSWORD
2825

2926
- name: Cache local Maven repository
3027
uses: actions/cache@v2
@@ -35,7 +32,4 @@ jobs:
3532
${{ runner.os }}-maven-
3633
3734
- name: Maven Verify
38-
run: mvn --batch-mode --settings release/m2-settings.xml verify
39-
env:
40-
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
41-
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
35+
run: mvn --batch-mode verify

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,7 @@
261261
<executions>
262262
<execution>
263263
<id>attach-javadocs</id>
264+
<phase>verify</phase>
264265
<goals>
265266
<goal>jar</goal>
266267
</goals>

providers/go-feature-flag/src/main/java/dev/openfeature/contrib/providers/gofeatureflag/GoFeatureFlagProviderOptions.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
@Builder
1010
public class GoFeatureFlagProviderOptions {
1111

12+
public GoFeatureFlagProviderOptions() {
13+
14+
}
15+
1216
/**
1317
* (mandatory) endpoint contains the DNS of your GO Feature Flag relay proxy
1418
* example: https://mydomain.com/gofeatureflagproxy/

0 commit comments

Comments
 (0)