-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpom.xml
More file actions
76 lines (67 loc) · 2.33 KB
/
pom.xml
File metadata and controls
76 lines (67 loc) · 2.33 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
67
68
69
70
71
72
73
74
75
76
<?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-social-parent</artifactId>
<name>Crafter Social</name>
<description>Crafter Social</description>
<url>https://github.com/craftercms/social</url>
<packaging>pom</packaging>
<scm>
<connection>scm:git:git://github.com/craftercms/social</connection>
<developerConnection>scm:git:git://github.com/craftercms/social</developerConnection>
<url>scm:git:git://github.com/craftercms/social</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>virus-scanner</module>
<module>server</module>
<module>admin</module>
</modules>
<profiles>
<profile>
<id>migrationTool</id>
<activation>
<property>
<name>with-migration-tool</name>
<value>true</value>
</property>
</activation>
<modules>
<module>migration</module>
</modules>
</profile>
</profiles>
<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>