You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by pa...@apache.org on 2015/06/08 22:42:28 UTC

incubator-groovy git commit: add Apache license header to META-INF files

Repository: incubator-groovy
Updated Branches:
  refs/heads/master 113b6886e -> 698ebbdec


add Apache license header to META-INF files


Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/698ebbde
Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/698ebbde
Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/698ebbde

Branch: refs/heads/master
Commit: 698ebbdecd3305028318f084427aabdcab6b21f1
Parents: 113b688
Author: pascalschumacher <pa...@gmx.net>
Authored: Mon Jun 8 22:42:14 2015 +0200
Committer: pascalschumacher <pa...@gmx.net>
Committed: Mon Jun 8 22:42:14 2015 +0200

----------------------------------------------------------------------
 ....codehaus.groovy.transform.ASTTransformation | 15 ++++++++++
 .../org.codehaus.groovy.source.Extensions       | 15 ++++++++++
 ....codehaus.groovy.transform.ASTTransformation | 15 ++++++++++
 .../org.codehaus.groovy.runtime.ExtensionModule | 15 +++++-----
 ....codehaus.groovy.runtime.ExtensionModuleSpec | 31 +++++---------------
 .../org.codehaus.groovy.runtime.ExtensionModule | 15 ++++++++++
 .../org.codehaus.groovy.source.Extensions       | 15 ++++++++++
 ....codehaus.groovy.transform.ASTTransformation | 15 ++++++++++
 .../services/javax.script.ScriptEngineFactory   | 15 ++++++++++
 .../org.codehaus.groovy.plugins.Runners         | 15 ++++++++++
 10 files changed, 134 insertions(+), 32 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/698ebbde/src/examples/transforms/global/META-INF/services/org.codehaus.groovy.transform.ASTTransformation
----------------------------------------------------------------------
diff --git a/src/examples/transforms/global/META-INF/services/org.codehaus.groovy.transform.ASTTransformation b/src/examples/transforms/global/META-INF/services/org.codehaus.groovy.transform.ASTTransformation
index 5ad9d76..2de1e18 100644
--- a/src/examples/transforms/global/META-INF/services/org.codehaus.groovy.transform.ASTTransformation
+++ b/src/examples/transforms/global/META-INF/services/org.codehaus.groovy.transform.ASTTransformation
@@ -1,2 +1,17 @@
+# 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.
+
 transforms.global.LoggingASTTransformation
 transforms.global.CompiledAtASTTransformation

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/698ebbde/src/main/META-INF/services/org.codehaus.groovy.source.Extensions
----------------------------------------------------------------------
diff --git a/src/main/META-INF/services/org.codehaus.groovy.source.Extensions b/src/main/META-INF/services/org.codehaus.groovy.source.Extensions
index 752a6b0..2e9df17 100644
--- a/src/main/META-INF/services/org.codehaus.groovy.source.Extensions
+++ b/src/main/META-INF/services/org.codehaus.groovy.source.Extensions
@@ -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.
+
 # Format: one extension on each line without the leading "*."
 # Listed below are default groovy source file extensions.
 

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/698ebbde/src/main/META-INF/services/org.codehaus.groovy.transform.ASTTransformation
----------------------------------------------------------------------
diff --git a/src/main/META-INF/services/org.codehaus.groovy.transform.ASTTransformation b/src/main/META-INF/services/org.codehaus.groovy.transform.ASTTransformation
index 875c123..63a37f4 100644
--- a/src/main/META-INF/services/org.codehaus.groovy.transform.ASTTransformation
+++ b/src/main/META-INF/services/org.codehaus.groovy.transform.ASTTransformation
@@ -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.
+
 # global transformation to handle @Grab annotation
 groovy.grape.GrabAnnotationTransformation
 

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/698ebbde/src/spec/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule
----------------------------------------------------------------------
diff --git a/src/spec/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule b/src/spec/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule
index cf31895..67205e0 100644
--- a/src/spec/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule
+++ b/src/spec/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule
@@ -1,18 +1,17 @@
+# 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
 #
-# Copyright 2003-2014 the original author or authors.
-#
-# Licensed 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
+#     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.
-#
 
 # DO NOT REMOVE BELOW!
 # IT IS A WORKAROUND FOR 2 DESCRIPTORS ON CLASSPATH!

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/698ebbde/src/spec/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModuleSpec
----------------------------------------------------------------------
diff --git a/src/spec/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModuleSpec b/src/spec/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModuleSpec
index 90f76fe..4737a3e 100644
--- a/src/spec/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModuleSpec
+++ b/src/spec/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModuleSpec
@@ -1,34 +1,17 @@
+# 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
 #
-# Copyright 2003-2014 the original author or authors.
-#
-# Licensed 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.
-#
-
-#
-# Copyright 2003-2014 the original author or authors.
-#
-# Licensed 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
+#     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.
-#
 
 # tag::extension_descriptor[]
 moduleName=Test module for specifications

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/698ebbde/src/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule
----------------------------------------------------------------------
diff --git a/src/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule b/src/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule
index e9835d7..69795a4 100644
--- a/src/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule
+++ b/src/test-resources/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule
@@ -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.
+
 // This file is used to test the extension module framework
 moduleName=Test module
 moduleVersion=1.0-test

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/698ebbde/src/test-resources/META-INF/services/org.codehaus.groovy.source.Extensions
----------------------------------------------------------------------
diff --git a/src/test-resources/META-INF/services/org.codehaus.groovy.source.Extensions b/src/test-resources/META-INF/services/org.codehaus.groovy.source.Extensions
index 041184a..f92ac95 100644
--- a/src/test-resources/META-INF/services/org.codehaus.groovy.source.Extensions
+++ b/src/test-resources/META-INF/services/org.codehaus.groovy.source.Extensions
@@ -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.
+
 # Format: one extension on each line without the leading "*."
 # groovy source file extensions to test GROOVY-4393
 foogroovy

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/698ebbde/src/test/org/codehaus/groovy/transform/META-INF/services/org.codehaus.groovy.transform.ASTTransformation
----------------------------------------------------------------------
diff --git a/src/test/org/codehaus/groovy/transform/META-INF/services/org.codehaus.groovy.transform.ASTTransformation b/src/test/org/codehaus/groovy/transform/META-INF/services/org.codehaus.groovy.transform.ASTTransformation
index f45fb27..a1c9d8a 100644
--- a/src/test/org/codehaus/groovy/transform/META-INF/services/org.codehaus.groovy.transform.ASTTransformation
+++ b/src/test/org/codehaus/groovy/transform/META-INF/services/org.codehaus.groovy.transform.ASTTransformation
@@ -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.
+
 # test two transforms in different phases
 org.codehaus.groovy.transform.TestTransformConversion
 org.codehaus.groovy.transform.TestTransformClassGeneration
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/698ebbde/subprojects/groovy-jsr223/src/main/resources/META-INF/services/javax.script.ScriptEngineFactory
----------------------------------------------------------------------
diff --git a/subprojects/groovy-jsr223/src/main/resources/META-INF/services/javax.script.ScriptEngineFactory b/subprojects/groovy-jsr223/src/main/resources/META-INF/services/javax.script.ScriptEngineFactory
index 42f99ff..eb12457 100644
--- a/subprojects/groovy-jsr223/src/main/resources/META-INF/services/javax.script.ScriptEngineFactory
+++ b/subprojects/groovy-jsr223/src/main/resources/META-INF/services/javax.script.ScriptEngineFactory
@@ -1 +1,16 @@
+# 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.
+
 org.codehaus.groovy.jsr223.GroovyScriptEngineFactory

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/698ebbde/subprojects/groovy-testng/src/main/resources/META-INF/services/org.codehaus.groovy.plugins.Runners
----------------------------------------------------------------------
diff --git a/subprojects/groovy-testng/src/main/resources/META-INF/services/org.codehaus.groovy.plugins.Runners b/subprojects/groovy-testng/src/main/resources/META-INF/services/org.codehaus.groovy.plugins.Runners
index 0d1472b..9505ad8 100644
--- a/subprojects/groovy-testng/src/main/resources/META-INF/services/org.codehaus.groovy.plugins.Runners
+++ b/subprojects/groovy-testng/src/main/resources/META-INF/services/org.codehaus.groovy.plugins.Runners
@@ -1 +1,16 @@
+# 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.
+
 org.codehaus.groovy.testng.TestNgRunner