diff --git a/README.md b/README.md index 9632935..95a5517 100644 --- a/README.md +++ b/README.md @@ -150,4 +150,34 @@ Once configured, the project will produce a DEB and a RPM with the context of th gradlew buildDeb buildRpm +Gradle Compatibility Tested +--------------------------- +Built with Oracle JDK7 +Tested with Oracle JDK8 + +| Gradle Version | Works | +| :------------: | :---: | +| 2.2.1 | ? | +| 2.3 | ? | +| 2.4 | ? | +| 2.5 | ? | +| 2.6 | yes | +| 2.7 | yes | + +LICENSE +======= + +Copyright 2014-2015 Netflix, Inc. + +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 + + + +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. diff --git a/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationDaemonPluginLauncherSpec.groovy b/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationDaemonPluginLauncherSpec.groovy index 565ce44..91ffa86 100644 --- a/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationDaemonPluginLauncherSpec.groovy +++ b/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationDaemonPluginLauncherSpec.groovy @@ -1,3 +1,18 @@ +/* + * Copyright 2014-2015 Netflix, Inc. + * + * 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 + * + * + * + * 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 nebula.plugin.ospackage.application import nebula.test.IntegrationSpec diff --git a/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationDaemonPluginSpec.groovy b/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationDaemonPluginSpec.groovy index 6d940ee..3ae0485 100644 --- a/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationDaemonPluginSpec.groovy +++ b/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationDaemonPluginSpec.groovy @@ -1,3 +1,18 @@ +/* + * Copyright 2014-2015 Netflix, Inc. + * + * 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 + * + * + * + * 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 nebula.plugin.ospackage.application import nebula.plugin.ospackage.daemon.DaemonExtension diff --git a/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationPluginLauncherSpec.groovy b/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationPluginLauncherSpec.groovy index 4b844ef..fad855b 100644 --- a/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationPluginLauncherSpec.groovy +++ b/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationPluginLauncherSpec.groovy @@ -1,3 +1,18 @@ +/* + * Copyright 2014-2015 Netflix, Inc. + * + * 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 + * + * + * + * 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 nebula.plugin.ospackage.application import nebula.test.IntegrationSpec diff --git a/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationPluginSpec.groovy b/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationPluginSpec.groovy index 5b11fef..803f802 100644 --- a/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationPluginSpec.groovy +++ b/src/test/groovy/nebula/plugin/ospackage/application/OspackageApplicationPluginSpec.groovy @@ -1,3 +1,18 @@ +/* + * Copyright 2014-2015 Netflix, Inc. + * + * 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 + * + * + * + * 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 nebula.plugin.ospackage.application import nebula.test.PluginProjectSpec diff --git a/src/test/groovy/nebula/plugin/ospackage/daemon/DaemonExtensionSpec.groovy b/src/test/groovy/nebula/plugin/ospackage/daemon/DaemonExtensionSpec.groovy index 579c7ea..d2c74f4 100644 --- a/src/test/groovy/nebula/plugin/ospackage/daemon/DaemonExtensionSpec.groovy +++ b/src/test/groovy/nebula/plugin/ospackage/daemon/DaemonExtensionSpec.groovy @@ -1,3 +1,18 @@ +/* + * Copyright 2014-2015 Netflix, Inc. + * + * 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 + * + * + * + * 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 nebula.plugin.ospackage.daemon import org.gradle.api.internal.DefaultDomainObjectCollection diff --git a/src/test/groovy/nebula/plugin/ospackage/daemon/OspackageDaemonPluginLauncherSpec.groovy b/src/test/groovy/nebula/plugin/ospackage/daemon/OspackageDaemonPluginLauncherSpec.groovy index a297be1..dea20fa 100644 --- a/src/test/groovy/nebula/plugin/ospackage/daemon/OspackageDaemonPluginLauncherSpec.groovy +++ b/src/test/groovy/nebula/plugin/ospackage/daemon/OspackageDaemonPluginLauncherSpec.groovy @@ -1,3 +1,18 @@ +/* + * Copyright 2014-2015 Netflix, Inc. + * + * 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 + * + * + * + * 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 nebula.plugin.ospackage.daemon import com.netflix.gradle.plugins.packaging.SystemPackagingPlugin diff --git a/src/test/groovy/nebula/plugin/ospackage/daemon/TemplateSyntaxSpec.groovy b/src/test/groovy/nebula/plugin/ospackage/daemon/TemplateSyntaxSpec.groovy index 69dfa11..328351a 100644 --- a/src/test/groovy/nebula/plugin/ospackage/daemon/TemplateSyntaxSpec.groovy +++ b/src/test/groovy/nebula/plugin/ospackage/daemon/TemplateSyntaxSpec.groovy @@ -1,3 +1,18 @@ +/* + * Copyright 2014-2015 Netflix, Inc. + * + * 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 + * + * + * + * 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 nebula.plugin.ospackage.daemon import nebula.test.ProjectSpec