Skip to content

Commit a76e8e3

Browse files
committed
Beautify pom.xml
1 parent 38d69c7 commit a76e8e3

File tree

1 file changed

+44
-42
lines changed

1 file changed

+44
-42
lines changed

pom.xml

Lines changed: 44 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,44 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
5-
<groupId>pl.edu.agh.mwo.invoice</groupId>
6-
<artifactId>mwo-invoice</artifactId>
7-
<version>1.0-SNAPSHOT</version>
8-
<build>
9-
<plugins>
10-
<plugin>
11-
<groupId>org.apache.maven.plugins</groupId>
12-
<artifactId>maven-compiler-plugin</artifactId>
13-
<configuration>
14-
<source>1.8</source>
15-
<target>1.8</target>
16-
</configuration>
17-
</plugin>
18-
</plugins>
19-
</build>
20-
<packaging>jar</packaging>
21-
22-
<name>mwo-invoice</name>
23-
<url>http://maven.apache.org</url>
24-
25-
<properties>
26-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
27-
</properties>
28-
29-
<dependencies>
30-
<dependency>
31-
<groupId>junit</groupId>
32-
<artifactId>junit</artifactId>
33-
<version>4.12</version>
34-
<scope>test</scope>
35-
</dependency>
36-
<dependency>
37-
<groupId>org.hamcrest</groupId>
38-
<artifactId>hamcrest-all</artifactId>
39-
<version>1.3</version>
40-
</dependency>
41-
</dependencies>
42-
</project>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<name>java-invoice</name>
6+
<groupId>pl.edu.agh.mwo.invoice</groupId>
7+
<artifactId>mwo-invoice</artifactId>
8+
<version>1.0-SNAPSHOT</version>
9+
10+
<url>http://maven.apache.org</url>
11+
<packaging>jar</packaging>
12+
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
17+
<build>
18+
<sourceDirectory>src/main/java</sourceDirectory>
19+
<plugins>
20+
<plugin>
21+
<groupId>org.apache.maven.plugins</groupId>
22+
<artifactId>maven-compiler-plugin</artifactId>
23+
<configuration>
24+
<source>1.8</source>
25+
<target>1.8</target>
26+
</configuration>
27+
</plugin>
28+
</plugins>
29+
</build>
30+
31+
<dependencies>
32+
<dependency>
33+
<groupId>junit</groupId>
34+
<artifactId>junit</artifactId>
35+
<version>4.12</version>
36+
<scope>test</scope>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.hamcrest</groupId>
40+
<artifactId>hamcrest-all</artifactId>
41+
<version>1.3</version>
42+
</dependency>
43+
</dependencies>
44+
</project>

0 commit comments

Comments
 (0)