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
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ public class TecEmployeeRepositoryImpl : TecEmployeesRepository {

override fun getMyProfile(): Employee {
return Employee(
id = 1234567890L,
name = "Jose Luis",
salary = 23000.0,
age = 30,
profileImage = ""
id = 1234567120L,
name = "Jose Ramon",
salary = 0.0,
age = 22,
profileImage = "",
message = "Oh si hermano"
)
}

Expand All @@ -36,7 +37,15 @@ public class TecEmployeeRepositoryImpl : TecEmployeesRepository {
salary = 45000.0,
age = 45,
profileImage = ""
),
Employee(
id = 1234567893L,
name = "Jose Ramon",
salary = 999999.99999,
age = 22,
profileImage = "",
message = "Hola Linux"
)
)
}
}
}
4 changes: 2 additions & 2 deletions release.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fun Project.getExtra(extraKey: String, tryRoot: Boolean = true): String? =
null
}

val BUILD_VERSION = System.getenv("BUILD_VERSION") ?: "0.0.5-beta"
val BUILD_VERSION = System.getenv("BUILD_VERSION") ?: "0.0.9-alpha"
extra["artifactVersion"] = BUILD_VERSION
extra["artifactGroup"] = System.getenv("ARTIFACT_GROUP") ?: "com.jlrf.tec"

Expand Down Expand Up @@ -66,4 +66,4 @@ subprojects {

task<Delete>("clean") {
delete(fileTree(rootProject.buildDir))
}
}