Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
various improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
lesclaz committed Feb 25, 2024
1 parent e04664a commit d78ad3f
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 2 deletions.
6 changes: 5 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ sonatypeCentralUpload {
username = System.getenv("SONATYPE_USERNAME")
password = System.getenv("SONATYPE_PASSWORD")

archives = files("build/libs/nauta-connect-${version}.jar", "build/libs/nauta-connect-${version}-javadoc.jar", "build/libs/nauta-connect-${version}-sources.jar")
archives = files(
"build/libs/nauta-connect-${version}.jar",
"build/libs/nauta-connect-${version}-javadoc.jar",
"build/libs/nauta-connect-${version}-sources.jar"
)
pom = file("./pom_gradle.txt")

signingKey = System.getenv("SIGNING_KEY")
Expand Down
38 changes: 37 additions & 1 deletion pom_gradle.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.suitetecsa</groupId>
<artifactId>nauta-connect</artifactId>
<version>0.1.1</version>
<version>0.1.4-alpha01</version>
<packaging>jar</packaging>

<name>nauta-connect</name>
Expand Down Expand Up @@ -46,5 +46,41 @@
<version>1.17.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>retrofit</artifactId>
<version>2.9.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>converter-moshi</artifactId>
<version>2.9.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.squareup.moshi</groupId>
<artifactId>moshi-kotlin</artifactId>
<version>1.15.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.jakewharton.retrofit</groupId>
<artifactId>retrofit2-kotlin-coroutines-adapter</artifactId>
<version>0.9.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>adapter-rxjava3</artifactId>
<version>Introduce local variable</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
<version>3.18.2</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>

0 comments on commit d78ad3f

Please sign in to comment.