-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpom.xml
More file actions
156 lines (156 loc) · 5.58 KB
/
pom.xml
File metadata and controls
156 lines (156 loc) · 5.58 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
<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.kanasansoft.WebSocketRemote</groupId>
<artifactId>WebSocketRemote</artifactId>
<name>WebSocketRemote</name>
<version>0.0.13-SNAPSHOT</version>
<properties>
<package.package-name>com.kanasansoft.WebSocketRemote</package.package-name>
<package.main-class>${package.package-name}.${name}</package.main-class>
<package.base-name>${name}-${version}</package.base-name>
<package.jar-name>${package.base-name}.jar</package.jar-name>
<package.exe-name>${package.base-name}.exe</package.exe-name>
<package.app-name>${package.base-name}.app</package.app-name>
</properties>
<scm>
<connection>scm:git:git@github.com:Kanasansoft/WebSocketRemote.git</connection>
<url>scm:git:git@github.com:Kanasansoft/WebSocketRemote.git</url>
<developerConnection>scm:git:git@github.com:Kanasansoft/WebSocketRemote.git</developerConnection>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ant-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<phase>package</phase>
<goals><goal>ant</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<debug>false</debug>
<optimize>true</optimize>
<!--
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<compilerArgument></compilerArgument>
-->
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>${package.main-class}</mainClass>
<packageName>${package.package-name}</packageName>
<addClasspath>true</addClasspath>
<!--
<addExtensions>true</addExtensions>
-->
<classpathPrefix>lib</classpathPrefix>
</manifest>
<manifestEntries>
<Built-By>Kanasansoft</Built-By>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>osxappbundle-maven-plugin</artifactId>
<version>1.0-alpha-2</version>
<configuration>
<mainClass>${package.main-class}</mainClass>
<jvmVersion>1.6+</jvmVersion>
<iconFile>target${file.separator}classes${file.separator}images${file.separator}macintosh.icns</iconFile>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals><goal>bundle</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.bluestemsoftware.open.maven.plugin</groupId>
<artifactId>launch4j-plugin</artifactId>
<version>1.5.0.0</version>
<executions>
<execution>
<phase>package</phase>
<goals><goal>launch4j</goal></goals>
<configuration>
<headerType>GUI</headerType>
<jar>target${file.separator}${package.jar-name}</jar>
<outfile>target${file.separator}${package.exe-name}</outfile>
<customProcName>${name}</customProcName>
<errTitle>${name}</errTitle>
<icon>target${file.separator}classes${file.separator}images${file.separator}windows.ico</icon>
<jre>
<minVersion>1.6.0</minVersion>
<maxHeapSize>1024</maxHeapSize>
</jre>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals><goal>attached</goal></goals>
<configuration>
<descriptors>
<descriptor>src${file.separator}main${file.separator}assembly${file.separator}bin.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>8.1.2.v20120308</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<version>8.1.2.v20120308</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>8.1.2.v20120308</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-websocket</artifactId>
<version>8.1.2.v20120308</version>
</dependency>
</dependencies>
</project>