This is an automated email from the ASF dual-hosted git repository. miroslav pushed a commit to branch issue/OAK-10006 in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
commit b889d21ff6c6eb1880705930c0d4e32f11e28ea3 Author: smiroslav <[email protected]> AuthorDate: Wed Nov 8 17:12:48 2023 +0100 OAK-10543 added license header and increased versions for exported packages --- oak-segment-azure/pom.xml | 5 +++++ .../jackrabbit/oak/segment/azure/package-info.java | 22 ++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/oak-segment-azure/pom.xml b/oak-segment-azure/pom.xml index f150efe96b..a9312616a6 100644 --- a/oak-segment-azure/pom.xml +++ b/oak-segment-azure/pom.xml @@ -110,6 +110,11 @@ <artifactId>org.osgi.service.metatype.annotations</artifactId> <scope>provided</scope> </dependency> + <dependency> + <groupId>org.osgi</groupId> + <artifactId>org.osgi.annotation.versioning</artifactId> + <scope>provided</scope> + </dependency> <!-- Nullability annotations --> <dependency> diff --git a/oak-segment-azure/src/main/java/org/apache/jackrabbit/oak/segment/azure/package-info.java b/oak-segment-azure/src/main/java/org/apache/jackrabbit/oak/segment/azure/package-info.java new file mode 100644 index 0000000000..30d378df6d --- /dev/null +++ b/oak-segment-azure/src/main/java/org/apache/jackrabbit/oak/segment/azure/package-info.java @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@Internal(since = "1.0.0") +@Version("2.0.0") +package org.apache.jackrabbit.oak.segment.azure; + +import org.apache.jackrabbit.oak.commons.annotations.Internal; +import org.osgi.annotation.versioning.Version;
