-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
91 lines (83 loc) · 2.88 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<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>
<groupId>org.keyboardplaying</groupId>
<artifactId>property-mapper</artifactId>
<version>1.2.0-SNAPSHOT</version>
<name>Property mapper</name>
<description>A proof-of-concept for an annotation-based map-to-object and object-to-map parser</description>
<url>https://cychop.github.io/property-mapper</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<!-- Github properties -->
<github.user>cyChop</github.user>
<github.repo>property-mapper</github.repo>
<!-- Compilation settings -->
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Version management - test -->
<junit.version>4.12</junit.version>
<jdepend.version>2.9.1</jdepend.version>
</properties>
<dependencies>
<!--<![CDATA[
_____ _
|_ _|__ __| |_
| |/ -_|_-< _|
|_|\___/__/\__| ]]>-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jdepend</groupId>
<artifactId>jdepend</artifactId>
<version>${jdepend.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<!--<![CDATA[
_ _ _
/_\ | |__ ___ _ _| |_
/ _ \| '_ \/ _ \ || | _|
/_/ \_\_.__/\___/\_,_|\__| ]]>-->
<scm>
<url>https://github.com/${github.user}/${github.repo}</url>
<connection>scm:git:https://github.com/${github.user}/${github.repo}.git</connection>
<developerConnection>scm:git:[email protected]:${github.user}/${github.repo}.git</developerConnection>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/${github.user}/${github.repo}/issues</url>
</issueManagement>
<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/${github.user}/${github.repo}</url>
</ciManagement>
<organization>
<name>Keyboard Playing</name>
<url>https://keyboardplaying.org</url>
</organization>
<developers>
<developer>
<id>cyChop</id>
<name>Cyrille Chopelet</name>
<email>[email protected]</email>
<roles>
<role>developer</role>
</roles>
<timezone>+1</timezone>
<url>https://keyboardplaying.org</url>
</developer>
</developers>
</project>