esox-gui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.goranstack.esox</groupId>
<artifactId>esox-gui</artifactId>
<version>2.2.0</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.goranstack.esox</groupId>
<artifactId>esox-parent</artifactId>
<version>2.2.0</version>
</parent>
<artifactId>esox-gui</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The GUI part of the framework for binding aspects of Swing components to aspects of models. </description>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>esox-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.miglayout</groupId>
<artifactId>miglayout</artifactId>
<version>3.7.2</version>
<type>jar</type>
<classifier>swing</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<type>jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>