-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpom.xml
More file actions
66 lines (59 loc) · 2.24 KB
/
pom.xml
File metadata and controls
66 lines (59 loc) · 2.24 KB
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"?>
<!--
~ Copyright (C) 2007-2022 Crafter Software Corporation. All Rights Reserved.
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License version 3 as published by
~ the Free Software Foundation.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.craftercms</groupId>
<artifactId>crafter-commons</artifactId>
<packaging>pom</packaging>
<name>Crafter Commons</name>
<description>Crafter Commons</description>
<url>https://github.com/craftercms/commons</url>
<scm>
<connection>scm:git:git://github.com/craftercms/commons</connection>
<developerConnection>scm:git:git://github.com/craftercms/commons</developerConnection>
<url>scm:git:git://github.com/craftercms/core</url>
</scm>
<parent>
<groupId>org.craftercms</groupId>
<artifactId>craftercms</artifactId>
<version>5.0.0-SNAPSHOT</version><!-- craftercms version flag -->
<relativePath/> <!-- lookup parent from repository -->
</parent>
<modules>
<module>utilities</module>
<module>security</module>
<module>mongo</module>
<module>audit</module>
<module>git</module>
<module>entitlements</module>
<module>validation</module>
<module>plugin</module>
<module>upgrade-manager</module>
</modules>
<distributionManagement>
<snapshotRepository>
<id>central-snapshots</id>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
</snapshotRepository>
<repository>
<id>github</id>
<name>GitHub Maven Packages</name>
<url>https://maven.pkg.github.com/craftercms/craftercms</url>
</repository>
</distributionManagement>
</project>