├── .gitignore ├── README.adoc ├── benchmark.sh ├── helidon-se-reactive ├── .dockerignore ├── Dockerfile ├── Dockerfile.jlink ├── Dockerfile.native ├── README.md ├── app.yaml ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── helidon │ │ │ └── se │ │ │ └── reactive │ │ │ ├── Application.java │ │ │ ├── movies │ │ │ ├── Actor.java │ │ │ ├── Movie.java │ │ │ ├── MovieRepository.java │ │ │ ├── MovieService.java │ │ │ ├── PeopleRepository.java │ │ │ ├── PeopleService.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ │ │ ├── package-info.java │ │ │ └── support │ │ │ └── Neo4jHealthCheck.java │ └── resources │ │ ├── application.yaml │ │ └── logging.properties │ └── test │ └── java │ └── org │ └── neo4j │ └── examples │ └── jvm │ └── helidon │ └── se │ └── reactive │ └── ApplicationTest.java ├── micronaut-imperative ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── README.md ├── micronaut-cli.yml ├── mvnw ├── mvnw.bat ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── micronaut │ │ │ └── imperative │ │ │ ├── Application.java │ │ │ ├── movies │ │ │ ├── Actor.java │ │ │ ├── Movie.java │ │ │ ├── MovieRepository.java │ │ │ ├── MoviesController.java │ │ │ ├── PeopleController.java │ │ │ ├── PeopleRepository.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ │ │ └── support │ │ │ └── DefaultLivenessIndicator.java │ └── resources │ │ ├── META-INF │ │ └── native-image │ │ │ └── native-image.properties │ │ ├── application.yml │ │ └── logback.xml │ └── test │ └── java │ └── org │ └── neo4j │ └── examples │ └── jvm │ └── micronaut │ └── imperative │ └── MicronautReactiveTest.java ├── micronaut-reactive ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── README.md ├── micronaut-cli.yml ├── mvnw ├── mvnw.bat ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── micronaut │ │ │ └── reactive │ │ │ ├── Application.java │ │ │ ├── movies │ │ │ ├── Actor.java │ │ │ ├── Movie.java │ │ │ ├── MovieRepository.java │ │ │ ├── MoviesController.java │ │ │ ├── PeopleController.java │ │ │ ├── PeopleRepository.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ │ │ └── support │ │ │ └── DefaultLivenessIndicator.java │ └── resources │ │ ├── META-INF │ │ └── native-image │ │ │ └── native-image.properties │ │ ├── application.yml │ │ └── logback.xml │ └── test │ └── java │ └── org │ └── neo4j │ └── examples │ └── jvm │ └── micronaut │ └── reactive │ └── MicronautReactiveTest.java ├── quarkus-imperative ├── .dockerignore ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.fast-jar │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── quarkus │ │ │ └── imperative │ │ │ ├── Application.java │ │ │ └── movies │ │ │ ├── Actor.java │ │ │ ├── Movie.java │ │ │ ├── MovieRepository.java │ │ │ ├── MovieResource.java │ │ │ ├── PeopleRepository.java │ │ │ ├── PeopleResource.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── org │ └── neo4j │ └── examples │ └── jvm │ └── quarkus │ └── imperative │ └── movies │ ├── EmbeddedNeo4jTestResource.java │ └── PeopleRepositoryTest.java ├── quarkus-ogm ├── .dockerignore ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ └── main │ ├── docker │ ├── Dockerfile.jvm │ └── Dockerfile.native │ ├── java │ └── org │ │ └── neo4j │ │ └── examples │ │ └── jvm │ │ └── quarkus │ │ └── ogm │ │ ├── Application.java │ │ └── movies │ │ ├── Actor.java │ │ ├── Movie.java │ │ ├── MovieRepository.java │ │ ├── MovieResource.java │ │ ├── PeopleRepository.java │ │ ├── PeopleResource.java │ │ └── Person.java │ └── resources │ └── application.properties ├── quarkus-reactive ├── .dockerignore ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── docker │ │ ├── Dockerfile.fast-jar │ │ ├── Dockerfile.jvm │ │ └── Dockerfile.native │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── quarkus │ │ │ └── reactive │ │ │ ├── Application.java │ │ │ └── movies │ │ │ ├── Actor.java │ │ │ ├── Movie.java │ │ │ ├── MovieRepository.java │ │ │ ├── MovieResource.java │ │ │ ├── PeopleRepository.java │ │ │ ├── PeopleResource.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── org │ └── neo4j │ └── examples │ └── jvm │ └── quarkus │ └── reactive │ └── movies │ ├── EmbeddedNeo4jTestResource.java │ └── PeopleRepositoryTest.java ├── runTck.sh ├── spring-boot23-with-sdn-ogm ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── spring │ │ │ └── data │ │ │ └── imperative │ │ │ ├── Application.java │ │ │ └── movies │ │ │ ├── Actor.java │ │ │ ├── Movie.java │ │ │ ├── MovieRepository.java │ │ │ ├── MoviesController.java │ │ │ ├── PeopleController.java │ │ │ ├── PeopleRepository.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── org │ └── neo4j │ └── examples │ └── jvm │ └── spring │ └── data │ └── imperative │ └── ApplicationIT.java ├── spring-boot24-with-sdn-ogm ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── spring │ │ │ └── data │ │ │ └── imperative │ │ │ ├── Application.java │ │ │ ├── movies │ │ │ ├── Actor.java │ │ │ ├── Movie.java │ │ │ ├── MovieRepository.java │ │ │ ├── MoviesController.java │ │ │ ├── PeopleController.java │ │ │ ├── PeopleRepository.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ │ │ └── support │ │ │ └── Neo4jOGMConfig.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── org │ └── neo4j │ └── examples │ └── jvm │ └── spring │ └── data │ └── imperative │ ├── ApplicationIT.java │ └── movies │ └── PeopleRepositoryTest.java ├── spring-boot26-with-sdn-ogm ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── spring │ │ │ └── data │ │ │ └── imperative │ │ │ ├── Application.java │ │ │ ├── movies │ │ │ ├── Actor.java │ │ │ ├── Movie.java │ │ │ ├── MovieRepository.java │ │ │ ├── MoviesController.java │ │ │ ├── PeopleController.java │ │ │ ├── PeopleRepository.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ │ │ └── support │ │ │ └── Neo4jOGMConfig.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── org │ └── neo4j │ └── examples │ └── jvm │ └── spring │ └── data │ └── imperative │ ├── ApplicationIT.java │ └── movies │ └── PeopleRepositoryTest.java ├── spring-boot27-with-sdn-ogm ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── spring │ │ │ └── data │ │ │ └── imperative │ │ │ ├── Application.java │ │ │ ├── movies │ │ │ ├── Actor.java │ │ │ ├── Movie.java │ │ │ ├── MovieRepository.java │ │ │ ├── MoviesController.java │ │ │ ├── PeopleController.java │ │ │ ├── PeopleRepository.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ │ │ └── support │ │ │ └── Neo4jOGMConfig.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── org │ └── neo4j │ └── examples │ └── jvm │ └── spring │ └── data │ └── imperative │ ├── ApplicationIT.java │ └── movies │ ├── MovieRepositoryTest.java │ └── PeopleRepositoryTest.java ├── spring-data-imperative-module-path ├── .gitignore ├── .mvn │ ├── jvm.config │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── Dockerfile ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ └── main │ ├── java │ ├── module-info.java │ └── org │ │ └── neo4j │ │ └── examples │ │ └── jvm │ │ └── spring │ │ └── data │ │ └── imperative │ │ ├── Application.java │ │ └── movies │ │ ├── Actor.java │ │ ├── Movie.java │ │ ├── MovieRepository.java │ │ ├── MoviesController.java │ │ ├── PeopleController.java │ │ ├── PeopleRepository.java │ │ ├── Person.java │ │ └── PersonDetails.java │ └── resources │ └── application.properties ├── spring-data-imperative-native ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── spring │ │ │ └── data │ │ │ └── imperative │ │ │ ├── Application.java │ │ │ └── movies │ │ │ ├── Actor.java │ │ │ ├── Movie.java │ │ │ ├── MovieRepository.java │ │ │ ├── MoviesController.java │ │ │ ├── PeopleController.java │ │ │ ├── PeopleRepository.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── org │ └── neo4j │ └── examples │ └── jvm │ └── spring │ └── data │ └── imperative │ └── ApplicationIT.java ├── spring-data-imperative ├── .gitignore ├── .mvn │ ├── jvm.config │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── spring │ │ │ └── data │ │ │ └── imperative │ │ │ ├── Application.java │ │ │ ├── Neo4jConfig.java │ │ │ └── movies │ │ │ ├── Actor.java │ │ │ ├── ExtMovieRepository.java │ │ │ ├── ExtMovieRepositoryImpl.java │ │ │ ├── Movie.java │ │ │ ├── MovieDescription.java │ │ │ ├── MovieRepository.java │ │ │ ├── MoviesController.java │ │ │ ├── PeopleController.java │ │ │ ├── PeopleRepository.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── org │ └── neo4j │ └── examples │ └── jvm │ └── spring │ └── data │ └── imperative │ ├── ApplicationIT.java │ └── movies │ └── RepositoryTests.java ├── spring-data-reactive ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── spring │ │ │ └── data │ │ │ └── reactive │ │ │ ├── Application.java │ │ │ └── movies │ │ │ ├── Actor.java │ │ │ ├── Movie.java │ │ │ ├── MovieRepository.java │ │ │ ├── MoviesController.java │ │ │ ├── PeopleController.java │ │ │ ├── PeopleRepository.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── org │ └── neo4j │ └── examples │ └── jvm │ └── spring │ └── data │ └── reactive │ ├── ApplicationIT.java │ └── movies │ └── PeopleRepositoryTest.java ├── spring-plain-imperative ├── .gitignore ├── .mvn │ ├── jvm.config │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── spring │ │ │ └── plain │ │ │ └── imperative │ │ │ ├── Application.java │ │ │ └── movies │ │ │ ├── Actor.java │ │ │ ├── Movie.java │ │ │ ├── MovieRepository.java │ │ │ ├── MoviesController.java │ │ │ ├── PeopleController.java │ │ │ ├── PeopleRepository.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── org │ └── neo4j │ └── examples │ └── jvm │ └── spring │ └── plain │ └── imperative │ ├── ApplicationIT.java │ └── movies │ └── PeopleRepositoryTest.java ├── spring-plain-reactive ├── .gitignore ├── .mvn │ ├── jvm.config │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── spring │ │ │ └── plain │ │ │ └── reactive │ │ │ ├── Application.java │ │ │ └── movies │ │ │ ├── Actor.java │ │ │ ├── Movie.java │ │ │ ├── MovieRepository.java │ │ │ ├── MoviesController.java │ │ │ ├── PeopleController.java │ │ │ ├── PeopleRepository.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── org │ └── neo4j │ └── examples │ └── jvm │ └── spring │ └── plain │ └── reactive │ ├── ApplicationIT.java │ └── movies │ └── PeopleRepositoryTest.java ├── tck ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── neo4j │ │ │ └── examples │ │ │ └── jvm │ │ │ └── tck │ │ │ ├── Application.java │ │ │ ├── cli │ │ │ ├── Cli.java │ │ │ ├── LoadMovies.java │ │ │ └── VerifyConnection.java │ │ │ └── movies │ │ │ ├── Actor.java │ │ │ ├── Movie.java │ │ │ ├── Person.java │ │ │ └── PersonDetails.java │ └── resources │ │ ├── application.properties │ │ └── neo4j │ │ ├── example-data │ │ ├── afterMigrate__create_example_data.cypher │ │ └── beforeMigrate__clean_database.cypher │ │ └── migrations │ │ ├── V0001__Remove_old_indexes.cypher │ │ ├── V0002__Create_movie_title_index.cypher │ │ └── V0003__Create_person_name_index.cypher │ └── test │ ├── java │ └── org │ │ └── neo4j │ │ └── examples │ │ └── jvm │ │ └── tck │ │ └── TckTest.java │ └── resources │ └── logback-test.xml └── vertx-spring-data-reactive ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src └── main ├── java └── org │ └── neo4j │ └── examples │ └── jvm │ └── vertx │ └── sdn │ ├── APIVerticle.java │ ├── Application.java │ ├── VertxRunner.java │ └── movies │ ├── Actor.java │ ├── Movie.java │ ├── MovieRepository.java │ ├── PeopleRepository.java │ ├── Person.java │ └── PersonDetails.java └── resources └── application.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/.gitignore -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/README.adoc -------------------------------------------------------------------------------- /benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/benchmark.sh -------------------------------------------------------------------------------- /helidon-se-reactive/.dockerignore: -------------------------------------------------------------------------------- 1 | target/* -------------------------------------------------------------------------------- /helidon-se-reactive/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/Dockerfile -------------------------------------------------------------------------------- /helidon-se-reactive/Dockerfile.jlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/Dockerfile.jlink -------------------------------------------------------------------------------- /helidon-se-reactive/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/Dockerfile.native -------------------------------------------------------------------------------- /helidon-se-reactive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/README.md -------------------------------------------------------------------------------- /helidon-se-reactive/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/app.yaml -------------------------------------------------------------------------------- /helidon-se-reactive/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/pom.xml -------------------------------------------------------------------------------- /helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/Application.java -------------------------------------------------------------------------------- /helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/Actor.java -------------------------------------------------------------------------------- /helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/Movie.java -------------------------------------------------------------------------------- /helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/MovieRepository.java -------------------------------------------------------------------------------- /helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/MovieService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/MovieService.java -------------------------------------------------------------------------------- /helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/PeopleRepository.java -------------------------------------------------------------------------------- /helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/PeopleService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/PeopleService.java -------------------------------------------------------------------------------- /helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/Person.java -------------------------------------------------------------------------------- /helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/movies/PersonDetails.java -------------------------------------------------------------------------------- /helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/package-info.java: -------------------------------------------------------------------------------- 1 | 2 | package org.neo4j.examples.jvm.helidon.se.reactive; 3 | -------------------------------------------------------------------------------- /helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/support/Neo4jHealthCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/src/main/java/org/neo4j/examples/jvm/helidon/se/reactive/support/Neo4jHealthCheck.java -------------------------------------------------------------------------------- /helidon-se-reactive/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/src/main/resources/application.yaml -------------------------------------------------------------------------------- /helidon-se-reactive/src/main/resources/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/src/main/resources/logging.properties -------------------------------------------------------------------------------- /helidon-se-reactive/src/test/java/org/neo4j/examples/jvm/helidon/se/reactive/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/helidon-se-reactive/src/test/java/org/neo4j/examples/jvm/helidon/se/reactive/ApplicationTest.java -------------------------------------------------------------------------------- /micronaut-imperative/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/.gitignore -------------------------------------------------------------------------------- /micronaut-imperative/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /micronaut-imperative/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /micronaut-imperative/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /micronaut-imperative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/README.md -------------------------------------------------------------------------------- /micronaut-imperative/micronaut-cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/micronaut-cli.yml -------------------------------------------------------------------------------- /micronaut-imperative/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/mvnw -------------------------------------------------------------------------------- /micronaut-imperative/mvnw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/mvnw.bat -------------------------------------------------------------------------------- /micronaut-imperative/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/pom.xml -------------------------------------------------------------------------------- /micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/Application.java -------------------------------------------------------------------------------- /micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/Actor.java -------------------------------------------------------------------------------- /micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/Movie.java -------------------------------------------------------------------------------- /micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/MovieRepository.java -------------------------------------------------------------------------------- /micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/MoviesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/MoviesController.java -------------------------------------------------------------------------------- /micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/PeopleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/PeopleController.java -------------------------------------------------------------------------------- /micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/PeopleRepository.java -------------------------------------------------------------------------------- /micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/Person.java -------------------------------------------------------------------------------- /micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/movies/PersonDetails.java -------------------------------------------------------------------------------- /micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/support/DefaultLivenessIndicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/src/main/java/org/neo4j/examples/jvm/micronaut/imperative/support/DefaultLivenessIndicator.java -------------------------------------------------------------------------------- /micronaut-imperative/src/main/resources/META-INF/native-image/native-image.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/src/main/resources/META-INF/native-image/native-image.properties -------------------------------------------------------------------------------- /micronaut-imperative/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/src/main/resources/application.yml -------------------------------------------------------------------------------- /micronaut-imperative/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/src/main/resources/logback.xml -------------------------------------------------------------------------------- /micronaut-imperative/src/test/java/org/neo4j/examples/jvm/micronaut/imperative/MicronautReactiveTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-imperative/src/test/java/org/neo4j/examples/jvm/micronaut/imperative/MicronautReactiveTest.java -------------------------------------------------------------------------------- /micronaut-reactive/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/.gitignore -------------------------------------------------------------------------------- /micronaut-reactive/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /micronaut-reactive/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /micronaut-reactive/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /micronaut-reactive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/README.md -------------------------------------------------------------------------------- /micronaut-reactive/micronaut-cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/micronaut-cli.yml -------------------------------------------------------------------------------- /micronaut-reactive/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/mvnw -------------------------------------------------------------------------------- /micronaut-reactive/mvnw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/mvnw.bat -------------------------------------------------------------------------------- /micronaut-reactive/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/pom.xml -------------------------------------------------------------------------------- /micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/Application.java -------------------------------------------------------------------------------- /micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/Actor.java -------------------------------------------------------------------------------- /micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/Movie.java -------------------------------------------------------------------------------- /micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/MovieRepository.java -------------------------------------------------------------------------------- /micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/MoviesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/MoviesController.java -------------------------------------------------------------------------------- /micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/PeopleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/PeopleController.java -------------------------------------------------------------------------------- /micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/PeopleRepository.java -------------------------------------------------------------------------------- /micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/Person.java -------------------------------------------------------------------------------- /micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/movies/PersonDetails.java -------------------------------------------------------------------------------- /micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/support/DefaultLivenessIndicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/src/main/java/org/neo4j/examples/jvm/micronaut/reactive/support/DefaultLivenessIndicator.java -------------------------------------------------------------------------------- /micronaut-reactive/src/main/resources/META-INF/native-image/native-image.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/src/main/resources/META-INF/native-image/native-image.properties -------------------------------------------------------------------------------- /micronaut-reactive/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/src/main/resources/application.yml -------------------------------------------------------------------------------- /micronaut-reactive/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/src/main/resources/logback.xml -------------------------------------------------------------------------------- /micronaut-reactive/src/test/java/org/neo4j/examples/jvm/micronaut/reactive/MicronautReactiveTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/micronaut-reactive/src/test/java/org/neo4j/examples/jvm/micronaut/reactive/MicronautReactiveTest.java -------------------------------------------------------------------------------- /quarkus-imperative/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/.dockerignore -------------------------------------------------------------------------------- /quarkus-imperative/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/.gitignore -------------------------------------------------------------------------------- /quarkus-imperative/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /quarkus-imperative/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /quarkus-imperative/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /quarkus-imperative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/README.md -------------------------------------------------------------------------------- /quarkus-imperative/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/mvnw -------------------------------------------------------------------------------- /quarkus-imperative/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/mvnw.cmd -------------------------------------------------------------------------------- /quarkus-imperative/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/pom.xml -------------------------------------------------------------------------------- /quarkus-imperative/src/main/docker/Dockerfile.fast-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/main/docker/Dockerfile.fast-jar -------------------------------------------------------------------------------- /quarkus-imperative/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /quarkus-imperative/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/Application.java -------------------------------------------------------------------------------- /quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/Actor.java -------------------------------------------------------------------------------- /quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/Movie.java -------------------------------------------------------------------------------- /quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/MovieRepository.java -------------------------------------------------------------------------------- /quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/MovieResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/MovieResource.java -------------------------------------------------------------------------------- /quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/PeopleRepository.java -------------------------------------------------------------------------------- /quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/PeopleResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/PeopleResource.java -------------------------------------------------------------------------------- /quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/Person.java -------------------------------------------------------------------------------- /quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/main/java/org/neo4j/examples/jvm/quarkus/imperative/movies/PersonDetails.java -------------------------------------------------------------------------------- /quarkus-imperative/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/main/resources/application.properties -------------------------------------------------------------------------------- /quarkus-imperative/src/test/java/org/neo4j/examples/jvm/quarkus/imperative/movies/EmbeddedNeo4jTestResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/test/java/org/neo4j/examples/jvm/quarkus/imperative/movies/EmbeddedNeo4jTestResource.java -------------------------------------------------------------------------------- /quarkus-imperative/src/test/java/org/neo4j/examples/jvm/quarkus/imperative/movies/PeopleRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-imperative/src/test/java/org/neo4j/examples/jvm/quarkus/imperative/movies/PeopleRepositoryTest.java -------------------------------------------------------------------------------- /quarkus-ogm/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/.dockerignore -------------------------------------------------------------------------------- /quarkus-ogm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/.gitignore -------------------------------------------------------------------------------- /quarkus-ogm/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /quarkus-ogm/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /quarkus-ogm/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /quarkus-ogm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/README.md -------------------------------------------------------------------------------- /quarkus-ogm/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/mvnw -------------------------------------------------------------------------------- /quarkus-ogm/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/mvnw.cmd -------------------------------------------------------------------------------- /quarkus-ogm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/pom.xml -------------------------------------------------------------------------------- /quarkus-ogm/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /quarkus-ogm/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/Application.java -------------------------------------------------------------------------------- /quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/movies/Actor.java -------------------------------------------------------------------------------- /quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/movies/Movie.java -------------------------------------------------------------------------------- /quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/movies/MovieRepository.java -------------------------------------------------------------------------------- /quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/movies/MovieResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/movies/MovieResource.java -------------------------------------------------------------------------------- /quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/movies/PeopleRepository.java -------------------------------------------------------------------------------- /quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/movies/PeopleResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/movies/PeopleResource.java -------------------------------------------------------------------------------- /quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/src/main/java/org/neo4j/examples/jvm/quarkus/ogm/movies/Person.java -------------------------------------------------------------------------------- /quarkus-ogm/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-ogm/src/main/resources/application.properties -------------------------------------------------------------------------------- /quarkus-reactive/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/.dockerignore -------------------------------------------------------------------------------- /quarkus-reactive/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/.gitignore -------------------------------------------------------------------------------- /quarkus-reactive/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /quarkus-reactive/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /quarkus-reactive/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /quarkus-reactive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/README.md -------------------------------------------------------------------------------- /quarkus-reactive/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/mvnw -------------------------------------------------------------------------------- /quarkus-reactive/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/mvnw.cmd -------------------------------------------------------------------------------- /quarkus-reactive/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/pom.xml -------------------------------------------------------------------------------- /quarkus-reactive/src/main/docker/Dockerfile.fast-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/main/docker/Dockerfile.fast-jar -------------------------------------------------------------------------------- /quarkus-reactive/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /quarkus-reactive/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/Application.java -------------------------------------------------------------------------------- /quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/Actor.java -------------------------------------------------------------------------------- /quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/Movie.java -------------------------------------------------------------------------------- /quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/MovieRepository.java -------------------------------------------------------------------------------- /quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/MovieResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/MovieResource.java -------------------------------------------------------------------------------- /quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/PeopleRepository.java -------------------------------------------------------------------------------- /quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/PeopleResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/PeopleResource.java -------------------------------------------------------------------------------- /quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/Person.java -------------------------------------------------------------------------------- /quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/main/java/org/neo4j/examples/jvm/quarkus/reactive/movies/PersonDetails.java -------------------------------------------------------------------------------- /quarkus-reactive/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/main/resources/application.properties -------------------------------------------------------------------------------- /quarkus-reactive/src/test/java/org/neo4j/examples/jvm/quarkus/reactive/movies/EmbeddedNeo4jTestResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/test/java/org/neo4j/examples/jvm/quarkus/reactive/movies/EmbeddedNeo4jTestResource.java -------------------------------------------------------------------------------- /quarkus-reactive/src/test/java/org/neo4j/examples/jvm/quarkus/reactive/movies/PeopleRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/quarkus-reactive/src/test/java/org/neo4j/examples/jvm/quarkus/reactive/movies/PeopleRepositoryTest.java -------------------------------------------------------------------------------- /runTck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/runTck.sh -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/.gitignore -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/mvnw -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/mvnw.cmd -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/pom.xml -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Application.java -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Actor.java -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Movie.java -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepository.java -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MoviesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MoviesController.java -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleController.java -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepository.java -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Person.java -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PersonDetails.java -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot23-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/ApplicationIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot23-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/ApplicationIT.java -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/.gitignore -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/mvnw -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/mvnw.cmd -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/pom.xml -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Application.java -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Actor.java -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Movie.java -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepository.java -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MoviesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MoviesController.java -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleController.java -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepository.java -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Person.java -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PersonDetails.java -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/support/Neo4jOGMConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/support/Neo4jOGMConfig.java -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/ApplicationIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/ApplicationIT.java -------------------------------------------------------------------------------- /spring-boot24-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot24-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepositoryTest.java -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/.gitignore -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/mvnw -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/mvnw.cmd -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/pom.xml -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Application.java -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Actor.java -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Movie.java -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepository.java -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MoviesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MoviesController.java -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleController.java -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepository.java -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Person.java -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PersonDetails.java -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/support/Neo4jOGMConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/support/Neo4jOGMConfig.java -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/ApplicationIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/ApplicationIT.java -------------------------------------------------------------------------------- /spring-boot26-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot26-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepositoryTest.java -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/.gitignore -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/mvnw -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/mvnw.cmd -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/pom.xml -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Application.java -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Actor.java -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Movie.java -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepository.java -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MoviesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MoviesController.java -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleController.java -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepository.java -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Person.java -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PersonDetails.java -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/support/Neo4jOGMConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/support/Neo4jOGMConfig.java -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/ApplicationIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/ApplicationIT.java -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepositoryTest.java -------------------------------------------------------------------------------- /spring-boot27-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-boot27-with-sdn-ogm/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepositoryTest.java -------------------------------------------------------------------------------- /spring-data-imperative-module-path/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/.gitignore -------------------------------------------------------------------------------- /spring-data-imperative-module-path/.mvn/jvm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/.mvn/jvm.config -------------------------------------------------------------------------------- /spring-data-imperative-module-path/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-data-imperative-module-path/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-data-imperative-module-path/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-data-imperative-module-path/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/Dockerfile -------------------------------------------------------------------------------- /spring-data-imperative-module-path/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/mvnw -------------------------------------------------------------------------------- /spring-data-imperative-module-path/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/mvnw.cmd -------------------------------------------------------------------------------- /spring-data-imperative-module-path/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/pom.xml -------------------------------------------------------------------------------- /spring-data-imperative-module-path/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/src/main/java/module-info.java -------------------------------------------------------------------------------- /spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Application.java -------------------------------------------------------------------------------- /spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Actor.java -------------------------------------------------------------------------------- /spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Movie.java -------------------------------------------------------------------------------- /spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepository.java -------------------------------------------------------------------------------- /spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MoviesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MoviesController.java -------------------------------------------------------------------------------- /spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleController.java -------------------------------------------------------------------------------- /spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepository.java -------------------------------------------------------------------------------- /spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Person.java -------------------------------------------------------------------------------- /spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PersonDetails.java -------------------------------------------------------------------------------- /spring-data-imperative-module-path/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-module-path/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-data-imperative-native/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/.gitignore -------------------------------------------------------------------------------- /spring-data-imperative-native/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-data-imperative-native/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-data-imperative-native/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-data-imperative-native/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/mvnw -------------------------------------------------------------------------------- /spring-data-imperative-native/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/mvnw.cmd -------------------------------------------------------------------------------- /spring-data-imperative-native/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/pom.xml -------------------------------------------------------------------------------- /spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Application.java -------------------------------------------------------------------------------- /spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Actor.java -------------------------------------------------------------------------------- /spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Movie.java -------------------------------------------------------------------------------- /spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepository.java -------------------------------------------------------------------------------- /spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MoviesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MoviesController.java -------------------------------------------------------------------------------- /spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleController.java -------------------------------------------------------------------------------- /spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepository.java -------------------------------------------------------------------------------- /spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Person.java -------------------------------------------------------------------------------- /spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PersonDetails.java -------------------------------------------------------------------------------- /spring-data-imperative-native/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-data-imperative-native/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/ApplicationIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative-native/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/ApplicationIT.java -------------------------------------------------------------------------------- /spring-data-imperative/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/.gitignore -------------------------------------------------------------------------------- /spring-data-imperative/.mvn/jvm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/.mvn/jvm.config -------------------------------------------------------------------------------- /spring-data-imperative/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-data-imperative/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-data-imperative/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-data-imperative/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/mvnw -------------------------------------------------------------------------------- /spring-data-imperative/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/mvnw.cmd -------------------------------------------------------------------------------- /spring-data-imperative/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/pom.xml -------------------------------------------------------------------------------- /spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Application.java -------------------------------------------------------------------------------- /spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Neo4jConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/Neo4jConfig.java -------------------------------------------------------------------------------- /spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Actor.java -------------------------------------------------------------------------------- /spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/ExtMovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/ExtMovieRepository.java -------------------------------------------------------------------------------- /spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/ExtMovieRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/ExtMovieRepositoryImpl.java -------------------------------------------------------------------------------- /spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Movie.java -------------------------------------------------------------------------------- /spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieDescription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieDescription.java -------------------------------------------------------------------------------- /spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MovieRepository.java -------------------------------------------------------------------------------- /spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MoviesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/MoviesController.java -------------------------------------------------------------------------------- /spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleController.java -------------------------------------------------------------------------------- /spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PeopleRepository.java -------------------------------------------------------------------------------- /spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/Person.java -------------------------------------------------------------------------------- /spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/main/java/org/neo4j/examples/jvm/spring/data/imperative/movies/PersonDetails.java -------------------------------------------------------------------------------- /spring-data-imperative/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-data-imperative/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/ApplicationIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/ApplicationIT.java -------------------------------------------------------------------------------- /spring-data-imperative/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/movies/RepositoryTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-imperative/src/test/java/org/neo4j/examples/jvm/spring/data/imperative/movies/RepositoryTests.java -------------------------------------------------------------------------------- /spring-data-reactive/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/.gitignore -------------------------------------------------------------------------------- /spring-data-reactive/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-data-reactive/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-data-reactive/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-data-reactive/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/mvnw -------------------------------------------------------------------------------- /spring-data-reactive/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/mvnw.cmd -------------------------------------------------------------------------------- /spring-data-reactive/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/pom.xml -------------------------------------------------------------------------------- /spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/Application.java -------------------------------------------------------------------------------- /spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/Actor.java -------------------------------------------------------------------------------- /spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/Movie.java -------------------------------------------------------------------------------- /spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/MovieRepository.java -------------------------------------------------------------------------------- /spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/MoviesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/MoviesController.java -------------------------------------------------------------------------------- /spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/PeopleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/PeopleController.java -------------------------------------------------------------------------------- /spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/PeopleRepository.java -------------------------------------------------------------------------------- /spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/Person.java -------------------------------------------------------------------------------- /spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/src/main/java/org/neo4j/examples/jvm/spring/data/reactive/movies/PersonDetails.java -------------------------------------------------------------------------------- /spring-data-reactive/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-data-reactive/src/test/java/org/neo4j/examples/jvm/spring/data/reactive/ApplicationIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/src/test/java/org/neo4j/examples/jvm/spring/data/reactive/ApplicationIT.java -------------------------------------------------------------------------------- /spring-data-reactive/src/test/java/org/neo4j/examples/jvm/spring/data/reactive/movies/PeopleRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-data-reactive/src/test/java/org/neo4j/examples/jvm/spring/data/reactive/movies/PeopleRepositoryTest.java -------------------------------------------------------------------------------- /spring-plain-imperative/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/.gitignore -------------------------------------------------------------------------------- /spring-plain-imperative/.mvn/jvm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/.mvn/jvm.config -------------------------------------------------------------------------------- /spring-plain-imperative/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-plain-imperative/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-plain-imperative/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-plain-imperative/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/mvnw -------------------------------------------------------------------------------- /spring-plain-imperative/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/mvnw.cmd -------------------------------------------------------------------------------- /spring-plain-imperative/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/pom.xml -------------------------------------------------------------------------------- /spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/Application.java -------------------------------------------------------------------------------- /spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/Actor.java -------------------------------------------------------------------------------- /spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/Movie.java -------------------------------------------------------------------------------- /spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/MovieRepository.java -------------------------------------------------------------------------------- /spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/MoviesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/MoviesController.java -------------------------------------------------------------------------------- /spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/PeopleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/PeopleController.java -------------------------------------------------------------------------------- /spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/PeopleRepository.java -------------------------------------------------------------------------------- /spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/Person.java -------------------------------------------------------------------------------- /spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/src/main/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/PersonDetails.java -------------------------------------------------------------------------------- /spring-plain-imperative/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-plain-imperative/src/test/java/org/neo4j/examples/jvm/spring/plain/imperative/ApplicationIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/src/test/java/org/neo4j/examples/jvm/spring/plain/imperative/ApplicationIT.java -------------------------------------------------------------------------------- /spring-plain-imperative/src/test/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/PeopleRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-imperative/src/test/java/org/neo4j/examples/jvm/spring/plain/imperative/movies/PeopleRepositoryTest.java -------------------------------------------------------------------------------- /spring-plain-reactive/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/.gitignore -------------------------------------------------------------------------------- /spring-plain-reactive/.mvn/jvm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/.mvn/jvm.config -------------------------------------------------------------------------------- /spring-plain-reactive/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /spring-plain-reactive/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /spring-plain-reactive/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /spring-plain-reactive/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/mvnw -------------------------------------------------------------------------------- /spring-plain-reactive/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/mvnw.cmd -------------------------------------------------------------------------------- /spring-plain-reactive/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/pom.xml -------------------------------------------------------------------------------- /spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/Application.java -------------------------------------------------------------------------------- /spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/Actor.java -------------------------------------------------------------------------------- /spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/Movie.java -------------------------------------------------------------------------------- /spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/MovieRepository.java -------------------------------------------------------------------------------- /spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/MoviesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/MoviesController.java -------------------------------------------------------------------------------- /spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/PeopleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/PeopleController.java -------------------------------------------------------------------------------- /spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/PeopleRepository.java -------------------------------------------------------------------------------- /spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/Person.java -------------------------------------------------------------------------------- /spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/src/main/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/PersonDetails.java -------------------------------------------------------------------------------- /spring-plain-reactive/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-plain-reactive/src/test/java/org/neo4j/examples/jvm/spring/plain/reactive/ApplicationIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/src/test/java/org/neo4j/examples/jvm/spring/plain/reactive/ApplicationIT.java -------------------------------------------------------------------------------- /spring-plain-reactive/src/test/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/PeopleRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/spring-plain-reactive/src/test/java/org/neo4j/examples/jvm/spring/plain/reactive/movies/PeopleRepositoryTest.java -------------------------------------------------------------------------------- /tck/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /tck/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /tck/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /tck/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/mvnw -------------------------------------------------------------------------------- /tck/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/mvnw.cmd -------------------------------------------------------------------------------- /tck/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/pom.xml -------------------------------------------------------------------------------- /tck/src/main/java/org/neo4j/examples/jvm/tck/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/src/main/java/org/neo4j/examples/jvm/tck/Application.java -------------------------------------------------------------------------------- /tck/src/main/java/org/neo4j/examples/jvm/tck/cli/Cli.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/src/main/java/org/neo4j/examples/jvm/tck/cli/Cli.java -------------------------------------------------------------------------------- /tck/src/main/java/org/neo4j/examples/jvm/tck/cli/LoadMovies.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/src/main/java/org/neo4j/examples/jvm/tck/cli/LoadMovies.java -------------------------------------------------------------------------------- /tck/src/main/java/org/neo4j/examples/jvm/tck/cli/VerifyConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/src/main/java/org/neo4j/examples/jvm/tck/cli/VerifyConnection.java -------------------------------------------------------------------------------- /tck/src/main/java/org/neo4j/examples/jvm/tck/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/src/main/java/org/neo4j/examples/jvm/tck/movies/Actor.java -------------------------------------------------------------------------------- /tck/src/main/java/org/neo4j/examples/jvm/tck/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/src/main/java/org/neo4j/examples/jvm/tck/movies/Movie.java -------------------------------------------------------------------------------- /tck/src/main/java/org/neo4j/examples/jvm/tck/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/src/main/java/org/neo4j/examples/jvm/tck/movies/Person.java -------------------------------------------------------------------------------- /tck/src/main/java/org/neo4j/examples/jvm/tck/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/src/main/java/org/neo4j/examples/jvm/tck/movies/PersonDetails.java -------------------------------------------------------------------------------- /tck/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/src/main/resources/application.properties -------------------------------------------------------------------------------- /tck/src/main/resources/neo4j/example-data/afterMigrate__create_example_data.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/src/main/resources/neo4j/example-data/afterMigrate__create_example_data.cypher -------------------------------------------------------------------------------- /tck/src/main/resources/neo4j/example-data/beforeMigrate__clean_database.cypher: -------------------------------------------------------------------------------- 1 | MATCH (n:Movie) DETACH DELETE n; 2 | -------------------------------------------------------------------------------- /tck/src/main/resources/neo4j/migrations/V0001__Remove_old_indexes.cypher: -------------------------------------------------------------------------------- 1 | DROP CONSTRAINT title_unique IF EXISTS; 2 | -------------------------------------------------------------------------------- /tck/src/main/resources/neo4j/migrations/V0002__Create_movie_title_index.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/src/main/resources/neo4j/migrations/V0002__Create_movie_title_index.cypher -------------------------------------------------------------------------------- /tck/src/main/resources/neo4j/migrations/V0003__Create_person_name_index.cypher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/src/main/resources/neo4j/migrations/V0003__Create_person_name_index.cypher -------------------------------------------------------------------------------- /tck/src/test/java/org/neo4j/examples/jvm/tck/TckTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/src/test/java/org/neo4j/examples/jvm/tck/TckTest.java -------------------------------------------------------------------------------- /tck/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/tck/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /vertx-spring-data-reactive/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/.gitignore -------------------------------------------------------------------------------- /vertx-spring-data-reactive/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /vertx-spring-data-reactive/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /vertx-spring-data-reactive/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /vertx-spring-data-reactive/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/mvnw -------------------------------------------------------------------------------- /vertx-spring-data-reactive/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/mvnw.cmd -------------------------------------------------------------------------------- /vertx-spring-data-reactive/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/pom.xml -------------------------------------------------------------------------------- /vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/APIVerticle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/APIVerticle.java -------------------------------------------------------------------------------- /vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/Application.java -------------------------------------------------------------------------------- /vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/VertxRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/VertxRunner.java -------------------------------------------------------------------------------- /vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/movies/Actor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/movies/Actor.java -------------------------------------------------------------------------------- /vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/movies/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/movies/Movie.java -------------------------------------------------------------------------------- /vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/movies/MovieRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/movies/MovieRepository.java -------------------------------------------------------------------------------- /vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/movies/PeopleRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/movies/PeopleRepository.java -------------------------------------------------------------------------------- /vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/movies/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/movies/Person.java -------------------------------------------------------------------------------- /vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/movies/PersonDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/src/main/java/org/neo4j/examples/jvm/vertx/sdn/movies/PersonDetails.java -------------------------------------------------------------------------------- /vertx-spring-data-reactive/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-simons/neo4j-from-the-jvm-ecosystem/HEAD/vertx-spring-data-reactive/src/main/resources/application.properties --------------------------------------------------------------------------------