-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
113 lines (102 loc) · 3.71 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
<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>com.github.jmchilton</groupId>
<artifactId>JGalaxy</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>JGalaxy</name>
<description>
A Java/swing frontend for Galaxy (galaxyproject.org).
</description>
<url>https://github.com/jmchilton/jgalaxy</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo.webstart</groupId>
<artifactId>webstart-maven-plugin</artifactId>
<version>1.0-beta-2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jnlp-inline</goal> <!-- use jnlp, jnlp-inline or jnlp-single as appropriate -->
</goals>
</execution>
</executions>
<configuration>
<jnlp>
<outputFile>jgalaxy.jnlp</outputFile> <!-- defaults to launch.jnlp -->
<mainClass>com.github.jmchilton.jgalaxy.JGalaxy</mainClass>
</jnlp>
<makeArchive>true</makeArchive>
<pack200>true</pack200>
<gzip>true</gzip>
<outputJarVersions>false</outputJarVersions>
<!--
Create keystore with key for jgalaxy:
% keytool -genkey -alias jgalaxy -keystore $HOME/jgalaxy.jks
Edit ~/.m2/settings.xml.
Add profile uses-jgalaxy.key
<profiles>
<profile>
<id>uses-jgalaxy-key</id>
<properties>
<jgalaxy.key.keystore>${user.home}/jgalaxy.jks</jgalaxy.key.keystore>
<jgalaxy.key.keypassword>XXX</jgalaxy.key.keypassword>
<jgalaxy.key.storepassword>XXX</jgalaxy.key.storepassword>
<jgalaxy.key.alias>jgalaxy</jgalaxy.key.alias>
</properties>
</profile>
</profiles>
Enable it with -Pusers-jgalaxy-key or add to activeProfiles.
<activeProfiles>
<activeProfile>uses-jgalaxy-key</activeProfile>
</activeProfiles>
-->
<sign>
<keystore>${jgalaxy.key.keystore}</keystore>
<keypass>${jgalaxy.key.keypassword}</keypass>
<storepass>${jgalaxy.key.storepassword}</storepass>
<storetype>jks</storetype>
<alias>${jgalaxy.key.alias}</alias>
<verify>true</verify>
</sign>
<verbose>true</verbose>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.github.jmchilton.blend4j</groupId>
<artifactId>blend4j</artifactId>
<version>0.1-alpha-1</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>14.0.1</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.mojo.webstart</groupId>
<artifactId>webstart-jnlp-servlet</artifactId>
<version>1.0-6.0-02_ea_b02</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>