-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
93 lines (89 loc) · 3.44 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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>addons-exo-parent-pom</artifactId>
<groupId>org.exoplatform.addons</groupId>
<version>18-M06.1</version>
</parent>
<groupId>org.exoplatform.anti-malware</groupId>
<artifactId>anti-malware</artifactId>
<version>7.0.x-SNAPSHOT</version>
<packaging>pom</packaging>
<name>eXo Anti-Malware - Parent</name>
<properties>
<addon.exo.ecms.version>7.0.x-SNAPSHOT</addon.exo.ecms.version>
</properties>
<modules>
<module>anti-malware-services</module>
<module>anti-malware-webapp</module>
<module>anti-malware-packaging</module>
</modules>
<scm>
<connection>scm:git:git://github.com/exoplatform/anti-malware.git</connection>
<developerConnection>scm:git:ssh://[email protected]/exoplatform/anti-malware.git</developerConnection>
<url>https://github.com/exoplatform/anti-malware</url>
<tag>HEAD</tag>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.exoplatform.ecms</groupId>
<artifactId>ecms</artifactId>
<version>${addon.exo.ecms.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>anti-malware-services</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>anti-malware-webapp</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
<type>war</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>anti-malware-packaging</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
<type>war</type>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>project-repositories</id>
<activation>
<property>
<name>!skip-project-repositories</name>
</property>
</activation>
<repositories>
<repository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>repository.exoplatform.org</id>
<url>https://repository.exoplatform.org/public</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>repository.exoplatform.org</id>
<url>https://repository.exoplatform.org/public</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
</project>