hafribilal / ecom-app-spring-boot-2021

E-Commerce project for Spring Boot
MIT License
1 stars 0 forks source link

java: package org.springframework.mail does not exist #2

Open hafribilal opened 3 years ago

hafribilal commented 3 years ago

Maven cannot update dependencies

hafribilal commented 3 years ago

### THE SOLUTION IS :

replace build in pom.xml with that code :

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.7.0</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
        </plugins>
    </build>