Skip to content

Commit 4ac47a4

Browse files
authored
Merge pull request #16 from linked-planet/feature/maven_options
Feature/maven options
2 parents d3c9b7f + 4b4e0b5 commit 4ac47a4

File tree

2 files changed

+3
-3
lines changed
  • .github/workflows
  • kotlin-atlassian-client-core-common/src/main/kotlin/com/linkedplanet/kotlinatlassianclientcore/common/api

2 files changed

+3
-3
lines changed

.github/workflows/default.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ on:
1111
env:
1212
MAIN_BRANCH: 'dev'
1313
MAIN_BRANCH_FULL: 'refs/heads/dev'
14+
MAVEN_OPTS: >
15+
-Dmaven.wagon.httpconnectionManager.ttlSeconds=25 -Dmaven.wagon.http.retryHandler.count=3 -Daether.connector.http.connectionMaxTtl=25
1416
1517
jobs:
1618
build:

kotlin-atlassian-client-core-common/src/main/kotlin/com/linkedplanet/kotlinatlassianclientcore/common/api/Page.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ data class Page<T> (
2727
@field:NotNull val totalPages: Int,
2828
@field:NotNull val currentPageIndex: Int,
2929
@field:NotNull val pageSize: Int
30-
31-
3230
) {
3331
override fun equals(other: Any?): Boolean {
3432
if (this === other) return true
@@ -56,4 +54,4 @@ data class Page<T> (
5654
return "Page(items=$items, totalItems=$totalItems, totalPages=$totalPages, currentPageIndex=$currentPageIndex, pageSize=$pageSize)"
5755
}
5856

59-
}
57+
}

0 commit comments

Comments
 (0)