This repository has been archived by the owner on Feb 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
pom.xml
81 lines (69 loc) · 3.04 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
<!--
Copyright 2011 Normation SAS
This file is part of Rudder.
Rudder is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
In accordance with the terms of section 7 (7. Additional Terms.) of
the GNU General Public License version 3, the copyright holders add
the following Additional permissions:
Notwithstanding to the terms of section 5 (5. Conveying Modified Source
Versions) and 6 (6. Conveying Non-Source Forms.) of the GNU General
Public License version 3, when you create a Related Module, this
Related Module is not considered as a part of the work and may be
distributed under the license agreement of your choice.
A "Related Module" means a set of sources files including their
documentation that, without modification of the Source Code, enables
supplementary functions or services in addition to those offered by
the Software.
Rudder 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 Rudder. If not, see <http://www.gnu.org/licenses/>.
-->
<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>
<groupId>com.normation.inventory</groupId>
<artifactId>inventory-parent</artifactId>
<packaging>pom</packaging>
<parent>
<groupId>com.normation</groupId>
<artifactId>parent-pom</artifactId>
<version>5.1.0~alpha1-SNAPSHOT</version>
</parent>
<description>
This is the parent project for LDAP Inventory
It defines two main submodule: one for all
general data structure and services defined for
inventory, and one which managed provisioning.
</description>
<modules>
<!-- Domain definition, not related with any backend-->
<module>inventory-api</module>
<!-- Persistance service and implementation for LDAP -->
<module>inventory-repository</module>
<!-- Provisionning services and data structures -->
<module>inventory-provisioning-core</module>
<!-- Fusion Inventory parsing -->
<module>inventory-fusion</module>
<!-- Default implementation for a provisionning WebService. -->
<module>inventory-provisioning-web</module>
</modules>
<repositories>
<repository>
<id>rudder-release</id>
<url>http://www.rudder-project.org/maven-releases/</url>
<layout>default</layout>
<snapshots><enabled>false</enabled></snapshots>
</repository>
<repository>
<id>rudder-snapshot</id>
<url>http://www.rudder-project.org/maven-snapshots/</url>
<layout>default</layout>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
</project>