build.gradle (622B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 import org.apache.tools.ant.filters.ReplaceTokens 5 6 plugins { 7 id 'groovy' 8 id 'maven-publish' 9 id 'groovy-gradle-plugin' 10 } 11 12 gradlePlugin { 13 plugins.register("org.mozilla.nimbus-gradle-plugin") { 14 id = "org.mozilla.nimbus-gradle-plugin" 15 implementationClass = "org.mozilla.tooling.nimbus.NimbusPlugin" 16 } 17 } 18 19 dependencies { 20 implementation gradleApi() 21 implementation localGroovy() 22 }