Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
ttypic committed Sep 24, 2024
1 parent 0bed4c4 commit 374ec59
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 3 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {
id 'io.codearte.nexus-staging' version '0.21.1'
id 'io.freefair.lombok' version '5.0.1' apply false
id 'com.android.library' version '4.2.2' apply false
id 'com.vanniktech.maven.publish' version '0.8.0' apply false
}

repositories {
Expand Down
19 changes: 19 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,21 @@
GROUP=io.ably
VERSION_NAME=1.2.42

POM_DESCRIPTION=Realtime and REST client library SDK for the Ably platform
POM_INCEPTION_YEAR=2015
POM_URL=https://github.com/ably/ably-java
POM_SCM_URL=https://github.com/ably/ably-java
POM_SCM_CONNECTION=scm:git:https://github.com/ably/ably-java.git
POM_SCM_DEV_CONNECTION=scm:git:[email protected]:ably/ably-java.git

POM_LICENSE_NAME=The Apache Software License, Version 2.0
POM_LICENSE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENSE_DIST=repo

POM_DEVELOPER_ID=ably
POM_DEVELOPER_NAME=Ably
POM_DEVELOPER_URL=https://github.com/ably/
SONATYPE_STAGING_PROFILE=io.ably

org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
1 change: 1 addition & 0 deletions network-client-core/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id("java-library")
id("io.freefair.lombok")
id("com.vanniktech.maven.publish")
}

java {
Expand Down
3 changes: 3 additions & 0 deletions network-client-core/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
POM_ARTIFACT_ID=network-client-core
POM_NAME=Network Core
POM_PACKAGING=jar
1 change: 1 addition & 0 deletions network-client-default/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id("java-library")
id("io.freefair.lombok")
id("com.vanniktech.maven.publish")
}

java {
Expand Down
3 changes: 3 additions & 0 deletions network-client-default/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
POM_ARTIFACT_ID=network-client-default
POM_NAME=Default Client
POM_PACKAGING=jar
7 changes: 4 additions & 3 deletions network-client-okhttp/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
plugins {
id("java-library")
id("io.freefair.lombok")
id("com.vanniktech.maven.publish")
}

tasks.compileJava {
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

repositories {
Expand Down
3 changes: 3 additions & 0 deletions network-client-okhttp/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
POM_ARTIFACT_ID=network-client-okhttp
POM_NAME=OkHttp Client
POM_PACKAGING=jar

0 comments on commit 374ec59

Please sign in to comment.