We have a git repository at work. I need to provide maven coordinates of the artefact in the README.md file.
The maven coordinates are:
\<dependency\>
\<groupId\>com.company.dept.project.team\</groupId\>
\<artifactId\>LibraryName\</artifactId\>
\<version\>1.0\</version\>
\</dependency\>
However when I updated the README.md and pushed the changes to git. I can only see
<dependency><groupId>com.company.dept.project.team</groupId> <artifactId>LibraryName</artifactId><version>1.0</version></dependency>
Can someone help in displaying the actual coordinates in different lines as shown below?
<dependency>
<groupId>com.company.dept.project.team</groupId>
<artifactId>LibraryName</artifactId>
<version>1.0</version>
</dependency>