Posts by José Roberto Araújo Júnior • 123 points
4 posts
-
1
votes1
answer198
viewsA: Array Creation in Kotlin : No value passed for Parameter array [init]
The excerpt is in error because vectorImage was declared as Array<ImageView>?, meaning that the value of the variable can be null (for example, it may or may not have an array there) but the…
-
1
votes1
answer97
viewsQ: How do I create a new zeroed submodule in git?
What’s the most practical way to create a new, empty submodule in git? Whenever I need to I’m having to create outside to then checkout with a url. Do you have any more direct way with one or a few…
-
0
votes1
answer31
viewsA: Gradle Publish does not upload files to the Nexus repository (Maven 2)
The problem is that the block uploadArchives was not being applied to all projects as it seemed. As my root project was just a container of other subprojects I solved in this way: subprojects {…
-
0
votes1
answer31
viewsQ: Gradle Publish does not upload files to the Nexus repository (Maven 2)
I’m trying to get my project to send the Jars files to a Nexus (Maven 2) repository but I’m not getting it. The project is programmed in Kotlin. This code fragment is as close as I could get to a…