You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by na...@apache.org on 2021/06/25 07:44:51 UTC

[ignite-extensions] branch master updated: IGNITE-14997 Fix license headers. (#66)

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

namelchev pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-extensions.git


The following commit(s) were added to refs/heads/master by this push:
     new fc93b71  IGNITE-14997 Fix license headers. (#66)
fc93b71 is described below

commit fc93b712c2e2c6e74189060b6d8e65cd345600c2
Author: Nikita Amelchev <ns...@gmail.com>
AuthorDate: Fri Jun 25 10:44:44 2021 +0300

    IGNITE-14997 Fix license headers. (#66)
---
 .../examples/main/resources/application.yml            | 15 +++++++++++++++
 .../examples/main/resources/application.yml            | 15 +++++++++++++++
 modules/spring-session-ext/pom.xml                     | 18 ++++++++++++++++++
 .../spring-session-ext/src/main/java/package-info.java | 17 +++++++++++++++++
 .../testsuites/IgniteSpringSessionTestSuite.java       | 17 +++++++++++++++++
 parent/pom.xml                                         |  2 ++
 scripts/settings.xml                                   | 17 +++++++++++++++++
 scripts/upload_module_to_staging.sh                    | 16 ++++++++++++++++
 8 files changed, 117 insertions(+)

diff --git a/modules/spring-boot-autoconfigure-ext/examples/main/resources/application.yml b/modules/spring-boot-autoconfigure-ext/examples/main/resources/application.yml
index deefe21..9d12c52 100644
--- a/modules/spring-boot-autoconfigure-ext/examples/main/resources/application.yml
+++ b/modules/spring-boot-autoconfigure-ext/examples/main/resources/application.yml
@@ -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
+#
+#      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.
+
 ignite:
   igniteInstanceName: properties-instance-name
   communicationSpi:
diff --git a/modules/spring-boot-thin-client-autoconfigure-ext/examples/main/resources/application.yml b/modules/spring-boot-thin-client-autoconfigure-ext/examples/main/resources/application.yml
index d712bfb..6e0deed 100644
--- a/modules/spring-boot-thin-client-autoconfigure-ext/examples/main/resources/application.yml
+++ b/modules/spring-boot-thin-client-autoconfigure-ext/examples/main/resources/application.yml
@@ -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
+#
+#      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.
+
 ignite-client:
   addresses: 127.0.0.1:10800
   timeout: 10000
diff --git a/modules/spring-session-ext/pom.xml b/modules/spring-session-ext/pom.xml
index 1077de8..f9b4320 100644
--- a/modules/spring-session-ext/pom.xml
+++ b/modules/spring-session-ext/pom.xml
@@ -1,4 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+  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.
+-->
+
 <project xmlns="http://maven.apache.org/POM/4.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
diff --git a/modules/spring-session-ext/src/main/java/package-info.java b/modules/spring-session-ext/src/main/java/package-info.java
index 8c21795..716f648 100644
--- a/modules/spring-session-ext/src/main/java/package-info.java
+++ b/modules/spring-session-ext/src/main/java/package-info.java
@@ -1,3 +1,20 @@
+/*
+ * 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 description. -->
  * Contains classes that allow using Ignite as backing store for storing Spring sessions.
diff --git a/modules/spring-session-ext/src/test/java/org/apache/ignite/testsuites/IgniteSpringSessionTestSuite.java b/modules/spring-session-ext/src/test/java/org/apache/ignite/testsuites/IgniteSpringSessionTestSuite.java
index 880119e..b386ec5 100644
--- a/modules/spring-session-ext/src/test/java/org/apache/ignite/testsuites/IgniteSpringSessionTestSuite.java
+++ b/modules/spring-session-ext/src/test/java/org/apache/ignite/testsuites/IgniteSpringSessionTestSuite.java
@@ -1,3 +1,20 @@
+/*
+ * 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.ignite.testsuites;
 
 import org.apache.ignite.spring.sessions.EmbeddedIgniteIndexedSessionRepositoryITest;
diff --git a/parent/pom.xml b/parent/pom.xml
index a94c273..911558a 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -866,6 +866,8 @@
                                         <exclude>**/web-console/frontend/**/*.svg</exclude>
                                         <!--Packaging -->
                                         <exclude>packaging/**</exclude>
+                                        <!--Performance statistics report libraries. -->
+                                        <exclude>report/libs/**</exclude>
                                     </excludes>
                                 </configuration>
                             </execution>
diff --git a/scripts/settings.xml b/scripts/settings.xml
index 92ac71b..45deb60 100644
--- a/scripts/settings.xml
+++ b/scripts/settings.xml
@@ -1,5 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
+<!--
+  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.
+-->
+
 <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
diff --git a/scripts/upload_module_to_staging.sh b/scripts/upload_module_to_staging.sh
index e7194ad..f481aa4 100755
--- a/scripts/upload_module_to_staging.sh
+++ b/scripts/upload_module_to_staging.sh
@@ -1,4 +1,20 @@
 #!/usr/bin/env bash
+#
+# 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.
+#
 
 module_version="1.0.0"
 dir_name="release-module-name" #enter module name to release.