Skip to content

Commit

Permalink
normalize pom.xml with autoformat
Browse files Browse the repository at this point in the history
  • Loading branch information
William Welling committed Aug 11, 2022
1 parent 087cd17 commit 6470571
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<groupId>edu.tamu</groupId>
<artifactId>product-management-service</artifactId>
<version>1.0.1</version>

<name>Product-Management-Service</name>

<description>A Webservice to manage Products</description>

<parent>
Expand Down Expand Up @@ -287,14 +289,22 @@
<repository>
<id>tamu-releases</id>
<url>https://artifacts.library.tamu.edu/repository/maven-releases</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>tamu-snapshots</id>
<url>https://artifacts.library.tamu.edu/repository/maven-snapshots</url>
<releases><enabled>false</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

Expand Down

0 comments on commit 6470571

Please sign in to comment.