This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-samples.git
commit d633e02ec9dc496a8e6a0517b40e7f912c1e1ad1 Author: Robert Munteanu <[email protected]> AuthorDate: Thu Nov 14 11:18:47 2024 +0100 fix(oauth): fix dependencies --- oauth/core/pom.xml | 6 ++++++ oauth/pom.xml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/oauth/core/pom.xml b/oauth/core/pom.xml index 7b8a30f..3c7f9c1 100644 --- a/oauth/core/pom.xml +++ b/oauth/core/pom.xml @@ -113,6 +113,12 @@ <groupId>javax.jcr</groupId> <artifactId>jcr</artifactId> </dependency> + <dependency> + <groupId>javax.annotation</groupId> + <artifactId>jsr250-api</artifactId> + <version>1.0</version> + <scope>provided</scope> + </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.api</artifactId> diff --git a/oauth/pom.xml b/oauth/pom.xml index 3698d86..1cb3aa6 100644 --- a/oauth/pom.xml +++ b/oauth/pom.xml @@ -2135,7 +2135,7 @@ - <version>$[javax.inject.version</version> + <version>${javax.inject.version}</version>
