4c383f99c7
- core: the main Getdown logic code - tools: code to create digest.txt & patch files - launcher: the standalone launcher/updater app - ant: the Ant task for creating digest.txt files This paves the way for a proper Jigsaw-ification of the Getdown code. I may further factor code out of getdown-launcher and into getdown-core to enable the use-case where an app embeds Getdown completely and does not use the launcher app/UI. That will also make it easier to create a JavaFX UI and retire the old Swing UI. This also moves the obsolete applet code into a separate applet module, which is merely a temporary holding area. It will be deleted in the next commit.
52 lines
1.6 KiB
XML
52 lines
1.6 KiB
XML
<?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>
|
|
<parent>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>getdown</artifactId>
|
|
<version>1.7.2-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>getdown-app</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Getdown Applet</name>
|
|
<description>The Getdown installer applet (obsolete)</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>getdown-launcher</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>java</groupId>
|
|
<artifactId>plugin</artifactId>
|
|
<version>1.5</version>
|
|
<scope>system</scope>
|
|
<systemPath>${plugin.jar.path}</systemPath>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<profiles>
|
|
<!-- finagling to deal with plugin.jar not being bundled with OpenJDK -->
|
|
<profile>
|
|
<id>standard-jdk</id>
|
|
<activation>
|
|
<file><exists>${java.home}/lib/plugin.jar</exists></file>
|
|
</activation>
|
|
<properties>
|
|
<plugin.jar.path>${java.home}/lib/plugin.jar</plugin.jar.path>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>icedtea-web</id>
|
|
<activation>
|
|
<file><exists>/usr/share/icedtea-web/plugin.jar</exists></file>
|
|
</activation>
|
|
<properties>
|
|
<plugin.jar.path>/usr/share/icedtea-web/plugin.jar</plugin.jar.path>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|