1. 14 Jul, 2015 4 commits
    • Dave Syer's avatar
      Add missing jar (.gitignored) · de02eaa2
      Dave Syer authored
      de02eaa2
    • Andy Wilkinson's avatar
      Configure CLI with repositories from active profiles in settings.xml · 84937551
      Andy Wilkinson authored
      This commit enhances the CLI to use the repositories configured in the
      profiles declared in a user's Maven settings.xml file during
      dependency resolution. A profile must be active for its repositories
      to be used.
      
      Closes gh-2703
      Closes gh-3483
      84937551
    • Stephane Nicoll's avatar
      Fix ordering of mail auto-configuration · eafee1ec
      Stephane Nicoll authored
      It is not possible to put `@Order` on nested `@Configuration` classes and
      there is no ordering guarantee of them anyway. Previously, we relied on
      the declaration order to check if the `test-connection` flag should apply
      to an existing `JavaMailSenderImpl`. It turns out at the
      `JavaMailSenderImpl` bean was not created at that time and so the
      evaluation was wrongly failing.
      
      To make that more explicit, that code is now in its own
      auto-configuration with an explicit `@AutoConfigureAfter` declaration.
      
      Since the JNDI support could be affected by the exact same issue, it has
      been restored to its own package private configuration class that is
      processed before the  `MailSenderAutoConfiguration` content is evaluated.
      
      Closes gh-3478
      eafee1ec
    • Dave Syer's avatar
      Maintain classpath order in PropertiesLauncher · bfa816f2
      Dave Syer authored
      I think this is safe, judging by the integration tests, but I'm not
      putting it in 1.2.x until we've had some feedback on it. The
      integration tests actually had a bug that was masking this problem
      because they were merging Properties from the whole classpath instead
      of picking the first available resource (which is generally what
      we do in Spring Boot applications for application.properties for
      instance).
      
      Fixes gh-3048
      bfa816f2
  2. 13 Jul, 2015 32 commits
  3. 12 Jul, 2015 1 commit
  4. 10 Jul, 2015 3 commits