This is an automated email from the ASF dual-hosted git repository.

doebele pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/empire-db.git


The following commit(s) were added to refs/heads/master by this push:
     new 271495d  Added missing ASF license headers
271495d is described below

commit 271495de36a7883a1be0ce04cc3c90d683df8588
Author: Rainer Döbele <[email protected]>
AuthorDate: Tue Mar 8 12:46:35 2022 +0100

    Added missing ASF license headers
---
 .../samples/db/advanced/db/DealerSalesView.java    | 18 ++++++++++
 .../samples/db/advanced/records/DealerRecord.java  | 18 ++++++++++
 .../samples/db/advanced/records/ModelRecord.java   | 18 ++++++++++
 .../src/main/java/example/GenerateExample.java     | 18 ++++++++++
 .../jsf2/websample/web/AppExceptionHandler.java    | 18 ++++++++++
 .../websample/web/AppExceptionHandlerFactory.java  | 18 ++++++++++
 .../empire-db-example-spring-boot/README.md        | 18 ++++++++++
 .../org/apache/empire/jsf2/app/WebDBContext.java   | 18 ++++++++++
 .../java/org/apache/empire/data/EntityType.java    | 18 ++++++++++
 .../main/java/org/apache/empire/db/DBUtils.java    | 18 ++++++++++
 .../empire/db/expr/column/DBCoalesceExpr.java      | 17 ++++++++-
 .../java/org/apache/empire/dbms/DBSqlPhrase.java   | 18 ++++++++++
 .../exceptions/UnsupportedTypeException.java       | 18 ++++++++++
 pom.xml                                            | 40 ++++++++++++----------
 14 files changed, 253 insertions(+), 20 deletions(-)

diff --git 
a/empire-db-examples/empire-db-example-advanced/src/main/java/org/apache/empire/samples/db/advanced/db/DealerSalesView.java
 
b/empire-db-examples/empire-db-example-advanced/src/main/java/org/apache/empire/samples/db/advanced/db/DealerSalesView.java
index 7efc869..33b56b4 100644
--- 
a/empire-db-examples/empire-db-example-advanced/src/main/java/org/apache/empire/samples/db/advanced/db/DealerSalesView.java
+++ 
b/empire-db-examples/empire-db-example-advanced/src/main/java/org/apache/empire/samples/db/advanced/db/DealerSalesView.java
@@ -1,3 +1,21 @@
+/*
+ * 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.empire.samples.db.advanced.db;
 
 import org.apache.empire.data.DataType;
diff --git 
a/empire-db-examples/empire-db-example-advanced/src/main/java/org/apache/empire/samples/db/advanced/records/DealerRecord.java
 
b/empire-db-examples/empire-db-example-advanced/src/main/java/org/apache/empire/samples/db/advanced/records/DealerRecord.java
index 21e1d5a..14c2311 100644
--- 
a/empire-db-examples/empire-db-example-advanced/src/main/java/org/apache/empire/samples/db/advanced/records/DealerRecord.java
+++ 
b/empire-db-examples/empire-db-example-advanced/src/main/java/org/apache/empire/samples/db/advanced/records/DealerRecord.java
@@ -1,3 +1,21 @@
+/*
+ * 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.empire.samples.db.advanced.records;
 
 import java.util.List;
diff --git 
a/empire-db-examples/empire-db-example-advanced/src/main/java/org/apache/empire/samples/db/advanced/records/ModelRecord.java
 
b/empire-db-examples/empire-db-example-advanced/src/main/java/org/apache/empire/samples/db/advanced/records/ModelRecord.java
index bc4c610..5587b2c 100644
--- 
a/empire-db-examples/empire-db-example-advanced/src/main/java/org/apache/empire/samples/db/advanced/records/ModelRecord.java
+++ 
b/empire-db-examples/empire-db-example-advanced/src/main/java/org/apache/empire/samples/db/advanced/records/ModelRecord.java
@@ -1,3 +1,21 @@
+/*
+ * 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.empire.samples.db.advanced.records;
 
 import java.io.ByteArrayOutputStream;
diff --git 
a/empire-db-examples/empire-db-example-codegen/src/main/java/example/GenerateExample.java
 
b/empire-db-examples/empire-db-example-codegen/src/main/java/example/GenerateExample.java
index 398fc6f..9b1b68d 100644
--- 
a/empire-db-examples/empire-db-example-codegen/src/main/java/example/GenerateExample.java
+++ 
b/empire-db-examples/empire-db-example-codegen/src/main/java/example/GenerateExample.java
@@ -1,3 +1,21 @@
+/*
+ * 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 example;
 
 import org.apache.empire.db.codegen.CodeGenConfig;
diff --git 
a/empire-db-examples/empire-db-example-jsf2/src/main/java/org/apache/empire/jsf2/websample/web/AppExceptionHandler.java
 
b/empire-db-examples/empire-db-example-jsf2/src/main/java/org/apache/empire/jsf2/websample/web/AppExceptionHandler.java
index c6110bf..2a7ace2 100644
--- 
a/empire-db-examples/empire-db-example-jsf2/src/main/java/org/apache/empire/jsf2/websample/web/AppExceptionHandler.java
+++ 
b/empire-db-examples/empire-db-example-jsf2/src/main/java/org/apache/empire/jsf2/websample/web/AppExceptionHandler.java
@@ -1,3 +1,21 @@
+/*
+ * 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.empire.jsf2.websample.web;
 
 import java.util.Iterator;
diff --git 
a/empire-db-examples/empire-db-example-jsf2/src/main/java/org/apache/empire/jsf2/websample/web/AppExceptionHandlerFactory.java
 
b/empire-db-examples/empire-db-example-jsf2/src/main/java/org/apache/empire/jsf2/websample/web/AppExceptionHandlerFactory.java
index bfd6253..98cf4e0 100644
--- 
a/empire-db-examples/empire-db-example-jsf2/src/main/java/org/apache/empire/jsf2/websample/web/AppExceptionHandlerFactory.java
+++ 
b/empire-db-examples/empire-db-example-jsf2/src/main/java/org/apache/empire/jsf2/websample/web/AppExceptionHandlerFactory.java
@@ -1,3 +1,21 @@
+/*
+ * 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.empire.jsf2.websample.web;
 
 import javax.faces.context.ExceptionHandler;
diff --git a/empire-db-examples/empire-db-example-spring-boot/README.md 
b/empire-db-examples/empire-db-example-spring-boot/README.md
index f6817f6..105f4ce 100644
--- a/empire-db-examples/empire-db-example-spring-boot/README.md
+++ b/empire-db-examples/empire-db-example-spring-boot/README.md
@@ -1,3 +1,21 @@
+/*
+ * 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.
+ */
 # Empire-DB Spring Boot Example
 
 This example uses the convenience configuration options provided by Spring 
Boot.
diff --git 
a/empire-db-jsf2/src/main/java/org/apache/empire/jsf2/app/WebDBContext.java 
b/empire-db-jsf2/src/main/java/org/apache/empire/jsf2/app/WebDBContext.java
index 965a54e..788e0c1 100644
--- a/empire-db-jsf2/src/main/java/org/apache/empire/jsf2/app/WebDBContext.java
+++ b/empire-db-jsf2/src/main/java/org/apache/empire/jsf2/app/WebDBContext.java
@@ -1,3 +1,21 @@
+/*
+ * 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.empire.jsf2.app;
 
 import java.io.IOException;
diff --git a/empire-db/src/main/java/org/apache/empire/data/EntityType.java 
b/empire-db/src/main/java/org/apache/empire/data/EntityType.java
index 4cf5022..5a16524 100644
--- a/empire-db/src/main/java/org/apache/empire/data/EntityType.java
+++ b/empire-db/src/main/java/org/apache/empire/data/EntityType.java
@@ -1,3 +1,21 @@
+/*
+ * 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.empire.data;
 
 import java.util.List;
diff --git a/empire-db/src/main/java/org/apache/empire/db/DBUtils.java 
b/empire-db/src/main/java/org/apache/empire/db/DBUtils.java
index b6a9fdc..783d7a3 100644
--- a/empire-db/src/main/java/org/apache/empire/db/DBUtils.java
+++ b/empire-db/src/main/java/org/apache/empire/db/DBUtils.java
@@ -1,3 +1,21 @@
+/*
+ * 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.empire.db;
 
 import java.sql.ResultSet;
diff --git 
a/empire-db/src/main/java/org/apache/empire/db/expr/column/DBCoalesceExpr.java 
b/empire-db/src/main/java/org/apache/empire/db/expr/column/DBCoalesceExpr.java
index cbc226c..e18decc 100644
--- 
a/empire-db/src/main/java/org/apache/empire/db/expr/column/DBCoalesceExpr.java
+++ 
b/empire-db/src/main/java/org/apache/empire/db/expr/column/DBCoalesceExpr.java
@@ -1,5 +1,20 @@
 /*
- * ESTEAM Software GmbH, 22.02.2022
+ * 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.empire.db.expr.column;
 
diff --git a/empire-db/src/main/java/org/apache/empire/dbms/DBSqlPhrase.java 
b/empire-db/src/main/java/org/apache/empire/dbms/DBSqlPhrase.java
index e75d85c..29e9e32 100644
--- a/empire-db/src/main/java/org/apache/empire/dbms/DBSqlPhrase.java
+++ b/empire-db/src/main/java/org/apache/empire/dbms/DBSqlPhrase.java
@@ -1,3 +1,21 @@
+/*
+ * 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.empire.dbms;
 
 /**
diff --git 
a/empire-db/src/main/java/org/apache/empire/exceptions/UnsupportedTypeException.java
 
b/empire-db/src/main/java/org/apache/empire/exceptions/UnsupportedTypeException.java
index 81754e9..060fd89 100644
--- 
a/empire-db/src/main/java/org/apache/empire/exceptions/UnsupportedTypeException.java
+++ 
b/empire-db/src/main/java/org/apache/empire/exceptions/UnsupportedTypeException.java
@@ -1,3 +1,21 @@
+/*
+ * 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.empire.exceptions;
 
 import org.apache.empire.commons.ErrorType;
diff --git a/pom.xml b/pom.xml
index 78e7ea1..125dc17 100644
--- a/pom.xml
+++ b/pom.xml
@@ -442,26 +442,28 @@
                                <version>0.11</version>
                                <configuration>
                                        <excludes>
-                                               <!-- folders -->
-                                               <exclude>**/target/**</exclude>
-                            <exclude>**/.idea/**</exclude>
-                                               
<exclude>**/.settings/**</exclude>
-                                               
<exclude>**/empire-db-example-vue/src/main/webapp/static/**</exclude>
-                                               
<exclude>**/empire-db-example-vue/src/main/vue/node_modules/**</exclude>
-                                               <!-- file types -->
-                            <exclude>**/*.iml</exclude>
-                                               <exclude>**/*.json</exclude>
-                                               <exclude>**/*.jml</exclude>
-                                               <!-- specific files -->
-                            <exclude>**/META-INF/MANIFEST.MF</exclude>
-                                               <exclude>**/.project</exclude>
-                                               <exclude>**/.classpath</exclude>
-                                               
<exclude>**/.tomcatplugin</exclude>
+                                                       <!-- folders -->
+                                                       
<exclude>**/target/**</exclude>
+                                                       
<exclude>**/.idea/**</exclude>
+                                                       
<exclude>**/.settings/**</exclude>
+                                                       
<exclude>**/empire-db-example-vue/src/main/webapp/static/**</exclude>
+                                                       
<exclude>**/empire-db-example-vue/src/main/vue/node_modules/**</exclude>
+                                                       <!-- file types -->
+                                                       
<exclude>**/*.iml</exclude>
+                                                       
<exclude>**/*.json</exclude>
+                                                       
<exclude>**/*.jml</exclude>
+                                                       <!-- specific files -->
+                                                       
<exclude>**/META-INF/MANIFEST.MF</exclude>
+                                                       
<exclude>**/.factorypath</exclude>                            
+                                                       
<exclude>**/.project</exclude>
+                                                       
<exclude>**/.classpath</exclude>
+                                                       
<exclude>**/.tomcatplugin</exclude>
                                                        
<exclude>**/empire-db-example-vue/src/main/vue/.*</exclude>
-                                               
<exclude>**/_eslintrc.js.bak</exclude>
-                                               
<exclude>release.properties</exclude>
-                                               <!-- should the sample 
databases be created in target? -->
-                                               
<exclude>**/hsqldb/sample.*</exclude>
+                                                       
<exclude>**/_eslintrc.js.bak</exclude>
+                                                       
<exclude>**/application.yml</exclude>
+                                                       
<exclude>release.properties</exclude>
+                                                       <!-- should the sample 
databases be created in target? -->
+                                                       
<exclude>**/hsqldb/sample.*</exclude>
                                        </excludes>
                                        
<excludeSubProjects>false</excludeSubProjects>
                                </configuration>

Reply via email to