Skip to content

Commit 0c1ba5e

Browse files
committed
Update pom.xml
1 parent 801bc66 commit 0c1ba5e

File tree

1 file changed

+69
-66
lines changed

1 file changed

+69
-66
lines changed

study-nginx/pom.xml

Lines changed: 69 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,78 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>study</artifactId>
7+
<groupId>com.bage</groupId>
8+
<version>0.0.1-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
611

7-
<groupId>com.bage</groupId>
8-
<artifactId>study-nginx</artifactId>
9-
<version>0.0.1-SNAPSHOT</version>
12+
<artifactId>study-nginx</artifactId>
1013

11-
<name>study-nginx</name>
12-
<!-- FIXME change it to the project's website -->
13-
<url>http://www.example.com</url>
14+
<name>study-nginx</name>
15+
<!-- FIXME change it to the project's website -->
16+
<url>http://www.example.com</url>
1417

15-
<properties>
16-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17-
<maven.compiler.source>1.7</maven.compiler.source>
18-
<maven.compiler.target>1.7</maven.compiler.target>
19-
</properties>
18+
<properties>
19+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20+
<maven.compiler.source>1.7</maven.compiler.source>
21+
<maven.compiler.target>1.7</maven.compiler.target>
22+
</properties>
2023

21-
<dependencies>
22-
<dependency>
23-
<groupId>junit</groupId>
24-
<artifactId>junit</artifactId>
25-
<version>4.11</version>
26-
<scope>test</scope>
27-
</dependency>
28-
</dependencies>
24+
<dependencies>
25+
<dependency>
26+
<groupId>junit</groupId>
27+
<artifactId>junit</artifactId>
28+
<version>4.11</version>
29+
<scope>test</scope>
30+
</dependency>
31+
</dependencies>
2932

30-
<build>
31-
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
32-
<plugins>
33-
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
34-
<plugin>
35-
<artifactId>maven-clean-plugin</artifactId>
36-
<version>3.1.0</version>
37-
</plugin>
38-
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
39-
<plugin>
40-
<artifactId>maven-resources-plugin</artifactId>
41-
<version>3.0.2</version>
42-
</plugin>
43-
<plugin>
44-
<artifactId>maven-compiler-plugin</artifactId>
45-
<version>3.8.0</version>
46-
</plugin>
47-
<plugin>
48-
<artifactId>maven-surefire-plugin</artifactId>
49-
<version>2.22.1</version>
50-
</plugin>
51-
<plugin>
52-
<artifactId>maven-jar-plugin</artifactId>
53-
<version>3.0.2</version>
54-
</plugin>
55-
<plugin>
56-
<artifactId>maven-install-plugin</artifactId>
57-
<version>2.5.2</version>
58-
</plugin>
59-
<plugin>
60-
<artifactId>maven-deploy-plugin</artifactId>
61-
<version>2.8.2</version>
62-
</plugin>
63-
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
64-
<plugin>
65-
<artifactId>maven-site-plugin</artifactId>
66-
<version>3.7.1</version>
67-
</plugin>
68-
<plugin>
69-
<artifactId>maven-project-info-reports-plugin</artifactId>
70-
<version>3.0.0</version>
71-
</plugin>
72-
</plugins>
73-
</pluginManagement>
74-
</build>
33+
<build>
34+
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
35+
<plugins>
36+
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
37+
<plugin>
38+
<artifactId>maven-clean-plugin</artifactId>
39+
<version>3.1.0</version>
40+
</plugin>
41+
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
42+
<plugin>
43+
<artifactId>maven-resources-plugin</artifactId>
44+
<version>3.0.2</version>
45+
</plugin>
46+
<plugin>
47+
<artifactId>maven-compiler-plugin</artifactId>
48+
<version>3.8.0</version>
49+
</plugin>
50+
<plugin>
51+
<artifactId>maven-surefire-plugin</artifactId>
52+
<version>2.22.1</version>
53+
</plugin>
54+
<plugin>
55+
<artifactId>maven-jar-plugin</artifactId>
56+
<version>3.0.2</version>
57+
</plugin>
58+
<plugin>
59+
<artifactId>maven-install-plugin</artifactId>
60+
<version>2.5.2</version>
61+
</plugin>
62+
<plugin>
63+
<artifactId>maven-deploy-plugin</artifactId>
64+
<version>2.8.2</version>
65+
</plugin>
66+
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
67+
<plugin>
68+
<artifactId>maven-site-plugin</artifactId>
69+
<version>3.7.1</version>
70+
</plugin>
71+
<plugin>
72+
<artifactId>maven-project-info-reports-plugin</artifactId>
73+
<version>3.0.0</version>
74+
</plugin>
75+
</plugins>
76+
</pluginManagement>
77+
</build>
7578
</project>

0 commit comments

Comments
 (0)