This is an automated email from the ASF dual-hosted git repository.
ntimofeev pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cayenne.git
The following commit(s) were added to refs/heads/master by this push:
new 6634cb6c4 Missing license headers
6634cb6c4 is described below
commit 6634cb6c4644595a70704186c5de89dbeb52c5ce
Author: Nikita Timofeev <[email protected]>
AuthorDate: Tue Aug 6 16:22:08 2024 +0400
Missing license headers
---
.../gradle/wrapper/gradle-wrapper.properties | 15 +++++++++++++++
.../cayenne/exp/parser/ASTCustomAggregate.java | 19 +++++++++++++++++++
.../access/flush/operation/OpIdFactoryTest.java | 19 +++++++++++++++++++
.../cayenne/dba/mysql/MySQLTreeProcessorTest.java | 19 +++++++++++++++++++
.../cayenne/exp/parser/ASTCustomAggregateTest.java | 19 +++++++++++++++++++
.../org/apache/cayenne/exp/parser/ASTExistsTest.java | 20 +++++++++++++++++++-
.../apache/cayenne/exp/parser/ASTNotExistsTest.java | 20 +++++++++++++++++++-
.../org/apache/cayenne/exp/path/PathParserTest.java | 20 +++++++++++++++++++-
.../modeler/action/UpdateValidationConfigAction.java | 19 +++++++++++++++++++
9 files changed, 167 insertions(+), 3 deletions(-)
diff --git a/cayenne-gradle-plugin/gradle/wrapper/gradle-wrapper.properties
b/cayenne-gradle-plugin/gradle/wrapper/gradle-wrapper.properties
index a4413138c..b56c2d746 100644
--- a/cayenne-gradle-plugin/gradle/wrapper/gradle-wrapper.properties
+++ b/cayenne-gradle-plugin/gradle/wrapper/gradle-wrapper.properties
@@ -1,3 +1,18 @@
+# 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
+#
+# https://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.
+
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
diff --git
a/cayenne/src/main/java/org/apache/cayenne/exp/parser/ASTCustomAggregate.java
b/cayenne/src/main/java/org/apache/cayenne/exp/parser/ASTCustomAggregate.java
index dd98c3eb2..59bfa8669 100644
---
a/cayenne/src/main/java/org/apache/cayenne/exp/parser/ASTCustomAggregate.java
+++
b/cayenne/src/main/java/org/apache/cayenne/exp/parser/ASTCustomAggregate.java
@@ -1,3 +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
+ *
+ * https://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.exp.parser;
import org.apache.cayenne.exp.Expression;
diff --git
a/cayenne/src/test/java/org/apache/cayenne/access/flush/operation/OpIdFactoryTest.java
b/cayenne/src/test/java/org/apache/cayenne/access/flush/operation/OpIdFactoryTest.java
index a921f2ecd..318d6db7d 100644
---
a/cayenne/src/test/java/org/apache/cayenne/access/flush/operation/OpIdFactoryTest.java
+++
b/cayenne/src/test/java/org/apache/cayenne/access/flush/operation/OpIdFactoryTest.java
@@ -1,3 +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
+ *
+ * https://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.access.flush.operation;
import org.apache.cayenne.ObjectId;
diff --git
a/cayenne/src/test/java/org/apache/cayenne/dba/mysql/MySQLTreeProcessorTest.java
b/cayenne/src/test/java/org/apache/cayenne/dba/mysql/MySQLTreeProcessorTest.java
index 4a35c1247..64784a500 100644
---
a/cayenne/src/test/java/org/apache/cayenne/dba/mysql/MySQLTreeProcessorTest.java
+++
b/cayenne/src/test/java/org/apache/cayenne/dba/mysql/MySQLTreeProcessorTest.java
@@ -1,3 +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
+ *
+ * https://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.dba.mysql;
import org.apache.cayenne.access.sqlbuilder.BaseSqlBuilderTest;
diff --git
a/cayenne/src/test/java/org/apache/cayenne/exp/parser/ASTCustomAggregateTest.java
b/cayenne/src/test/java/org/apache/cayenne/exp/parser/ASTCustomAggregateTest.java
index 406b01d3e..26047389f 100644
---
a/cayenne/src/test/java/org/apache/cayenne/exp/parser/ASTCustomAggregateTest.java
+++
b/cayenne/src/test/java/org/apache/cayenne/exp/parser/ASTCustomAggregateTest.java
@@ -1,3 +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
+ *
+ * https://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.exp.parser;
import org.apache.cayenne.exp.Expression;
diff --git
a/cayenne/src/test/java/org/apache/cayenne/exp/parser/ASTExistsTest.java
b/cayenne/src/test/java/org/apache/cayenne/exp/parser/ASTExistsTest.java
index 48ffd4bcf..b92b4648a 100644
--- a/cayenne/src/test/java/org/apache/cayenne/exp/parser/ASTExistsTest.java
+++ b/cayenne/src/test/java/org/apache/cayenne/exp/parser/ASTExistsTest.java
@@ -1,5 +1,23 @@
-package org.apache.cayenne.exp.parser;
+/*****************************************************************
+ * 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
+ *
+ * https://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.exp.parser;
import org.apache.cayenne.exp.Expression;
import org.apache.cayenne.exp.ExpressionFactory;
diff --git
a/cayenne/src/test/java/org/apache/cayenne/exp/parser/ASTNotExistsTest.java
b/cayenne/src/test/java/org/apache/cayenne/exp/parser/ASTNotExistsTest.java
index 9c6145b9b..ac90f88ea 100644
--- a/cayenne/src/test/java/org/apache/cayenne/exp/parser/ASTNotExistsTest.java
+++ b/cayenne/src/test/java/org/apache/cayenne/exp/parser/ASTNotExistsTest.java
@@ -1,5 +1,23 @@
-package org.apache.cayenne.exp.parser;
+/*****************************************************************
+ * 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
+ *
+ * https://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.exp.parser;
import org.apache.cayenne.exp.Expression;
import org.apache.cayenne.exp.ExpressionFactory;
diff --git
a/cayenne/src/test/java/org/apache/cayenne/exp/path/PathParserTest.java
b/cayenne/src/test/java/org/apache/cayenne/exp/path/PathParserTest.java
index b1cb0072d..412456ea3 100644
--- a/cayenne/src/test/java/org/apache/cayenne/exp/path/PathParserTest.java
+++ b/cayenne/src/test/java/org/apache/cayenne/exp/path/PathParserTest.java
@@ -1,5 +1,23 @@
-package org.apache.cayenne.exp.path;
+/*****************************************************************
+ * 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
+ *
+ * https://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.exp.path;
import org.junit.Test;
diff --git
a/modeler/cayenne-modeler/src/main/java/org/apache/cayenne/modeler/action/UpdateValidationConfigAction.java
b/modeler/cayenne-modeler/src/main/java/org/apache/cayenne/modeler/action/UpdateValidationConfigAction.java
index 9fe0f1075..1367d711b 100644
---
a/modeler/cayenne-modeler/src/main/java/org/apache/cayenne/modeler/action/UpdateValidationConfigAction.java
+++
b/modeler/cayenne-modeler/src/main/java/org/apache/cayenne/modeler/action/UpdateValidationConfigAction.java
@@ -1,3 +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
+ *
+ * https://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.modeler.action;
import org.apache.cayenne.configuration.DataChannelDescriptor;