├── .gitignore ├── README.md ├── annotations └── ratpack │ └── ratpack │ ├── error │ ├── annotations.xml │ └── internal │ │ └── annotations.xml │ ├── event │ └── internal │ │ └── annotations.xml │ ├── exec │ ├── annotations.xml │ └── internal │ │ └── annotations.xml │ ├── file │ ├── annotations.xml │ └── internal │ │ └── annotations.xml │ ├── form │ ├── annotations.xml │ └── internal │ │ └── annotations.xml │ ├── func │ └── annotations.xml │ ├── guice │ ├── annotations.xml │ └── internal │ │ └── annotations.xml │ ├── handling │ ├── annotations.xml │ └── internal │ │ └── annotations.xml │ ├── http │ ├── annotations.xml │ ├── client │ │ ├── annotations.xml │ │ └── internal │ │ │ └── annotations.xml │ └── internal │ │ └── annotations.xml │ ├── launch │ ├── annotations.xml │ └── internal │ │ └── annotations.xml │ ├── parse │ └── annotations.xml │ ├── path │ ├── annotations.xml │ └── internal │ │ └── annotations.xml │ ├── registry │ ├── annotations.xml │ └── internal │ │ └── annotations.xml │ ├── reload │ └── internal │ │ └── annotations.xml │ ├── render │ ├── annotations.xml │ └── internal │ │ └── annotations.xml │ ├── server │ ├── annotations.xml │ └── internal │ │ └── annotations.xml │ ├── ssl │ └── annotations.xml │ ├── util │ ├── annotations.xml │ └── internal │ │ └── annotations.xml │ └── websocket │ ├── annotations.xml │ └── internal │ └── annotations.xml ├── gradle ├── idea.gradle ├── idea │ ├── codeStyleSettings.xml │ └── gradleSettings.xml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main ├── kotlin │ └── ratpack │ │ └── example │ │ └── kotlin │ │ ├── Helpers.kt │ │ ├── LoggingHandler.kt │ │ ├── Main.kt │ │ ├── MyHandler.kt │ │ ├── MyModule.kt │ │ ├── MyService.kt │ │ └── MyServiceImpl.kt └── resources │ └── log4j2.xml ├── ratpack ├── .ratpack └── assets │ └── images │ ├── logo.png │ └── test.txt └── test └── kotlin └── ratpack └── example └── kotlin ├── SiteSpec.kt └── TestHelpers.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/README.md -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/error/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/error/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/error/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/error/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/event/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/event/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/exec/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/exec/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/exec/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/exec/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/file/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/file/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/file/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/file/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/form/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/form/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/form/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/form/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/func/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/func/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/guice/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/guice/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/guice/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/guice/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/handling/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/handling/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/handling/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/handling/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/http/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/http/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/http/client/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/http/client/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/http/client/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/http/client/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/http/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/http/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/launch/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/launch/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/launch/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/launch/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/parse/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/parse/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/path/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/path/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/path/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/path/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/registry/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/registry/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/registry/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/registry/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/reload/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/reload/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/render/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/render/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/render/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/render/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/server/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/server/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/server/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/server/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/ssl/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/ssl/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/util/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/util/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/util/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/util/internal/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/websocket/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/websocket/annotations.xml -------------------------------------------------------------------------------- /annotations/ratpack/ratpack/websocket/internal/annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/annotations/ratpack/ratpack/websocket/internal/annotations.xml -------------------------------------------------------------------------------- /gradle/idea.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/gradle/idea.gradle -------------------------------------------------------------------------------- /gradle/idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/gradle/idea/codeStyleSettings.xml -------------------------------------------------------------------------------- /gradle/idea/gradleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/gradle/idea/gradleSettings.xml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/kotlin/ratpack/example/kotlin/Helpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/src/main/kotlin/ratpack/example/kotlin/Helpers.kt -------------------------------------------------------------------------------- /src/main/kotlin/ratpack/example/kotlin/LoggingHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/src/main/kotlin/ratpack/example/kotlin/LoggingHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/ratpack/example/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/src/main/kotlin/ratpack/example/kotlin/Main.kt -------------------------------------------------------------------------------- /src/main/kotlin/ratpack/example/kotlin/MyHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/src/main/kotlin/ratpack/example/kotlin/MyHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/ratpack/example/kotlin/MyModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/src/main/kotlin/ratpack/example/kotlin/MyModule.kt -------------------------------------------------------------------------------- /src/main/kotlin/ratpack/example/kotlin/MyService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/src/main/kotlin/ratpack/example/kotlin/MyService.kt -------------------------------------------------------------------------------- /src/main/kotlin/ratpack/example/kotlin/MyServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/src/main/kotlin/ratpack/example/kotlin/MyServiceImpl.kt -------------------------------------------------------------------------------- /src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /src/ratpack/.ratpack: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ratpack/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/src/ratpack/assets/images/logo.png -------------------------------------------------------------------------------- /src/ratpack/assets/images/test.txt: -------------------------------------------------------------------------------- 1 | text asset 2 | -------------------------------------------------------------------------------- /src/test/kotlin/ratpack/example/kotlin/SiteSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/src/test/kotlin/ratpack/example/kotlin/SiteSpec.kt -------------------------------------------------------------------------------- /src/test/kotlin/ratpack/example/kotlin/TestHelpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratpack/example-ratpack-gradle-kotlin-app/HEAD/src/test/kotlin/ratpack/example/kotlin/TestHelpers.kt --------------------------------------------------------------------------------