Installation - Allan-Jacobs/Swing-MVC GitHub Wiki

To start, setup a maven project with your IDE of choice, or from the command line.

This framework is currently in snapshot mode, so you will need to add the snapshot repository to your pom.xml.

<repositories>
    <repository>
        <id>snapshots-repo</id>
        <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        <releases><enabled>false</enabled></releases>
        <snapshots><enabled>true</enabled></snapshots>
    </repository>
</repositories>

Then add the dependency to your pom.xml

<dependencies>
    <dependency>
        <groupId>com.redstoneblocks.java</groupId>
        <artifactId>Swing-MVC</artifactId>
        <version>0.0.3-SNAPSHOT</version>
    </dependency>
</dependencies>

After installing the dependency, head over to one of our tutorials, such as the Single Screen Tutorial

⚠️ **GitHub.com Fallback** ⚠️