Posts by Eduardo Weise • 45 points
7 posts
-
0
votes1
answer1101
viewsA: Gradle can’t find my main class
Solved! Package was missing along with the class name, Gradle only recognizes, obviously, until the root path 'src/main/java'. Wrong: mainClassName = 'LoadWebService' Right: mainClassName =…
-
1
votes0
answers139
viewsQ: Error in log4j2.properties configuration
My mistake: 2018-02-02 03:31:07,300 main ERROR The parameter is null: fileName 2018-02-02 03:31:07,316 main ERROR Could not create plugin of type class…
-
0
votes1
answer1101
viewsQ: Gradle can’t find my main class
I have the following problem. :runErro: Não foi possível localizar nem carregar a classe principal LoadWebService FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed…
-
1
votes1
answer76
viewsQ: What dependencies do I need on Gradle?
What are the necessary dependencies for the following libraries? import java.io.StringReader; import java.net.Authenticator; import java.net.PasswordAuthentication; import java.util.ArrayList;…
-
0
votes1
answer102
viewsA: Classroom API - Coursealias
Solved! The alias string has its own configuration, the string must start with’d:' which indicates domain scope or p:' which indicates project scope. Before I had this: CourseAlias courseAlias = new…
-
0
votes1
answer102
viewsQ: Classroom API - Coursealias
The following code refers to the creation of a course by the Classroom API. However, the API does not allow you to manually define an 'ID' (using .setId("ID")). For this is available the creation of…
-
2
votes1
answer73
viewsQ: Testing RMI with Junit
How to test a client/server application using RMI with Junit? I’ve searched a plethora of places and found nothing to help me.