* [JAVA-13854] added parent module * [JAVA-13854] moved apache-tapestry(submodule) to web-modules(parent) * [JAVA-13854] moved bootique(submodule) to web-modules(parent) * [JAVA-13854] moved dropwizard(submodule) to web-modules(parent) * [JAVA-13854] moved blade(submodule) to web-modules(parent) * [JAVA-13854] moved java-lite(submodule) to web-modules(parent) * [JAVA-13854] moved jooby(submodule) to web-modules(parent) * [JAVA-13854] moved linkrest(submodule) to web-modules(parent) * [JAVA-13854] moved ninja(submodule) to web-modules(parent) * [JAVA-13854] moved ratpack(submodule) to web-modules(parent) * [JAVA-13854] moved resteasy(submodule) to web-modules(parent) * [JAVA-13854] moved restx(submodule) to web-modules(parent) * [JAVA-13854] moved spark-java(submodule) to web-modules(parent) * [JAVA-13854] moved vraptor(submodule) to web-modules(parent) * [JAVA-13854] delete modules that were moved * [JAVA-13854] * [JAVA-13854] * [JAVA-13854] delete ninja submodule + moved raml(submodule) to web-modules(parent) * [JAVA-13854] moved gwt(submodule) to web-modules(parent) * [JAVA-13854] moved jakarta-ee(submodule) to web-modules(parent) * [JAVA-13854] moved javax-servlets(submodule) to web-modules(parent) * [JAVA-13854] moved javax-servlets-2(submodule) to web-modules(parent) * [JAVA-13854] moved jee-7(submodule) to web-modules(parent) * [JAVA-13854] moved play-framework(not a module) to web-modules * [JAVA-13854] fix failing test * [JAVA-13854] moved struts-2(submodule) to web-modules(parent) * [JAVA-13854] moved wicket(submodule) to web-modules(parent) * [JAVA-13854] deleted modules that were moved to web-modules * JAVA-13854 Removed moved modules from the main pom.xml Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com> Co-authored-by: Dhawal Kapil <dhawalkapil@gmail.com>
		
			
				
	
	
		
			38 lines
		
	
	
		
			724 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			724 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| buildscript {
 | |
|   repositories {
 | |
|     jcenter()
 | |
|   }
 | |
|   dependencies {
 | |
|     classpath "io.ratpack:ratpack-gradle:1.5.4"
 | |
|     classpath "com.h2database:h2:1.4.193"
 | |
|   }
 | |
| }
 | |
| 
 | |
| if (!JavaVersion.current().java8Compatible) {
 | |
|   throw new IllegalStateException("Must be built with Java 8 or higher")
 | |
| }
 | |
| 
 | |
| apply plugin: "io.ratpack.ratpack-java"
 | |
| apply plugin: 'java'
 | |
| apply plugin: 'groovy'
 | |
| apply plugin: 'io.ratpack.ratpack-groovy'
 | |
| 
 | |
| repositories {
 | |
|   jcenter()
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|   compile ratpack.dependency('hikari')
 | |
|   compile 'com.h2database:h2:1.4.193'
 | |
|   testCompile 'junit:junit:4.11'
 | |
|   runtime "org.slf4j:slf4j-simple:1.7.21"
 | |
| }
 | |
| 
 | |
| test {
 | |
|     testLogging {
 | |
|         events 'started', 'passed'
 | |
|     }
 | |
| }
 | |
| 
 | |
| mainClassName = "com.baeldung.Application"
 |