-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
158 lines (147 loc) · 4.76 KB
/
pom.xml
File metadata and controls
158 lines (147 loc) · 4.76 KB
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
<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>
<groupId>de.infomac.virtualcontrolsurfacelcd</groupId>
<artifactId>virtualcontrolsurfacelcd</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<aspectj.version>1.9.2</aspectj.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<java.source-target.version>1.8</java.source-target.version>
</properties>
<dependencies>
<dependency>
<groupId>curcuma</groupId>
<artifactId>CurcumaAppKit</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>curcuma</groupId>
<artifactId>CurcumaWidgetPlugIns</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jogamp.gluegen</groupId>
<artifactId>gluegen-rt-main</artifactId>
<version>2.3.2</version>
</dependency>
<dependency>
<groupId>org.jogamp.jogl</groupId>
<artifactId>jogl-all-main</artifactId>
<!-- <version>2.0.2</version> -->
<version>2.3.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.1</version>
</dependency>
<dependency>
<groupId>de.humatic</groupId>
<artifactId>mmj</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/mmj.jar</systemPath>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.11</version>
<configuration>
<!-- <showWeaveInfo>true</showWeaveInfo> -->
<source>${java.source-target.version}</source>
<target>${java.source-target.version}</target>
<Xlint>ignore</Xlint>
<complianceLevel>${java.source-target.version}</complianceLevel>
<encoding>${project.build.sourceEncoding}</encoding>
<!-- <verbose>true</verbose> -->
<!--<warn>constructorName,packageDefaultMethod,deprecation,maskedCatchBlocks,unusedLocals,unusedArguments,unusedImport</warn> -->
</configuration>
<executions>
<execution>
<!-- IMPORTANT -->
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjtools</artifactId>
<version>${aspectj.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<configuration>
<aspectLibraries>
<aspectLibrary>
<groupId>curcuma</groupId>
<artifactId>CurcumaKeyValueCoding</artifactId>
</aspectLibrary>
<aspectLibrary>
<groupId>curcuma</groupId>
<artifactId>CurcumaKeyValueObserving</artifactId>
</aspectLibrary>
<aspectLibrary>
<groupId>curcuma</groupId>
<artifactId>CurcumaKeyValueBinding</artifactId>
</aspectLibrary>
<aspectLibrary>
<groupId>curcuma</groupId>
<artifactId>CurcumaFoundation</artifactId>
</aspectLibrary>
<aspectLibrary>
<groupId>curcuma</groupId>
<artifactId>CurcumaAppKit</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
</plugin>
<plugin>
<groupId>sh.tak.appbundler</groupId>
<artifactId>appbundle-maven-plugin</artifactId>
<version>1.2.0</version>
<configuration>
<mainClass>de.ceruti.mackie.VirtualControlSurfaceLCD</mainClass>
<!-- <mainClass>de.ceruti.mackie.view.Stickie</mainClass> -->
<!-- For example <jrePath>/foo/bar/jre1.8.0_112.jre</jrePath> -->
<!-- <jrePath>${jre-folder}</jrePath> -->
<generateDiskImageFile>false</generateDiskImageFile>
<additionalBundledClasspathResources>
<fileSet>
<directory>${basedir}/lib</directory>
<includes>
<include>libmmj.jnilib</include>
<include>mmj.jar</include>
</includes>
</fileSet>
</additionalBundledClasspathResources>
<jvmOptions>
<jvmOption>-Djava.library.path=$APP_ROOT/Contents/Java/lib/</jvmOption>
<jvmOption>-Dapple.laf.useScreenMenuBar=false</jvmOption>
<jvmOption>-Dcom.apple.macos.useScreenMenuBar=false</jvmOption>
</jvmOptions>
<bundleName>VirtualControlSurfaceLCD</bundleName>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>