forked from Redpill-Linpro/alfresco-numbering
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
86 lines (86 loc) · 2.99 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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.redpill-linpro.alfresco</groupId>
<artifactId>alfresco-base</artifactId>
<version>1.1.1.22</version>
</parent>
<groupId>se.loftux.modules</groupId>
<artifactId>alfresco-numbering</artifactId>
<version>2.0.1</version>
<name>Alfresco Numbering</name>
<packaging>pom</packaging>
<properties>
<alfresco.groupId>org.alfresco</alfresco.groupId>
<alfresco.version>4.2.f</alfresco.version>
<java.source.version>1.8</java.source.version>
<java.target.version>1.8</java.target.version>
<rl.alfresco-numbering.group-id>se.loftux.modules</rl.alfresco-numbering.group-id>
</properties>
<modules>
<module>repo</module>
</modules>
<developers>
<developer>
<id>mars</id>
<name>Marcus Svartmark</name>
<email>marcus.svartmark (at) redpill-linpro.com</email>
<organization>Redpill Linpro AB</organization>
<organizationUrl>http://www.redpill-linpro.com</organizationUrl>
<roles>
<role>Founder</role>
<role>Architect</role>
<role>Developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<contributors>
<contributor>
<name>Bhagya Silva</name>
<organization>Loftux AB</organization>
<organizationUrl>https://loftux.com</organizationUrl>
<timezone>+1</timezone>
</contributor>
</contributors>
<organization>
<name>Redpill Linpro</name>
<url>http://www.redpill-linpro.com</url>
</organization>
<scm>
<connection>scm:[email protected]:Redpill-Linpro/alfresco-numbering.git</connection>
<developerConnection>scm:[email protected]:Redpill-Linpro/alfresco-numbering.git</developerConnection>
<url>scm:[email protected]:Redpill-Linpro/alfresco-numbering.git</url>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/Redpill-Linpro/alfresco-numbering/issues</url>
</issueManagement>
<repositories>
<repository>
<id>alfresco-public</id>
<url>https://artifacts.alfresco.com/nexus/content/groups/public</url>
</repository>
<repository>
<id>alfresco-public-snapshots</id>
<url>https://artifacts.alfresco.com/nexus/content/groups/public-snapshots</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
<repository>
<id>redpill-public</id>
<url>https://maven.redpill-linpro.com/nexus/content/groups/public</url>
</repository>
</repositories>
<profiles>
<profile>
<id>redpill-linpro-build</id>
<properties>
<rl.alfresco-numbering.group-id>org.redpill-linpro.alfresco.numbering</rl.alfresco-numbering.group-id>
</properties>
</profile>
</profiles>
</project>