-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
59 lines (55 loc) · 2.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
<?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>
<groupId>net.sf.m-m-m</groupId>
<artifactId>mmm</artifactId>
<version>2.0.0</version>
<relativePath>../mmm/mmm-parent/pom.xml</relativePath>
</parent>
<artifactId>mmm-multimedia</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>multimedia</name>
<description>The actual multi-media-manager based on mature-modular-metaframework.</description>
<properties>
<java.version>1.8</java.version>
<mmm.client.version>1.0.0-SNAPSHOT</mmm.client.version>
<mmm.persistence.version>1.0.1-SNAPSHOT</mmm.persistence.version>
</properties>
<modules>
<module>mmm-app</module>
<module>mmm-data</module>
<module>mmm-upnp</module>
<!-- UIT (UI-Toolkit) is just dead code. It is the predecessor of mmm-client-ui-widget but still
contains code that is not ported (Swing and SWT) but might be of interest some day for mmm-client-ui-widget-->
<!--<module>mmm-uit</module>-->
<module>mmm-dragome</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- BOM of OASP4J -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>mmm-client-bom</artifactId>
<version>${mmm.client.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>mmm-persistence-bom</artifactId>
<version>${mmm.persistence.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>mmm-util-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>