gui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>gui</artifactId> <version>1.2.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.2.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.version>1.8</java.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>framework-bom</artifactId> <version>1.11.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>de.codecentric.centerdevice</groupId> <artifactId>centerdevice-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.osgi</groupId> <artifactId>org.osgi.core</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> </dependency> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>pegdown</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>webservice-utils</artifactId> </dependency> <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> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.4.0</version> <configuration> <instructions> <_dsannotations> org.daisy.pipeline.gui.GUIService, org.daisy.pipeline.gui.ServiceRegistry$ServiceBinder </_dsannotations> </instructions> </configuration> </plugin> </plugins> </build> <repositories> </repositories> <scm> <tag>v1.2.0</tag> </scm> </project>