Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions hibernate-core/hibernate-core.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ tasks.withType( Test.class ).each { test ->
tasks.named( "javadoc", Javadoc ) {
configure(options) {
overview = rootProject.file( "shared/javadoc/overview.html" )
exclude( "**/internal/**", "org/hibernate/boot/jaxb/**", "org/hibernate/tuple/**" )
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
* </ul>
* <p>
* Finally, a method might have a parameter of type
* {@link org.hibernate.query.restriction.Restriction Restriction<? super E>},
* {@link org.hibernate.query.restriction.Restriction Restriction&lt;? super E&gt;},
* allowing the caller to apply an arbitrary filtering criterion to
* the query results.
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
* </ul>
* <p>
* Finally, a method might have a parameter of type
* {@link org.hibernate.query.restriction.Restriction Restriction<? super E>},
* {@link org.hibernate.query.restriction.Restriction Restriction&lt;? super E&gt;},
* allowing the caller to apply an arbitrary filtering criterion to
* the query results.
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
*/

/**
* @deprecated Moved to {@link org.hibernate.dialect.Dialect}
* @apiNote Moved to {@link org.hibernate.dialect.Dialect}
*/
@Deprecated(forRemoval = true)
package org.hibernate.dialect.hint;
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* <li>It is the responsibility of the metadata binders in the package
* {@link org.hibernate.boot.model.internal} to process a set of
* annotated classes and produce fully-initialized mapping model
* objects. This is in itself a complicated multi-phase process,
* objects. This is in itself a complicated multiphase process,
* since, for example, the type of an association mapping in one
* entity cannot be fully assigned until the target entity has
* been processed.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Red Hat Inc. and Hibernate Authors
*/
/**
* The {@link org.hibernate.query.range.Range} framework.
*
* @see org.hibernate.query.range.Range
*
* @since 7
*/
@Incubating
package org.hibernate.query.range;

import org.hibernate.Incubating;
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Red Hat Inc. and Hibernate Authors
*/
/**
* The {@link org.hibernate.query.restriction.Restriction} framework.
*
* @see org.hibernate.query.restriction.Restriction
* @see org.hibernate.query.restriction.Path
*
* @since 7
*/
@Incubating
package org.hibernate.query.restriction;

import org.hibernate.Incubating;
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
/**
* Most contracts here have been replaced by the new runtime
* {@linkplain org.hibernate.metamodel.mapping mapping model}.
* <p>
* @apiNote This entire package (and sub-packages) is considered deprecated
*
* @apiNote This entire package (and subpackages) is considered
* deprecated and will be removed
*/
@Remove
@Remove @Deprecated(forRemoval = true)
package org.hibernate.tuple;

import org.hibernate.Remove;
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Red Hat Inc. and Hibernate Authors
*/
/**
* SPIs related to {@link org.hibernate.type.descriptor.java.JavaType}.
*/
package org.hibernate.type.descriptor.java.spi;
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Red Hat Inc. and Hibernate Authors
*/
/**
* SPIs related to {@link org.hibernate.type.descriptor.jdbc.JdbcType}.
*/
package org.hibernate.type.descriptor.jdbc.spi;
Loading