forked from SKCraft/SKMCLauncher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependency-reduced-pom.xml
149 lines (148 loc) · 5.33 KB
/
dependency-reduced-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
<?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>
<groupId>com.sk89q</groupId>
<artifactId>mclauncher</artifactId>
<name>Year4000's Launcher</name>
<version>6.2.0.0</version>
<description>Year4000's Launcher for Minecraft</description>
<url>http://www.year4000.net</url>
<organization>
<name>Year4000</name>
<url>http://www.year4000.net/</url>
</organization>
<build>
<resources>
<resource>
<targetPath>resources</targetPath>
<directory>${basedir}/src/main/resources/</directory>
<includes>
<include>*.cer</include>
<include>*.xml</include>
<include>*.png</include>
</includes>
</resource>
<resource>
<targetPath>resources</targetPath>
<directory>${basedir}</directory>
<includes>
<include>NOTICE.txt</include>
</includes>
</resource>
</resources>
<finalName>Y4KLauncher</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
<manifest>
<mainClass>com.sk89q.mclauncher.Launcher</mainClass>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries />
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<minimizeJar>true</minimizeJar>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>osxappbundle-maven-plugin</artifactId>
<version>1.0-alpha-2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
<configuration>
<bundleName>${project.build.finalName}</bundleName>
<version>${project.version}</version>
<internetEnable>true</internetEnable>
<mainClass>com.sk89q.mclauncher.Launcher</mainClass>
<javaApplicationStub>${basedir}/src/main/resources/JavaApplicationStub</javaApplicationStub>
<jvmVersion>1.6+</jvmVersion>
<zipFile>${project.build.directory}/${project.build.finalName}.app.zip</zipFile>
<diskImageFile>${project.build.directory}/${project.build.finalName}.dmg</diskImageFile>
<iconFile>${basedir}/icon.icns</iconFile>
</configuration>
</plugin>
<plugin>
<groupId>org.bluestemsoftware.open.maven.plugin</groupId>
<artifactId>launch4j-plugin</artifactId>
<version>1.5.0.0</version>
<executions>
<execution>
<id>l4j-gui</id>
<phase>package</phase>
<goals>
<goal>launch4j</goal>
</goals>
<configuration>
<headerType>gui</headerType>
<outfile>${project.build.directory}/${project.build.finalName}.exe</outfile>
<jar>target/${project.build.finalName}.jar</jar>
<errTitle>${project.name} Error</errTitle>
<classPath>
<mainClass>com.sk89q.mclauncher.Launcher</mainClass>
</classPath>
<icon>${basedir}/icon.ico</icon>
<jre>
<minVersion>1.6.0</minVersion>
<initialHeapSize>32</initialHeapSize>
<maxHeapSize>1024</maxHeapSize>
</jre>
<versionInfo>
<fileVersion>${project.version}</fileVersion>
<txtFileVersion>${project.version}</txtFileVersion>
<productVersion>${project.version}</productVersion>
<txtProductVersion>${project.version}</txtProductVersion>
<fileDescription>${project.description}</fileDescription>
<copyright>${project.organization.name}</copyright>
<productName>${project.name}</productName>
<internalName>${project.name}</internalName>
<originalFilename>${project.build.finalName}.exe</originalFilename>
</versionInfo>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spout-repo</id>
<url>http://repo.spout.org</url>
</repository>
</repositories>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>