Repository: cayenne Updated Branches: refs/heads/master 607e8c032 -> ed0604a2c
CAY-2166 Auto-loading of Cayenne modules * restoring deprecated version of CayenneJava8Module , as its absence breaks Bootique, LinkRest and LinkMove that are compiled against M4 Project: http://git-wip-us.apache.org/repos/asf/cayenne/repo Commit: http://git-wip-us.apache.org/repos/asf/cayenne/commit/ed0604a2 Tree: http://git-wip-us.apache.org/repos/asf/cayenne/tree/ed0604a2 Diff: http://git-wip-us.apache.org/repos/asf/cayenne/diff/ed0604a2 Branch: refs/heads/master Commit: ed0604a2c4c812b82b9bd0f04c73dd01c3fca02c Parents: 607e8c0 Author: Andrus Adamchik <[email protected]> Authored: Tue Jan 17 17:54:05 2017 -0500 Committer: Andrus Adamchik <[email protected]> Committed: Tue Jan 17 17:54:05 2017 -0500 ---------------------------------------------------------------------- .../cayenne/java8/CayenneJava8Module.java | 28 ++++++++++++++++++++ 1 file changed, 28 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cayenne/blob/ed0604a2/cayenne-java8/src/main/java/org/apache/cayenne/java8/CayenneJava8Module.java ---------------------------------------------------------------------- diff --git a/cayenne-java8/src/main/java/org/apache/cayenne/java8/CayenneJava8Module.java b/cayenne-java8/src/main/java/org/apache/cayenne/java8/CayenneJava8Module.java new file mode 100644 index 0000000..6bae6ef --- /dev/null +++ b/cayenne-java8/src/main/java/org/apache/cayenne/java8/CayenneJava8Module.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. + */ +package org.apache.cayenne.java8; + +/** + * Left as a placeholder for backwards compatibility with apps compiled against 4.0.M4. + * + * @deprecated since 4.0.M5 in favor of {@link Java8Module}. + */ +@Deprecated +public class CayenneJava8Module extends Java8Module { +}
