Skip to content

Commit bd256e4

Browse files
committed
HHH-9803 - Checkstyle fix ups - headers
1 parent d5951c6 commit bd256e4

File tree

8,486 files changed

+29816
-113718
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

8,486 files changed

+29816
-113718
lines changed

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@ idea {
6262
}
6363
}
6464

65+
/*
66+
* Hibernate, Relational Persistence for Idiomatic Java
67+
*
68+
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
69+
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
70+
*/
6571
// Used in MANIFEST.MF for OSGi Bundles
6672
def osgiDescription() {
6773
return "A module of the Hibernate O/RM project"

buildSrc/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Hibernate, Relational Persistence for Idiomatic Java
3+
*
4+
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
5+
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
6+
*/
17
repositories {
28
mavenCentral()
39
jcenter()

buildSrc/src/main/groovy/org/hibernate/build/HibernateBuildPlugin.groovy

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,8 @@
11
/*
22
* Hibernate, Relational Persistence for Idiomatic Java
33
*
4-
* Copyright (c) 2015, Red Hat Inc. or third-party contributors as
5-
* indicated by the @author tags or express copyright attribution
6-
* statements applied by the authors. All third-party contributions are
7-
* distributed under license by Red Hat Inc.
8-
*
9-
* This copyrighted material is made available to anyone wishing to use, modify,
10-
* copy, or redistribute it subject to the terms and conditions of the GNU
11-
* Lesser General Public License, as published by the Free Software Foundation.
12-
*
13-
* This program is distributed in the hope that it will be useful,
14-
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15-
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16-
* for more details.
17-
*
18-
* You should have received a copy of the GNU Lesser General Public License
19-
* along with this distribution; if not, write to:
20-
* Free Software Foundation, Inc.
21-
* 51 Franklin Street, Fifth Floor
22-
* Boston, MA 02110-1301 USA
4+
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
5+
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
236
*/
247
package org.hibernate.build
258

buildSrc/src/main/groovy/org/hibernate/build/JavaTargetExtension.groovy

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,8 @@
11
/*
22
* Hibernate, Relational Persistence for Idiomatic Java
33
*
4-
* Copyright (c) 2015, Red Hat Inc. or third-party contributors as
5-
* indicated by the @author tags or express copyright attribution
6-
* statements applied by the authors. All third-party contributions are
7-
* distributed under license by Red Hat Inc.
8-
*
9-
* This copyrighted material is made available to anyone wishing to use, modify,
10-
* copy, or redistribute it subject to the terms and conditions of the GNU
11-
* Lesser General Public License, as published by the Free Software Foundation.
12-
*
13-
* This program is distributed in the hope that it will be useful,
14-
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15-
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16-
* for more details.
17-
*
18-
* You should have received a copy of the GNU Lesser General Public License
19-
* along with this distribution; if not, write to:
20-
* Free Software Foundation, Inc.
21-
* 51 Franklin Street, Fifth Floor
22-
* Boston, MA 02110-1301 USA
4+
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
5+
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
236
*/
247
package org.hibernate.build
258

buildSrc/src/main/groovy/org/hibernate/build/MavenPublishingExtension.groovy

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,8 @@
11
/*
22
* Hibernate, Relational Persistence for Idiomatic Java
33
*
4-
* Copyright (c) 2015, Red Hat Inc. or third-party contributors as
5-
* indicated by the @author tags or express copyright attribution
6-
* statements applied by the authors. All third-party contributions are
7-
* distributed under license by Red Hat Inc.
8-
*
9-
* This copyrighted material is made available to anyone wishing to use, modify,
10-
* copy, or redistribute it subject to the terms and conditions of the GNU
11-
* Lesser General Public License, as published by the Free Software Foundation.
12-
*
13-
* This program is distributed in the hope that it will be useful,
14-
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15-
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16-
* for more details.
17-
*
18-
* You should have received a copy of the GNU Lesser General Public License
19-
* along with this distribution; if not, write to:
20-
* Free Software Foundation, Inc.
21-
* 51 Franklin Street, Fifth Floor
22-
* Boston, MA 02110-1301 USA
4+
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
5+
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
236
*/
247
package org.hibernate.build
258

documentation/documentation.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* Hibernate, Relational Persistence for Idiomatic Java
3+
*
4+
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
5+
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
6+
*/
17
buildscript {
28
repositories {
39
mavenCentral()

documentation/src/main/docbook/devguide/en-US/Author_Group.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
<?xml version='1.0' encoding='UTF-8' ?>
22

3+
<!--
4+
~ Hibernate, Relational Persistence for Idiomatic Java
5+
~
6+
~ License: GNU Lesser General Public License (LGPL), version 2.1 or later.
7+
~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
8+
-->
39
<authorgroup xmlns="http://docbook.org/ns/docbook">
410
<author>
511
<personname>

documentation/src/main/docbook/devguide/en-US/Batch_Processing.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
<?xml version='1.0' encoding='utf-8' ?>
22

3+
<!--
4+
~ Hibernate, Relational Persistence for Idiomatic Java
5+
~
6+
~ License: GNU Lesser General Public License (LGPL), version 2.1 or later.
7+
~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
8+
-->
39
<chapter xmlns="http://docbook.org/ns/docbook"
410
xmlns:xi="http://www.w3.org/2001/XInclude"
511
xml:id="batch">

documentation/src/main/docbook/devguide/en-US/Caching.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
<?xml version='1.0' encoding='utf-8' ?>
22

3+
<!--
4+
~ Hibernate, Relational Persistence for Idiomatic Java
5+
~
6+
~ License: GNU Lesser General Public License (LGPL), version 2.1 or later.
7+
~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
8+
-->
39
<chapter xmlns="http://docbook.org/ns/docbook"
410
xmlns:xi="http://www.w3.org/2001/XInclude">
511

documentation/src/main/docbook/devguide/en-US/Data_Categorizations.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
<?xml version='1.0' encoding='utf-8' ?>
22

3+
<!--
4+
~ Hibernate, Relational Persistence for Idiomatic Java
5+
~
6+
~ License: GNU Lesser General Public License (LGPL), version 2.1 or later.
7+
~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
8+
-->
39
<chapter xmlns="http://docbook.org/ns/docbook">
410

511
<title>Data categorizations</title>

0 commit comments

Comments
 (0)