Skip to content

Commit 4277ecd

Browse files
committed
up
1 parent 25de282 commit 4277ecd

26 files changed

+63
-50
lines changed

spring-core/pom.xml

-50
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.

springcore/pom.xml

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
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>jbr.spring-core</groupId>
6+
<artifactId>springcore</artifactId>
7+
<version>0.1</version>
8+
<packaging>jar</packaging>
9+
10+
<name>springcore</name>
11+
<url>http://maven.apache.org</url>
12+
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>
19+
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>
28+
29+
<!-- Spring Framework -->
30+
<dependency>
31+
<groupId>org.springframework</groupId>
32+
<artifactId>spring-core</artifactId>
33+
<version>${spring.version}</version>
34+
</dependency>
35+
36+
<dependency>
37+
<groupId>org.springframework</groupId>
38+
<artifactId>spring-beans</artifactId>
39+
<version>${spring.version}</version>
40+
</dependency>
41+
42+
<dependency>
43+
<groupId>org.springframework</groupId>
44+
<artifactId>spring-context</artifactId>
45+
<version>${spring.version}</version>
46+
</dependency>
47+
48+
</dependencies>
49+
50+
<build>
51+
<finalName>springcore</finalName>
52+
<plugins>
53+
<plugin>
54+
<groupId>org.apache.maven.plugins</groupId>
55+
<artifactId>maven-compiler-plugin</artifactId>
56+
<configuration>
57+
<source>${java.version}</source>
58+
<target>${java.version}</target>
59+
</configuration>
60+
</plugin>
61+
</plugins>
62+
</build>
63+
</project>
File renamed without changes.

0 commit comments

Comments
 (0)