This is an automated email from the ASF dual-hosted git repository.
mdedetrich pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko-grpc.git
The following commit(s) were added to refs/heads/main by this push:
new 0888b46a Add headers to gradle build source files
0888b46a is described below
commit 0888b46add8355e5557b49aa04d0269b228a5951
Author: Matthew de Detrich <[email protected]>
AuthorDate: Mon Aug 7 22:16:49 2023 +0200
Add headers to gradle build source files
---
gradle-plugin/build.gradle | 17 +++++++++++++++++
gradle-plugin/gradle/wrapper/gradle-wrapper.properties | 2 ++
gradle-plugin/gradlew.properties | 2 ++
gradle-plugin/settings.gradle | 17 +++++++++++++++++
.../org/apache/pekko/grpc/gradle/PekkoGrpcPlugin.groovy | 17 +++++++++++++++++
.../pekko/grpc/gradle/PekkoGrpcPluginExtension.groovy | 17 +++++++++++++++++
.../src/test/groovy/func/GradleCompatibilitySpec.groovy | 17 +++++++++++++++++
gradle-plugin/src/test/groovy/helper/BaseSpec.groovy | 17 +++++++++++++++++
.../src/test/groovy/helper/ScalaWrapperPlugin.groovy | 17 +++++++++++++++++
gradle-plugin/src/test/groovy/unit/ApplySpec.groovy | 17 +++++++++++++++++
.../src/test/groovy/unit/DependenciesSpec.groovy | 17 +++++++++++++++++
plugin-tester-java/build.gradle | 17 +++++++++++++++++
plugin-tester-java/settings.gradle | 17 +++++++++++++++++
plugin-tester-scala/build.gradle | 17 +++++++++++++++++
plugin-tester-scala/settings.gradle | 17 +++++++++++++++++
15 files changed, 225 insertions(+)
diff --git a/gradle-plugin/build.gradle b/gradle-plugin/build.gradle
index 623ce2a6..34c59a49 100644
--- a/gradle-plugin/build.gradle
+++ b/gradle-plugin/build.gradle
@@ -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.
+ */
+
plugins {
id 'groovy'
id 'java-gradle-plugin'
diff --git a/gradle-plugin/gradle/wrapper/gradle-wrapper.properties
b/gradle-plugin/gradle/wrapper/gradle-wrapper.properties
index 1ebb42b7..e5db1a26 100644
--- a/gradle-plugin/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle-plugin/gradle/wrapper/gradle-wrapper.properties
@@ -1,3 +1,5 @@
+# SPDX-License-Identifier: Apache-2.0
+
#Wed Feb 28 11:38:51 CET 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
diff --git a/gradle-plugin/gradlew.properties b/gradle-plugin/gradlew.properties
index 2303078f..de91f1e1 100644
--- a/gradle-plugin/gradlew.properties
+++ b/gradle-plugin/gradlew.properties
@@ -1 +1,3 @@
+# SPDX-License-Identifier: Apache-2.0
+
org.gradle.jvmargs="-Xms512m -Xmx2048m"
diff --git a/gradle-plugin/settings.gradle b/gradle-plugin/settings.gradle
index eb9b98fb..7dfcd708 100644
--- a/gradle-plugin/settings.gradle
+++ b/gradle-plugin/settings.gradle
@@ -1 +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.
+ */
+
rootProject.name = "pekko-grpc-gradle-plugin"
diff --git
a/gradle-plugin/src/main/groovy/org/apache/pekko/grpc/gradle/PekkoGrpcPlugin.groovy
b/gradle-plugin/src/main/groovy/org/apache/pekko/grpc/gradle/PekkoGrpcPlugin.groovy
index 12dfb5ca..1f18cd1a 100644
---
a/gradle-plugin/src/main/groovy/org/apache/pekko/grpc/gradle/PekkoGrpcPlugin.groovy
+++
b/gradle-plugin/src/main/groovy/org/apache/pekko/grpc/gradle/PekkoGrpcPlugin.groovy
@@ -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.pekko.grpc.gradle
import com.google.protobuf.gradle.ProtobufPlugin
diff --git
a/gradle-plugin/src/main/groovy/org/apache/pekko/grpc/gradle/PekkoGrpcPluginExtension.groovy
b/gradle-plugin/src/main/groovy/org/apache/pekko/grpc/gradle/PekkoGrpcPluginExtension.groovy
index 6dcd0d0e..423963de 100644
---
a/gradle-plugin/src/main/groovy/org/apache/pekko/grpc/gradle/PekkoGrpcPluginExtension.groovy
+++
b/gradle-plugin/src/main/groovy/org/apache/pekko/grpc/gradle/PekkoGrpcPluginExtension.groovy
@@ -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.pekko.grpc.gradle
diff --git a/gradle-plugin/src/test/groovy/func/GradleCompatibilitySpec.groovy
b/gradle-plugin/src/test/groovy/func/GradleCompatibilitySpec.groovy
index 0ebd7c2a..ab83d10d 100644
--- a/gradle-plugin/src/test/groovy/func/GradleCompatibilitySpec.groovy
+++ b/gradle-plugin/src/test/groovy/func/GradleCompatibilitySpec.groovy
@@ -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 func
import helper.BaseSpec
diff --git a/gradle-plugin/src/test/groovy/helper/BaseSpec.groovy
b/gradle-plugin/src/test/groovy/helper/BaseSpec.groovy
index 1dbf0b06..0497594d 100644
--- a/gradle-plugin/src/test/groovy/helper/BaseSpec.groovy
+++ b/gradle-plugin/src/test/groovy/helper/BaseSpec.groovy
@@ -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 helper
import org.apache.pekko.grpc.gradle.PekkoGrpcPluginExtension
diff --git a/gradle-plugin/src/test/groovy/helper/ScalaWrapperPlugin.groovy
b/gradle-plugin/src/test/groovy/helper/ScalaWrapperPlugin.groovy
index f812f119..41d55d9a 100644
--- a/gradle-plugin/src/test/groovy/helper/ScalaWrapperPlugin.groovy
+++ b/gradle-plugin/src/test/groovy/helper/ScalaWrapperPlugin.groovy
@@ -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 helper
import org.gradle.api.Plugin
diff --git a/gradle-plugin/src/test/groovy/unit/ApplySpec.groovy
b/gradle-plugin/src/test/groovy/unit/ApplySpec.groovy
index 1f26f0a7..bdf98fa4 100644
--- a/gradle-plugin/src/test/groovy/unit/ApplySpec.groovy
+++ b/gradle-plugin/src/test/groovy/unit/ApplySpec.groovy
@@ -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 unit
import org.apache.pekko.grpc.gradle.PekkoGrpcPluginExtension
diff --git a/gradle-plugin/src/test/groovy/unit/DependenciesSpec.groovy
b/gradle-plugin/src/test/groovy/unit/DependenciesSpec.groovy
index 7f55ab6f..64232aea 100644
--- a/gradle-plugin/src/test/groovy/unit/DependenciesSpec.groovy
+++ b/gradle-plugin/src/test/groovy/unit/DependenciesSpec.groovy
@@ -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 unit
import org.apache.pekko.grpc.gradle.PekkoGrpcPluginExtension
diff --git a/plugin-tester-java/build.gradle b/plugin-tester-java/build.gradle
index 6ce4dd1b..15a9b9a1 100644
--- a/plugin-tester-java/build.gradle
+++ b/plugin-tester-java/build.gradle
@@ -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.
+ */
+
plugins {
id 'scala'
id 'org.apache.pekko.grpc.gradle'
diff --git a/plugin-tester-java/settings.gradle
b/plugin-tester-java/settings.gradle
index f8ec5e0b..fcbb56b7 100644
--- a/plugin-tester-java/settings.gradle
+++ b/plugin-tester-java/settings.gradle
@@ -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.
+ */
+
pluginManagement {
repositories {
mavenLocal()
diff --git a/plugin-tester-scala/build.gradle b/plugin-tester-scala/build.gradle
index 59d9199f..a99a9ae4 100644
--- a/plugin-tester-scala/build.gradle
+++ b/plugin-tester-scala/build.gradle
@@ -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.
+ */
+
plugins {
id 'org.apache.pekko.grpc.gradle'
}
diff --git a/plugin-tester-scala/settings.gradle
b/plugin-tester-scala/settings.gradle
index 207488f8..685ec855 100644
--- a/plugin-tester-scala/settings.gradle
+++ b/plugin-tester-scala/settings.gradle
@@ -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.
+ */
+
pluginManagement {
repositories {
mavenLocal()
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]