Skip to content

Commit

Permalink
Script tests #2
Browse files Browse the repository at this point in the history
  • Loading branch information
tal-mi committed Jun 8, 2023
1 parent 4726755 commit 93e7e8e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 17 deletions.
6 changes: 1 addition & 5 deletions auth/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ java {

group = 'com.gigya'
archivesBaseName = 'gigya-sdk-auth'
version = '1.0.0'

repositories {
mavenCentral()
}
version = auth_library_version

dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
Expand Down
22 changes: 16 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
plugins {
id 'java'
id 'maven-publish'
buildscript {
ext {
kotlin_version = '1.2.50'
sdk_library_version = '3.2.7'
auth_library_version = '1.0.0'
}

repositories {
mavenCentral()
}
}

repositories {
maven { url "https://jitpack.io" }
mavenCentral()
allprojects {
repositories {
maven { url "https://jitpack.io" }
mavenCentral()
}
}



6 changes: 1 addition & 5 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ java {

group = 'com.gigya'
archivesBaseName = 'gigya-java-sdk'
version = '3.2.7'

repositories {
mavenCentral()
}
version = sdk_library_version

dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.13.1'
Expand Down
1 change: 0 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
rootProject.name = 'gigya-java-sdk'
include 'sdk'
include 'auth'

Expand Down

0 comments on commit 93e7e8e

Please sign in to comment.