|
1 | 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> |
| 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 | 4 |
|
5 |
| - <groupId>jbr.spring</groupId> |
6 |
| - <artifactId>springcore-containers</artifactId> |
7 |
| - <version>0.1</version> |
8 |
| - <packaging>jar</packaging> |
| 5 | + <groupId>jbr.spring</groupId> |
| 6 | + <artifactId>springcore-containers</artifactId> |
| 7 | + <version>0.1</version> |
| 8 | + <packaging>jar</packaging> |
9 | 9 |
|
10 |
| - <name>springcore-containers</name> |
11 |
| - <url>http://maven.apache.org</url> |
| 10 | + <name>springcore-containers</name> |
| 11 | + <url>http://maven.apache.org</url> |
12 | 12 |
|
13 |
| - <properties> |
14 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
15 |
| - <spring.version>5.2.3.RELEASE</spring.version> |
16 |
| - </properties> |
| 13 | + <properties> |
| 14 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | + <java.version>1.8</java.version> |
| 16 | + <junit.version>4.12</junit.version> |
| 17 | + <spring.version>5.2.3.RELEASE</spring.version> |
| 18 | + </properties> |
17 | 19 |
|
18 |
| - <dependencies> |
19 |
| - <dependency> |
20 |
| - <groupId>junit</groupId> |
21 |
| - <artifactId>junit</artifactId> |
22 |
| - <version>3.8.1</version> |
23 |
| - <scope>test</scope> |
24 |
| - </dependency> |
| 20 | + <dependencies> |
| 21 | + <!-- Junit --> |
| 22 | + <dependency> |
| 23 | + <groupId>junit</groupId> |
| 24 | + <artifactId>junit</artifactId> |
| 25 | + <version>${junit.version}</version> |
| 26 | + <scope>test</scope> |
| 27 | + </dependency> |
25 | 28 |
|
26 |
| - <!-- Spring Framework --> |
27 |
| - <dependency> |
28 |
| - <groupId>org.springframework</groupId> |
29 |
| - <artifactId>spring-core</artifactId> |
30 |
| - <version>${spring.version}</version> |
31 |
| - </dependency> |
| 29 | + <!-- Spring Framework --> |
| 30 | + <dependency> |
| 31 | + <groupId>org.springframework</groupId> |
| 32 | + <artifactId>spring-core</artifactId> |
| 33 | + <version>${spring.version}</version> |
| 34 | + </dependency> |
32 | 35 |
|
33 |
| - <dependency> |
34 |
| - <groupId>org.springframework</groupId> |
35 |
| - <artifactId>spring-beans</artifactId> |
36 |
| - <version>${spring.version}</version> |
37 |
| - </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>org.springframework</groupId> |
| 38 | + <artifactId>spring-beans</artifactId> |
| 39 | + <version>${spring.version}</version> |
| 40 | + </dependency> |
38 | 41 |
|
39 |
| - <dependency> |
40 |
| - <groupId>org.springframework</groupId> |
41 |
| - <artifactId>spring-context</artifactId> |
42 |
| - <version>${spring.version}</version> |
43 |
| - </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>org.springframework</groupId> |
| 44 | + <artifactId>spring-context</artifactId> |
| 45 | + <version>${spring.version}</version> |
| 46 | + </dependency> |
44 | 47 |
|
45 |
| - <dependency> |
46 |
| - <groupId>org.springframework</groupId> |
47 |
| - <artifactId>spring-test</artifactId> |
48 |
| - <version>${spring.version}</version> |
49 |
| - </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>org.springframework</groupId> |
| 50 | + <artifactId>spring-test</artifactId> |
| 51 | + <version>${spring.version}</version> |
| 52 | + </dependency> |
50 | 53 |
|
51 |
| - <dependency> |
52 |
| - <groupId>org.springframework</groupId> |
53 |
| - <artifactId>spring-jdbc</artifactId> |
54 |
| - <version>${spring.version}</version> |
55 |
| - </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.springframework</groupId> |
| 56 | + <artifactId>spring-jdbc</artifactId> |
| 57 | + <version>${spring.version}</version> |
| 58 | + </dependency> |
56 | 59 |
|
57 |
| - <dependency> |
58 |
| - <groupId>org.springframework</groupId> |
59 |
| - <artifactId>spring-webmvc</artifactId> |
60 |
| - <version>${spring.version}</version> |
61 |
| - </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>org.springframework</groupId> |
| 62 | + <artifactId>spring-webmvc</artifactId> |
| 63 | + <version>${spring.version}</version> |
| 64 | + </dependency> |
62 | 65 |
|
63 |
| - <dependency> |
64 |
| - <groupId>org.springframework</groupId> |
65 |
| - <artifactId>spring-aop</artifactId> |
66 |
| - <version>${spring.version}</version> |
67 |
| - </dependency> |
68 |
| - </dependencies> |
| 66 | + <dependency> |
| 67 | + <groupId>org.springframework</groupId> |
| 68 | + <artifactId>spring-aop</artifactId> |
| 69 | + <version>${spring.version}</version> |
| 70 | + </dependency> |
| 71 | + </dependencies> |
| 72 | + |
| 73 | + <build> |
| 74 | + <finalName>springcore-containers</finalName> |
| 75 | + <plugins> |
| 76 | + <plugin> |
| 77 | + <groupId>org.apache.maven.plugins</groupId> |
| 78 | + <artifactId>maven-compiler-plugin</artifactId> |
| 79 | + <configuration> |
| 80 | + <source>${java.version}</source> |
| 81 | + <target>${java.version}</target> |
| 82 | + </configuration> |
| 83 | + </plugin> |
| 84 | + </plugins> |
| 85 | + </build> |
69 | 86 | </project>
|
0 commit comments