File tree Expand file tree Collapse file tree 1 file changed +53
-0
lines changed
group07/562247675/homework Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0
5
+ http://maven.apache.org/xsd/maven-4.0.0.xsd" >
6
+
7
+ <modelVersion >4.0.0</modelVersion >
8
+
9
+ <groupId >com.coding2017.group7</groupId >
10
+ <artifactId >homework</artifactId >
11
+ <version >1.0-SNAPSHOT</version >
12
+
13
+ <modules >
14
+ <module >homework-0226</module >
15
+ </modules >
16
+
17
+ <packaging >pom</packaging >
18
+ <properties >
19
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
20
+ <maven .compiler.source>1.6</maven .compiler.source>
21
+ <maven .compiler.target>1.6</maven .compiler.target>
22
+ </properties >
23
+ <dependencyManagement >
24
+ <dependencies >
25
+ <dependency >
26
+ <groupId >junit</groupId >
27
+ <artifactId >junit</artifactId >
28
+ <version >4.12</version >
29
+ </dependency >
30
+ </dependencies >
31
+ </dependencyManagement >
32
+ <build >
33
+ <pluginManagement >
34
+ <plugins >
35
+ <plugin >
36
+ <groupId >org.apache.maven.plugins</groupId >
37
+ <artifactId >maven-compiler-plugin</artifactId >
38
+ <configuration >
39
+ <source >${maven.compiler.source} </source >
40
+ <target >${maven.compiler.target} </target >
41
+ <encoding >${project.build.sourceEncoding} </encoding >
42
+ </configuration >
43
+ </plugin >
44
+ </plugins >
45
+ </pluginManagement >
46
+ <plugins >
47
+ <plugin >
48
+ <groupId >org.apache.maven.plugins</groupId >
49
+ <artifactId >maven-compiler-plugin</artifactId >
50
+ </plugin >
51
+ </plugins >
52
+ </build >
53
+ </project >
You can’t perform that action at this time.
0 commit comments