calimero-gui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.calimero</groupId> <artifactId>calimero-gui</artifactId> <version>2.3</version> </dependency>
<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> <parent> <groupId>com.github.calimero</groupId> <artifactId>calimero-parent</artifactId> <version>2.3</version> </parent> <artifactId>calimero-gui</artifactId> <name>Calimero GUI</name> <description>A simple graphical user interface for the Calimero tool collection</description> <scm> <url>https://github.com/calimero-project/calimero-gui.git</url> </scm> <url>https://github.com/calimero-project/calimero-gui</url> <licenses> <license> <name>GNU General Public License, version 2, with the Classpath Exception</name> <url>LICENSE.txt</url> </license> </licenses> <developers> <developer> <name>Boris Malinowsky</name> <email>b.malinowsky@gmail.com</email> </developer> </developers> <properties> <swt.groupId>org.eclipse.swt</swt.groupId> <swt.version>4.6.1</swt.version> </properties> <profiles> <profile> <id>osx</id> <activation> <os> <family>mac</family> </os> </activation> <properties> <swt.artifactId>org.eclipse.swt.cocoa.macosx.${os.arch}</swt.artifactId> </properties> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.4.0</version> <executions> <execution> <goals> <!-- exec forks the java process and lets us pass the -X arg --> <goal>exec</goal> </goals> </execution> </executions> <configuration> <executable>java</executable> <longClasspath>true</longClasspath> <arguments> <argument>-XstartOnFirstThread</argument> <argument>-classpath</argument> <classpath /> <argument>tuwien.auto.calimero.gui.SwtChecker</argument> </arguments> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>unix</id> <activation> <os> <family>unix</family> <name>!mac os x</name> </os> </activation> <properties> <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId> </properties> </profile> <profile> <id>unix-32</id> <activation> <os> <family>unix</family> <name>!mac os x</name> <arch>x86</arch> </os> </activation> <properties> <swt.artifactId>org.eclipse.swt.gtk.linux.${os.arch}</swt.artifactId> </properties> </profile> <profile> <id>windows</id> <activation> <os> <family>windows</family> </os> </activation> <properties> <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId> </properties> </profile> <profile> <id>windows-32</id> <activation> <os> <family>windows</family> <arch>x86</arch> </os> </activation> <properties> <swt.artifactId>org.eclipse.swt.win32.win32.${os.arch}</swt.artifactId> </properties> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <mainClass>tuwien.auto.calimero.gui.SwtChecker</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.0</version> <configuration> <overview>src/overview.html</overview> <author>false</author> <quiet>true</quiet> <archive> <manifestEntries> <Built-By>${packager}</Built-By> </manifestEntries> </archive> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.4.0</version> <executions> <execution> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <executable>java</executable> <longClasspath>true</longClasspath> <mainClass>tuwien.auto.calimero.gui.SwtChecker</mainClass> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.github.calimero</groupId> <artifactId>calimero-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.calimero</groupId> <artifactId>calimero-tools</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.github.calimero</groupId> <artifactId>calimero-rxtx</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${swt.groupId}</groupId> <artifactId>${swt.artifactId}</artifactId> <version>${swt.version}</version> <scope>compile</scope> </dependency> </dependencies> <repositories> <repository> <id>maven-eclipse-repo</id> <url>http://maven-eclipse.github.io/maven</url> </repository> <repository> <id>maven-eclipse-repo-dev</id> <url>http://maven-eclipse.github.io/dev-releases/maven</url> </repository> </repositories> </project>