I got the error on below code of pom.xml file.
<dependency>
<groupId>org.lightadmin</groupId>
<artifactId>lightadmin</artifactId>
<version>1.0.0.M3-SNAPSHOT</version>
</dependency>
The error message is as below :
Missing artifact org.lightadmin:lightadmin:jar:1.0.0.M3-SNAPSHOT
Please advice on this.
Thank you
You can look up for the available
lightadmin
dependency versions in mvn repository. Version1.0.0.M3-SNAPSHOT
is not listed hereYou can use version
1.2.0.RC1
by specifying a different value in theversion
tag as below.