1

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

Omkar Puttagunta
  • 4,036
  • 3
  • 22
  • 35
Chetan Nakum
  • 413
  • 6
  • 19

1 Answers1

3

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>
Omkar Puttagunta
  • 4,036
  • 3
  • 22
  • 35