This is an automated email from the ASF dual-hosted git repository. reschke pushed a commit to branch OAK-11618 in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
commit 786fed2c9abcd1c324cd0d303d7d5b9633f29adb Author: Julian Reschke <[email protected]> AuthorDate: Wed Apr 9 12:04:13 2025 +0100 OAK-11618: Remove usage of Guava Stopwatch - work in progress --- oak-commons/pom.xml | 3 ++- .../jackrabbit/oak/commons/time/package-info.java | 28 ++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/oak-commons/pom.xml b/oak-commons/pom.xml index 3b7af3a58d..0f9c378232 100644 --- a/oak-commons/pom.xml +++ b/oak-commons/pom.xml @@ -57,7 +57,8 @@ org.apache.jackrabbit.oak.commons.sort, org.apache.jackrabbit.oak.commons.properties, org.apache.jackrabbit.oak.commons.jdkcompat, - org.apache.jackrabbit.oak.commons.pio + org.apache.jackrabbit.oak.commons.pio, + org.apache.jackrabbit.oak.commons.time </Export-Package> </instructions> </configuration> diff --git a/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/time/package-info.java b/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/time/package-info.java new file mode 100644 index 0000000000..3e9fa9b326 --- /dev/null +++ b/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/time/package-info.java @@ -0,0 +1,28 @@ +/* + * 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 ("private") utilities related to timing... + */ +@Internal(since = "1.0.0") +@Version("1.0.0") +package org.apache.jackrabbit.oak.commons.time; +import org.apache.jackrabbit.oak.commons.annotations.Internal; +import org.osgi.annotation.versioning.Version; +
