Error on pom.xml with Light Admin

241 views Asked by At

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

1

There are 1 answers

0
Omkar Puttagunta On BEST ANSWER

You can look up for the available lightadmin dependency versions in mvn repository. Version 1.0.0.M3-SNAPSHOT is not listed here

You can use version 1.2.0.RC1 by specifying a different value in the version tag as below.

<dependency>
    <groupId>org.lightadmin</groupId>
    <artifactId>lightadmin</artifactId>
    <version>1.2.0.RC1</version>
</dependency>