forked from dmx-systems/dmx-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
198 lines (190 loc) · 9.55 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<?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>
<name>DeepaMehta 4 Global</name>
<groupId>de.deepamehta</groupId>
<artifactId>deepamehta-global</artifactId>
<version>4.0.12-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>de.deepamehta</groupId>
<artifactId>deepamehta-parent</artifactId>
<version>2</version>
<relativePath>modules/dm4-parent/pom.xml</relativePath>
</parent>
<!-- Note: the dm4.database.path property is required by both, the 'run' and the 'neo4j' profile. -->
<!-- The other dm4.* properties are required by 'run' only. They are placed here for clarity. -->
<properties>
<dm4.database.path>${project.basedir}/deepamehta-db</dm4.database.path>
<dm4.filerepo.path></dm4.filerepo.path>
<dm4.filerepo.netfilter>127.0.0.1/32</dm4.filerepo.netfilter>
</properties>
<profiles>
<profile>
<id>run</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<org.osgi.service.http.port>8080</org.osgi.service.http.port>
<file.encoding>UTF-8</file.encoding>
<java.util.logging.config.file>
${project.basedir}/modules/dm4-distribution/conf/logging.properties
</java.util.logging.config.file>
<felix.log.level>1</felix.log.level>
<felix.fileinstall.dir>
<![CDATA[
${project.basedir}/modules/dm4-core/target,
${project.basedir}/modules/dm4-webservice/target,
${project.basedir}/modules/dm4-webclient/target,
${project.basedir}/modules/dm4-webbrowser/target,
${project.basedir}/modules/dm4-notes/target,
${project.basedir}/modules/dm4-contacts/target,
${project.basedir}/modules/dm4-workspaces/target,
${project.basedir}/modules/dm4-typeeditor/target,
${project.basedir}/modules/dm4-iconpicker/target,
${project.basedir}/modules/dm4-typesearch/target,
${project.basedir}/modules/dm4-topicmaps/target,
${project.basedir}/modules/dm4-files/target,
${project.basedir}/modules/dm4-filemanager/target,
${project.basedir}/modules/dm4-help/target,
${project.basedir}/modules/dm4-facets/target
]]>
<!-- not yet adapted to DeepaMehta 4.0 -->
<!--
${project.basedir}/modules/dm4-accesscontrol/target
-->
</felix.fileinstall.dir>
<!-- Watching only for jar files suppresses deployment of exploded bundles (which often fails). -->
<felix.fileinstall.filter>.*\\.jar</felix.fileinstall.filter>
<!-- Setting "noInitialDelay" to true causes *synchronous* bundle starts in the order the watch -->
<!-- directories are defined! Furthermore the STARTED framework event is eventually fired. Default -->
<!-- is noInitialDelay=false, which causes *asynchronous* bundle starts in arbitrary order. -->
<felix.fileinstall.noInitialDelay>false</felix.fileinstall.noInitialDelay>
<!-- To see any File Install logging set the level to at least 4. -->
<felix.fileinstall.log.level>0</felix.fileinstall.log.level>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.ops4j</groupId>
<artifactId>maven-pax-plugin</artifactId>
<configuration>
<deployPoms>
modules/dm4-provision/3rd-party-bundles/pom.xml,
modules/dm4-provision/felix-bundles/pom.xml
</deployPoms>
</configuration>
</plugin>
<!-- Deletes OSGi container configuration as created by Pax Runner -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<filesets>
<fileset>
<directory>runner</directory>
</fileset>
</filesets>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>all</id>
<modules>
<module>modules/dm4-core</module>
<module>modules/dm4-webservice</module>
<module>modules/dm4-webclient</module>
<module>modules/dm4-webbrowser</module>
<module>modules/dm4-notes</module>
<module>modules/dm4-contacts</module>
<module>modules/dm4-workspaces</module>
<module>modules/dm4-typeeditor</module>
<module>modules/dm4-iconpicker</module>
<module>modules/dm4-typesearch</module>
<module>modules/dm4-topicmaps</module>
<module>modules/dm4-files</module>
<module>modules/dm4-filemanager</module>
<module>modules/dm4-help</module>
<module>modules/dm4-facets</module>
<!-- POM projects -->
<!-- Note: modules/dm4-distribution is not listed here. -->
<!-- We don't want to build the distribution with every reactor build. -->
<module>modules/dm4-parent</module>
<module>modules/dm4-plugin-parent</module>
<module>modules/dm4-provision</module>
<!-- not yet adapted to DeepaMehta 4.0 -->
<!-- <module>modules/dm4-accesscontrol</module> -->
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<show>private</show>
<linksource>true</linksource>
<links>
<link>http://www.deepamehta.de/apidocs/neo4j-mehtagraph/0.9/</link>
<link>http://jersey.java.net/nonav/apidocs/1.8/jersey/</link>
<link>http://jettison.codehaus.org/apidocs/</link> <!-- version 1.2 -->
<link>http://www.osgi.org/javadoc/r4v401/</link>
</links>
<doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
<docletArtifact>
<groupId>org.umlgraph</groupId>
<artifactId>umlgraph</artifactId>
<version>5.6</version>
</docletArtifact>
<additionalparam>-collapsible -hide java.* -hide org.* -inferdepvis public -inferrel</additionalparam>
<useStandardDocletOptions>true</useStandardDocletOptions>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>neo4j</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2</version>
<goals>
<goal>java</goal>
</goals>
<configuration>
<includePluginDependencies>true</includePluginDependencies>
<mainClass>org.neo4j.shell.StartClient</mainClass>
<arguments>
<argument>-path=${dm4.database.path}</argument>
<argument>-v</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-shell</artifactId>
<version>1.2-1.2</version>
<!--version>1.3.M04</version-->
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-kernel</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
<scm>
<connection>scm:git:[email protected]:jri/deepamehta.git</connection>
</scm>
</project>