-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
66 lines (66 loc) · 2.47 KB
/
pom.xml
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
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>
<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>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>org.modelmapper</groupId>
<artifactId>modelmapper-module-record</artifactId>
<version>1.0.1-SNAPSHOT</version>
<name>ModelMapper Module Record</name>
<description>ModelMapper Module for Record</description>
<url>http://modelmapper.org</url>
<inceptionYear>2023</inceptionYear>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<modelmapper.version>3.1.1</modelmapper.version>
<testng.version>7.7.0</testng.version>
</properties>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Chun Han Hsiao</name>
<email>[email protected]</email>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:modelmapper/modelmapper-module-record.git</connection>
<developerConnection>scm:git:[email protected]:modelmapper/modelmapper-module-record.git</developerConnection>
<url>http://github.com/modelmapper/modelmapper-module-record/</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>http://github.com/modelmapper/modelmapper-module-record/issues</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>ModelMapper List</name>
<archive>http://groups.google.com/group/modelmapper/topics</archive>
<subscribe>http://groups.google.com/group/modelmapper/subscribe</subscribe>
<unsubscribe>http://groups.google.com/group/modelmapper/subscribe</unsubscribe>
<post>http://groups.google.com/group/modelmapper/post</post>
</mailingList>
</mailingLists>
<dependencies>
<dependency>
<groupId>org.modelmapper</groupId>
<artifactId>modelmapper</artifactId>
<version>${modelmapper.version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>