-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
104 lines (92 loc) · 3.22 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
92
93
94
95
96
97
98
99
100
101
102
103
104
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.reficio</groupId>
<artifactId>maven-skin</artifactId>
<packaging>jar</packaging>
<version>1.0.0</version>
<name>maven-skin</name>
<url>http://www.reficio.org</url>
<description>Maven Skin for Reficio Project Family</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<inceptionYear>2012</inceptionYear>
<developers>
<developer>
<id>tom.bujok</id>
<name>Tom Bujok</name>
<email>[email protected]</email>
<roles>
<role>project lead</role>
<role>developer</role>
</roles>
<organization>Reficio</organization>
<organizationUrl>www.reficio.org</organizationUrl>
<timezone>+1</timezone>
</developer>
</developers>
<issueManagement>
<system>github</system>
<url>https://github.com/reficio/maven-skin/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git://github.com/reficio/maven-skin.git</connection>
<developerConnection>scm:git:[email protected]:reficio/maven-skin.git</developerConnection>
<url>http://github.com/reficio/maven-skin</url>
</scm>
<ciManagement>
<system>jenkins</system>
<url>https://reficio.ci.cloudbees.com/job/maven-skin/</url>
</ciManagement>
<distributionManagement>
<repository>
<id>reficio</id>
<name>Reficio Maven Repository</name>
<url>scp://${reficio.server}/var/www/repo/maven</url>
</repository>
</distributionManagement>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.2</version>
</extension>
</extensions>
</build>
<profiles>
<profile>
<id>gpg</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>**/*.asc</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>