6
6
7
7
<groupId >com.portfolionaire.realitycheck</groupId >
8
8
<artifactId >realitycheck</artifactId >
9
- <version >1.0-SNAPSHOT</version >
9
+ <version >0.1-SNAPSHOT</version >
10
+
11
+ <name >Reality Check</name >
12
+ <url >https://github.com/imetaxas/realitycheck</url >
13
+
14
+ <scm >
15
+ <url >https://github.com/imetaxas/realitycheck</url >
16
+ <connection >scm:git:git@github.com:imetaxas/realitycheck.git</connection >
17
+ <developerConnection >scm:git:git@github.com:imetaxas/realitycheck.git</developerConnection >
18
+ <tag >HEAD</tag >
19
+ </scm >
20
+
21
+ <issueManagement >
22
+ <url >https://github.com/imetaxas/realitycheck</url >
23
+ </issueManagement >
24
+
25
+ <ciManagement >
26
+ <system >Jenkins</system >
27
+ <url >https://travis-ci.org/imetaxas/realitycheck</url >
28
+ </ciManagement >
29
+
30
+ <description >https://github.com/imetaxas/realitycheck.git</description >
31
+
32
+ <parent >
33
+ <groupId >org.sonatype.oss</groupId >
34
+ <artifactId >oss-parent</artifactId >
35
+ <version >9</version >
36
+ </parent >
37
+
38
+ <licenses >
39
+ <license >
40
+ <name >The Apache Software License, Version 2.0</name >
41
+ <url >http://www.apache.org/licenses/LICENSE-2.0.txt</url >
42
+ <distribution >repo</distribution >
43
+ </license >
44
+ </licenses >
45
+
46
+ <developers >
47
+ <developer >
48
+ <id >imetaxas</id >
49
+ <name >Yani (Ioannis) Metaxas</name >
50
+ <email >imetaxas@gmail.com</email >
51
+ <url >http://yanimetaxas.info</url >
52
+ <roles >
53
+ <role >creator</role >
54
+ <role >developer</role >
55
+ </roles >
56
+ <timezone >+1</timezone >
57
+ </developer >
58
+ </developers >
10
59
11
60
<properties >
61
+ <java .version>1.8</java .version>
12
62
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
13
63
<github .global.server>github</github .global.server>
64
+ <arguments >-e</arguments >
14
65
</properties >
15
66
16
67
<build >
17
68
<pluginManagement >
18
69
<plugins >
70
+
19
71
<plugin >
20
72
<groupId >org.apache.maven.plugins</groupId >
21
73
<artifactId >maven-compiler-plugin</artifactId >
22
74
<configuration >
23
- <source >1.8 </source >
24
- <target >1.8 </target >
75
+ <source >${java.version} </source >
76
+ <target >${java.version} </target >
25
77
</configuration >
26
78
</plugin >
79
+
80
+ <!-- override version of GPG plugin to use new GPG signing features -->
81
+ <plugin >
82
+ <groupId >org.apache.maven.plugins</groupId >
83
+ <artifactId >maven-gpg-plugin</artifactId >
84
+ <version >1.6</version >
85
+ </plugin >
86
+ <plugin >
87
+ <groupId >org.apache.maven.plugins</groupId >
88
+ <artifactId >maven-release-plugin</artifactId >
89
+ <version >2.5.3</version >
90
+ </plugin >
91
+
27
92
<plugin >
28
93
<groupId >org.codehaus.mojo</groupId >
29
94
<artifactId >cobertura-maven-plugin</artifactId >
36
101
<check />
37
102
</configuration >
38
103
</plugin >
104
+
39
105
<plugin >
40
106
<groupId >org.eluder.coveralls</groupId >
41
107
<artifactId >coveralls-maven-plugin</artifactId >
47
113
</plugins >
48
114
</pluginManagement >
49
115
</build >
116
+
50
117
<dependencies >
118
+
51
119
<dependency >
52
120
<groupId >org.apache.commons</groupId >
53
121
<artifactId >commons-io</artifactId >
54
122
<version >1.3.2</version >
55
123
</dependency >
124
+
56
125
<dependency >
57
126
<groupId >junit</groupId >
58
127
<artifactId >junit</artifactId >
59
128
<version >4.12</version >
60
129
<scope >test</scope >
61
130
</dependency >
131
+
62
132
</dependencies >
63
133
</project >
0 commit comments