forked from dawsonsystems/cling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
160 lines (139 loc) · 5.77 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
<?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>org.fourthline.cling</groupId>
<artifactId>cling</artifactId>
<version>2.0-SNAPSHOT</version>
</parent>
<name>Cling Workbench</name>
<artifactId>cling-workbench</artifactId>
<packaging>jar</packaging>
<build>
<plugins>
<!-- Package a standalone JAR with all dependencies -->
<plugin>
<groupId>org.dstovall</groupId>
<artifactId>onejar-maven-plugin</artifactId>
<executions>
<execution>
<id>workbench-standalone-jar</id>
<goals>
<goal>one-jar</goal>
</goals>
<configuration>
<mainClass>org.fourthline.cling.workbench.Workbench</mainClass>
<attachToBuild>true</attachToBuild>
<classifier>standalone</classifier>
<filename>${project.build.finalName}-standalone.jar</filename>
</configuration>
</execution>
<execution>
<id>workbench-bridge-cli-jar</id>
<goals>
<goal>one-jar</goal>
</goals>
<configuration>
<mainClass>org.fourthline.cling.workbench.bridge.Main</mainClass>
<attachToBuild>true</attachToBuild>
<classifier>bridge-cli</classifier>
<filename>${project.build.finalName}-bridge-cli.jar</filename>
</configuration>
</execution>
</executions>
</plugin>
<!-- Build an OS X application and disk image -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>osxappbundle-maven-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>org.fourthline.cling.workbench.Workbench</mainClass>
<iconFile>${basedir}/src/main/resources/WorkbenchIcon.icns</iconFile>
<jvmVersion>1.6+</jvmVersion>
<javaApplicationStub>${basedir}/../misc/JavaApplicationStub</javaApplicationStub>
</configuration>
</plugin>
<!-- Website lifecycle -->
<plugin>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<reportPlugins>
<!-- THESE IGNORE GLOBAL PLUGIN MANAGEMENT! -->
<!-- We want cross-referenced source code -->
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
</reportPlugins>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.fourthline.cling</groupId>
<artifactId>cling-support</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.fourthline.cling</groupId>
<artifactId>cling-bridge</artifactId>
<version>${project.version}</version>
<classifier>classes</classifier>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>${args4j.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se-core</artifactId>
<version>${weld.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-core</artifactId>
<version>${weld.version}</version>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>${javassist.version}</version>
</dependency>
<!-- Here you pick what logging system you really want to use -->
<dependency>
<groupId>org.slf4j</groupId>
<!-- Oh, I have an idea! There is one in every JVM classpath! -->
<artifactId>slf4j-jdk14</artifactId>
<!-- Has to be >= 1.5.5 because SLF4J is garbage -->
<version>${slf4j.version}</version>
</dependency>
<!-- TODO: http://seamframework.org/Community/WeldSEAndSlf4j
<dependency>
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se</artifactId>
<version>1.1.1.Final</version>
</dependency>
-->
<dependency>
<groupId>javax.ejb</groupId>
<artifactId>ejb-api</artifactId>
<version>${ejb.api.version}</version>
</dependency>
</dependencies>
</project>