ArcBees/GWTP


A complete model-view-presenter framework to simplify your next GWT project.

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.ArcBees:GWTP:'
	}
	dependencies {
		implementation("com.github.ArcBees:GWTP:")
	}
	<dependency>
	    <groupId>com.github.ArcBees</groupId>
	    <artifactId>GWTP</artifactId>
	    <version></version>
	</dependency>

                            
    libraryDependencies += "com.github.ArcBees" % "GWTP" % ""
        
        

                            
    :dependencies [[com.github.ArcBees/GWTP ""]]
        
        

Readme


GWTP

goo-teepee A complete model-view-presenter framework to simplify your next GWT project.

Enterprise Support

Get high quality support through ArcBees.

  • <a href="http://gwtp.arcbees.com">Enterprise Support Features</a>
  • <a href="http://www.arcbees.com/en/#!/support">Buy Enterprise Support</a>

Reference

Plugins

Community

Maven

Downloads

Current Release

1.6 - Released on 17 January 2017

Current Snapshot

2.0-SNAPSHOT

Demos

  • GWTP Samples Project Home

    <table> <tr> <th>Sample</th> <th>Demo</th> <th>Source</th> </tr> <tr> <th>Basic</th> <td><a href="http://gwtp-sample-basic.appspot.com">AppEngine Demo</a></td> <td><a href="https://github.com/ArcBees/GWTP-Samples/tree/master/gwtp-samples/gwtp-sample-basic">Source</a></td> </tr> <tr> <th>Basic Spring</th> <td><a href="http://gwtp-sample-basic-spring.appspot.com">AppEngine Demo</a></td> <td><a href="https://github.com/ArcBees/GWTP-Samples/tree/master/gwtp-samples/gwtp-sample-basic-spring">Source</a></td> </tr> <tr> <th>Mobile</th> <td><a href="http://gwtp-sample-mobile.appspot.com">AppEngine Demo</a></td> <td><a href="https://github.com/ArcBees/GWTP-Samples/tree/master/gwtp-samples/gwtp-sample-mobile">Source</a></td> </tr> <tr> <th>Nested</th> <td><a href="http://gwtp-sample-nested.appspot.com">AppEngine Demo</a></td> <td><a href="https://github.com/ArcBees/GWTP-Samples/tree/master/gwtp-samples/gwtp-sample-nested">Source</a></td> </tr> <tr> <th>Tabs</th> <td><a href="http://gwtp-sample-tab.appspot.com">AppEngine Demo</a></td> <td><a href="https://github.com/ArcBees/GWTP-Samples/tree/master/gwtp-samples/gwtp-sample-tab">Source</a></td> </tr> </table>

Implementers

Javadocs

License

Thanks to

Atlassian