Commit 1252e16c authored by Michael Droettboom's avatar Michael Droettboom
Browse files

Use glean gradle plugin for internal a-c uses

parent 8fc200a7
Loading
Loading
Loading
Loading
+13 −1
Original line number Diff line number Diff line
@@ -2,6 +2,18 @@
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

buildscript {
    repositories {
        maven {
            url "https://maven.mozilla.org/maven2"
        }

        dependencies {
            classpath "org.mozilla.telemetry:glean-gradle-plugin:${Versions.mozilla_glean}"
        }
    }
}

plugins {
    id "com.jetbrains.python.envs" version "0.0.26"
}
@@ -69,6 +81,6 @@ dependencies {
    androidTestImplementation project(':tooling-fetch-tests')
}

apply from: '../../../components/service/glean/scripts/sdk_generator.gradle'
apply plugin: "org.mozilla.telemetry.glean-gradle-plugin"
apply from: '../../../publish.gradle'
ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)
+13 −1
Original line number Diff line number Diff line
@@ -2,6 +2,18 @@
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

buildscript {
    repositories {
        maven {
            url "https://maven.mozilla.org/maven2"
        }

        dependencies {
            classpath "org.mozilla.telemetry:glean-gradle-plugin:${Versions.mozilla_glean}"
        }
    }
}

plugins {
    id "com.jetbrains.python.envs" version "0.0.26"
}
@@ -69,6 +81,6 @@ dependencies {
    androidTestImplementation project(':tooling-fetch-tests')
}

apply from: '../../../components/service/glean/scripts/sdk_generator.gradle'
apply plugin: "org.mozilla.telemetry.glean-gradle-plugin"
apply from: '../../../publish.gradle'
ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)
+13 −1
Original line number Diff line number Diff line
@@ -2,6 +2,18 @@
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

buildscript {
    repositories {
        maven {
            url "https://maven.mozilla.org/maven2"
        }

        dependencies {
            classpath "org.mozilla.telemetry:glean-gradle-plugin:${Versions.mozilla_glean}"
        }
    }
}

plugins {
    id "com.jetbrains.python.envs" version "0.0.26"
}
@@ -68,6 +80,6 @@ dependencies {
    androidTestImplementation project(':tooling-fetch-tests')
}

apply from: '../../../components/service/glean/scripts/sdk_generator.gradle'
apply plugin: "org.mozilla.telemetry.glean-gradle-plugin"
apply from: '../../../publish.gradle'
ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)
+13 −1
Original line number Diff line number Diff line
@@ -2,6 +2,18 @@
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

buildscript {
    repositories {
        maven {
            url "https://maven.mozilla.org/maven2"
        }

        dependencies {
            classpath "org.mozilla.telemetry:glean-gradle-plugin:${Versions.mozilla_glean}"
        }
    }
}

plugins {
    id "com.jetbrains.python.envs" version "0.0.26"
}
@@ -59,6 +71,6 @@ dependencies {
}

ext.gleanGenerateMarkdownDocs = true
apply from: '../../../components/service/glean/scripts/sdk_generator.gradle'
apply plugin: "org.mozilla.telemetry.glean-gradle-plugin"
apply from: '../../../publish.gradle'
ext.configurePublish(config.componentsGroupId, archivesBaseName, project.ext.description)
+5 −0
Original line number Diff line number Diff line
@@ -34,6 +34,11 @@ logger.warning("The Glean sdk_generator.gradle script is deprecated. Use the Gle
// so that it will be shared between all libraries that use Glean.  This is
// important because it is approximately 300MB in installed size.

///////////////////////////////////////////////////////////////////////////
// NOTE: SINCE THIS FILE HAS BEEN DEPRECATED, THIS VERSION SHOULD NO LONGER BE
// UPDATED. THE CANONICAL SOURCE FOR THE glean_parser VERSION IS IN THE
// glean-gradle-plugin IN https://github.com/mozilla/glean
///////////////////////////////////////////////////////////////////////////
String GLEAN_PARSER_VERSION = "1.15.3"
// The version of Miniconda is explicitly specified.
// Miniconda3-4.5.12 is known to not work on Windows.
Loading