spring-boot/spring-boot-autoconfigure
Phillip Webb 0326abfe01 Support for composed "any" condition
Add `AnyNestedCondition` which can be used to create a logical 'or' of
other conditions contained on nested classes. For example:

	static class OnJndiOrProperty extends AnyNestedCondition {

		@ConditionalOnJndi()
		static class OnJndi {
		}

		@ConditionalOnProperty("something")
		static class OnProperty {
		}

	}

Fixes gh-1490
2014-09-03 17:58:03 -07:00
..
src Support for composed "any" condition 2014-09-03 17:58:03 -07:00
.gitignore Restore test classes 2014-06-01 13:11:25 +01:00
pom.xml Provide auto-configuration for Gson 2014-08-27 16:57:21 +01:00