06. Spring – Link backend Project with front end.
Link backend Project with front end.
//In the backend Project - pom.xml
<groupId>com.lhu</groupId>
<artifactId>vehicle_rent_backend</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
//In the Front end Project - pom.xml
<dependencies>
<!-- Link backend project -->
<dependency>
<groupId>com.lhu</groupId>
<artifactId>vehicle_rent_backend</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>
Comments
Post a Comment