Skip to content
Snippets Groups Projects
Select Git revision
  • bd3ae6b14a0cfc27e6a87f895d792a4acffd72b7
  • main default protected
  • 570-switch-back-to-release-tags
  • fix-forums-issue
  • forum-issues
  • html-markdown-plaintext
  • improve-html-markdown-plaintext
  • html-markdown-richttext
  • print-vm-info
  • client-versioning-logging
  • add-some-logging-concerning-private-group-sharing
  • jvm-17.0.7
  • 311-disable-copy-and-paste-on-password-fields
  • 359-automated-screenshots-via-testing-api
  • 374-localized-timestamps
  • release-testing
  • non-translatable-properties
  • 332-material-search-ui
  • 453-invitation-open
  • size-limit
  • testdata-refactor
  • 0.6.4-beta
  • 0.6.3-beta
  • 0.6.2-beta
  • 0.6.1-beta
  • 0.6.0-beta
  • 0.5.0-beta
  • 0.4.2-beta
  • 0.4.1-beta
  • 0.4.0-beta
  • 0.3.1-beta
  • 0.3.0-beta
  • 0.2.1-beta
  • 0.2.0-beta
  • 0.1.0-beta
35 results

build.gradle.kts

Blame
  • build.gradle.kts 1.14 KiB
    /*
     * Briar Desktop
     * Copyright (C) 2021-2022 The Briar Project
     *
     * This program is free software: you can redistribute it and/or modify
     * it under the terms of the GNU Affero General Public License as
     * published by the Free Software Foundation, either version 3 of the
     * License, or (at your option) any later version.
     *
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU Affero General Public License for more details.
     *
     * You should have received a copy of the GNU Affero General Public License
     * along with this program.  If not, see <https://www.gnu.org/licenses/>.
     */
    
    import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
    
    plugins {
        kotlin("jvm") version "1.6.10"
        id("org.jlleitschuh.gradle.ktlint") version "10.1.0"
    }
    
    tasks.withType<KotlinCompile> {
        kotlinOptions.jvmTarget = "11"
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation(gradleApi())
        implementation(localGroovy())
        implementation("org.eclipse.jgit:org.eclipse.jgit:6.0.0.202111291000-r")
    }