├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main ├── java │ └── org │ │ └── web3j │ │ └── spring │ │ ├── actuate │ │ └── Web3jHealthIndicator.java │ │ └── autoconfigure │ │ ├── Web3jAutoConfiguration.java │ │ └── Web3jProperties.java └── resources │ └── META-INF │ └── spring.factories └── test ├── java └── org │ └── web3j │ └── spring │ └── autoconfigure │ ├── Web3jAutoConfigurationTest.java │ ├── Web3jHealthIndicatorTest.java │ └── context │ └── SpringApplicationTest.java └── resources └── application.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/org/web3j/spring/actuate/Web3jHealthIndicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/src/main/java/org/web3j/spring/actuate/Web3jHealthIndicator.java -------------------------------------------------------------------------------- /src/main/java/org/web3j/spring/autoconfigure/Web3jAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/src/main/java/org/web3j/spring/autoconfigure/Web3jAutoConfiguration.java -------------------------------------------------------------------------------- /src/main/java/org/web3j/spring/autoconfigure/Web3jProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/src/main/java/org/web3j/spring/autoconfigure/Web3jProperties.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /src/test/java/org/web3j/spring/autoconfigure/Web3jAutoConfigurationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/src/test/java/org/web3j/spring/autoconfigure/Web3jAutoConfigurationTest.java -------------------------------------------------------------------------------- /src/test/java/org/web3j/spring/autoconfigure/Web3jHealthIndicatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/src/test/java/org/web3j/spring/autoconfigure/Web3jHealthIndicatorTest.java -------------------------------------------------------------------------------- /src/test/java/org/web3j/spring/autoconfigure/context/SpringApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/src/test/java/org/web3j/spring/autoconfigure/context/SpringApplicationTest.java -------------------------------------------------------------------------------- /src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3j/web3j-spring-boot-starter/HEAD/src/test/resources/application.properties --------------------------------------------------------------------------------