Looks like you need to update your maven:
https://stackoverflow.com/questions/59763531/maven-dependencies-are-failing-with-a-501-error
Or even better - use gradle.
I did all the steps of the informed publication but now it is returning this error, I really admire your work if you can help me I thank you from the heart
cd C:\traccar.demo\traccar-master; "JAVA_HOME=C:\\Program Files (x86)\\Java\\jdk1.7.0_55" M2_HOME=C:\\traccar.demo\\traccar-master\\apache-maven-3.6.3 cmd /c "\"\"C:\\traccar.demo\\traccar-master\\apache-maven-3.6.3\\bin\\mvn.bat\" -Dmaven.ext.class.path=\"C:\\Program Files\\NetBeans 8.0.1\\java\\maven-nblib\\netbeans-eventspy.jar\" -Dfile.encoding=UTF-8 install\""
'"C:\traccar.demo\traccar-master\apache-maven-3.6.3\bin\mvn.bat"' nÆo ‚ reconhecido como um comando interno
ou externo, um programa oper vel ou um arquivo em lotes.
@Leonardo Emanuel Fernandes Claudino
Use gradle tool for making jar.
Command - ./gradlew build
"Effective January 15, 2020, The Central Repository no longer supports insecure communication over plain HTTP and requires that all requests to the repository are encrypted over HTTPS."
so you have to force maven to use https.
Open C:\Program Files\NetBeans 8.0.2\java\maven\conf\settings.xml
and paste below code in between mirrors tag
<mirror>
<id>maven-mirror</id>
<name>Maven Mirror</name>
<url>https://repo.maven.apache.org/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
It will force maven to use https://repo.maven.apache.org/maven2 url.
Cheers!
I used following steps in NetBeans:
<mirrors>
<mirror>
<id>maven-mirror</id>
<name>Maven Mirror</name>
<url>https://repo.maven.apache.org/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
I'm trying to compile the Traccar project using Netbeans.
But you are giving this error