This repository was archived by the owner on Nov 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
61 lines (54 loc) · 1.88 KB
/
pom.xml
File metadata and controls
61 lines (54 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.mpobjects</groupId>
<artifactId>mpo-oss-parent</artifactId>
<version>1.1.0</version>
</parent>
<groupId>com.mpobjects.spring</groupId>
<artifactId>spring-mpo-util</artifactId>
<version>3.0.0-SNAPSHOT</version>
<name>Spring Framework MPO Utilities</name>
<inceptionYear>2019</inceptionYear>
<url>https://github.com/mpobjects/spring-mpo-util</url>
<organization>
<name>MP Objects</name>
<url>http://www.mp-objects.com</url>
</organization>
<developers>
<developer>
<name>Michiel Hendriks</name>
<email>michiel.hendriks@mp-objects.com</email>
<organization>MP Objects</organization>
<organizationUrl>http://www.mp-objects.com</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/mpobjects/spring-mpo-util.git</connection>
<developerConnection>scm:git:https://github.com/mpobjects/spring-mpo-util.git</developerConnection>
<url>https://github.com/mpobjects/spring-mpo-util.git</url>
</scm>
<properties>
<spring-version>3.2.18.RELEASE</spring-version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring-version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring-version}</version>
</dependency>
</dependencies>
</project>