Skip to content

Commit 13dc570

Browse files
committed
Updating annotation processor dependency to 1.0.7
1 parent 517b29f commit 13dc570

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

addon-sdk/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>com.cake.clockify</groupId>
2626
<artifactId>addon-sdk-annotation-processor</artifactId>
27-
<version>1.0.6</version>
27+
<version>1.0.7</version>
2828
</dependency>
2929

3030
<dependency>

readme.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,10 @@ ClockifyAddon clockifyAddon = new ClockifyAddon(
130130
.name(name)
131131
.baseUrl(baseUrl)
132132
.requireBasicPlan()
133-
.scopes(Collections.emptyList())
133+
.scopes(List.of(
134+
ClockifyScope.PROJECT_READ,
135+
ClockifyScope.PROJECT_WRITE
136+
))
134137
.build()
135138
);
136139
```

0 commit comments

Comments
 (0)