tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

build.gradle (726B)


      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 
      5 apply plugin: 'com.android.library'
      6 apply plugin: 'kotlin-android'
      7 
      8 android {
      9    namespace = 'mozilla.components.lib.jexl'
     10 }
     11 
     12 dependencies {
     13    testImplementation platform(libs.junit.bom)
     14    testImplementation libs.junit4
     15    testRuntimeOnly libs.junit.platform.launcher
     16    testRuntimeOnly libs.junit.vintage
     17    testImplementation libs.mockito
     18 }
     19 
     20 apply from: '../../../common-config.gradle'
     21 apply from: '../../../publish.gradle'
     22 ext.configurePublish(config.componentsGroupId, project.name, project.ext.description)