gui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>gui</artifactId> <version>1.3.0</version> </dependency>
<?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>org.daisy.pipeline</groupId> <artifactId>framework-parent</artifactId> <version>1.0.2-SNAPSHOT</version> </parent> --> <parent> <groupId>org.daisy</groupId> <artifactId>daisy</artifactId> <version>4</version> <relativePath /> </parent> <groupId>org.daisy.pipeline</groupId> <artifactId>gui</artifactId> <packaging>bundle</packaging> <version>1.3.0</version> <name>gui</name> <description>A lightweight cross-platform GUI for the Pipeline2</description> <url>https://github.com/daisy-consortium/pipeline-gui</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.source.version>1.8</java.source.version> <!-- if we change this to 9 we also have to change target to 9 --> <java.target.version>1.8</java.target.version> <javafx.version>11.0.1</javafx.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>framework-bom</artifactId> <version>1.14.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>de.jangassen</groupId> <artifactId>nsmenufx</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>framework-core</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>updater-wrapper</artifactId> </dependency> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>pegdown</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>ds-to-spi-runtime</artifactId> <version>1.1.0</version> <scope>provided</scope> </dependency> <!-- test dependencies --> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>${java.source.version}</source> <target>${java.target.version}</target> </configuration> </plugin> <plugin> <groupId>org.daisy.pipeline.build</groupId> <artifactId>ds-to-spi-maven-plugin</artifactId> <version>1.1.0</version> <executions> <execution> <id>generate-spi-classes</id> <phase>generate-sources</phase> <goals> <goal>generate-spi-classes</goal> </goals> <configuration> <includes> org.daisy.pipeline.gui.GUIService, org.daisy.pipeline.gui.ServiceRegistry$ServiceBinder </includes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>4.1.0</version> <configuration> <instructions> <_dsannotations> org.daisy.pipeline.gui.GUIService, org.daisy.pipeline.gui.ServiceRegistry$ServiceBinder </_dsannotations> <Import-Package>!org.daisy.common.spi,*</Import-Package> </instructions> <archive> <manifest> <mainClass>org.daisy.pipeline.gui.GUIService</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> </build> <profiles> <profile> <activation> <jdk>[11,)</jdk> </activation> <dependencies> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-base</artifactId> <version>${javafx.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-graphics</artifactId> <version>${javafx.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> <version>${javafx.version}</version> <scope>provided</scope> </dependency> </dependencies> </profile> </profiles> <repositories> </repositories> <scm> <tag>v1.3.0</tag> </scm> </project>