in Maven

The problem itself

without maven

Good afternoon, I can't import a class if the project is going to Maven, if everything is fine without it, what am I doing wrong?

    1 answer 1

    <dependency> needs to be wrapped in <dependencies> , and you have it in <dependency>

     <dependencies> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4</version> </dependency> </dependencies> 
    • earned ooo..thank you ) - noganka