Skip to content

Nopalin/Valkyrie-RCP

 
 

Repository files navigation

Valkyrie RCP

DISCLAIMER

I’m not the author of this framework, neither related to the author, so please thanks lievendoclo for his work.

What is it ?

A fork of Valkyrie RCP, which is itself an evolution of Spring Rich Client.

The Valkyrie documentation is available here.

Why ?

Because the original project seems to be dead :(

And so, what’s new ?

  • Updated dependency to Spring 3.1.1
  • Updated dependency to Spring Security 3.1.0
  • Fixed broken build for the manual
  • Removed “valkyrie-rcp-mydoggy” module because the dependencies were broken
  • Released a 1.0 version available through a Maven repository
  • Publish the Valkyrie documentation

How to get the released versions ?

Maven

Just add this to your pom.xml file:

The dependencies:

<dependency>
    <groupId>org.valkyriercp</groupId>
    <artifactId>valkyrie-rcp-core</artifactId>
    <version>1.0</version>
</dependency>

The repositories:

<repositories>
    <repository>
        <id>ekito-public-snapshots</id>
        <url>https://raw.github.com/Ekito/maven-repo/master/snapshots</url>
    </repository>
    <repository>
        <id>ekito-public-releases</id>
        <url>https://raw.github.com/Ekito/maven-repo/master/releases</url>
    </repository>
</repositories>

Gradle

The dependencies:

dependencies {
        compile group: 'org.valkyriercp', name:'valkyrie-rcp-core', version:'1.0'
}

The repository:

repositories {
    maven {
        url "https://raw.github.com/Ekito/maven-repo/master/releases/"
    }
}

I found a bug, what can I do ?

Feel free to fork this repo, and make a pull request. Ideally, write a test !

How to build

Just clone the repository, and then use a mvn install command.
The build was tested with Maven 3.0.3.

Continuous integration

The project is automatically built by BuildHive.

Greetings

Big thanks to lievendoclo for his work on this !