Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
buildscript {
ext.versions = [
// Kotlin
kotlinVersion : '1.3.61',
kotlinVersion : '1.6.21',
coroutines : '1.3.2',

// Gradle
gradle : '3.5.3',
gradle : '7.1.2',

// Virgil
virgilSdk : '7.2.0',
Expand All @@ -48,14 +48,14 @@ buildscript {
gson : '2.8.6',

// Network
fuel : '1.15.1',
fuel : '2.3.1',

// Android
android : '4.1.1.4',

// Publish
mavenPublishPlugin: '3.6.2',
dokka : '0.9.17',
dokka : '1.6.21',

// Tests
testsRunner : '1.2.0',
Expand Down
39 changes: 3 additions & 36 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,39 +1,6 @@
#
# Copyright (c) 2015-2020, Virgil Security, Inc.
#
# Lead Maintainer: Virgil Security Inc. <support@virgilsecurity.com>
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# (1) Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# (2) Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# (3) Neither the name of virgil nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

#Sat Jan 11 16:56:12 EET 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-all.zip
#Sun Sep 01 23:54:57 EEST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
8 changes: 3 additions & 5 deletions pythia-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ task sourcesJar(type: Jar) {
classifier = 'sources'
}

task javadocJar(type: Jar, dependsOn: 'dokka') {
task javadocJar(type: Jar, dependsOn: 'dokkaHtml') {
from("$buildDir/javadoc")
classifier = 'javadoc'
}
Expand Down Expand Up @@ -165,8 +165,6 @@ signing {
sign publishing.publications.mavenJava
}

dokka {
outputFormat = 'html'
outputDirectory = "$buildDir/javadoc"
reportUndocumented = false
dokkaHtml {
outputDirectory.set(file("$buildDir/javadoc"))
}
2 changes: 1 addition & 1 deletion pythia/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ plugins {
id 'java-library'
id 'maven-publish'
id 'signing'
id 'maven'
// id 'maven'
}

sourceCompatibility = 1.8
Expand Down