1. 20 Jun, 2014 14 commits
  2. 19 Jun, 2014 4 commits
  3. 18 Jun, 2014 10 commits
    • Phillip Webb's avatar
      Be defensive about solr classes required · 34a32991
      Phillip Webb authored
      Update SolrAutoConfiguration to specifically require HttpSolrServer
      and CloudSolrServer classes rather than the generic SolrServer.
      
      This prevents the rather cryptic "@ConditionalOnMissingBean annotations
      must specify at least one bean" error that can occur if an earlier
      version of solr happens to be on the classpath (as is the case when
      hibernate-search is used).
      
      Fixes gh-1098
      34a32991
    • Phillip Webb's avatar
      Polish · a2efe17f
      Phillip Webb authored
      a2efe17f
    • Phillip Webb's avatar
      Refine Spring Social auto-configuration · 46c46dbd
      Phillip Webb authored
      Refine auto-configuration for Spring Social to:
      
      - Only auto-configure FB/Twitter/LinkedIn if the `app-id` property is
        set.
      - Only configure ConnectController and ProviderSignInController if
        there is a ConnectionFactoryLocator.
      - Auto-configure Spring Social's SpringSocialDialect for Thymeleaf if
        Thymeleaf is present.
      - Added several tests around Spring Social auto-configuration.
      
      Fixes gh-1118
      46c46dbd
    • Phillip Webb's avatar
      Polish · 179e1558
      Phillip Webb authored
      179e1558
    • Dave Syer's avatar
      Add 'classifier' property to Gradle plugin · 2433f721
      Dave Syer authored
      The default behaviour doesn't change with this commit, but now
      the user has the option to specify a 'classifier' property
      either in springBoot { classifier = 'exec' } (i.e. globally
      for all repackage tasks) or in each repackage task, e.g.
      bootRepackage { classifier = 'exec' }. In that case the original
      archive is not overwritten but copied into <file>-<classifier>.jar
      (or .war etc.) and then enhanced.
      
      Fixes gh-1113, fixes gh-141 also I believe.
      2433f721
    • Christian Dupuis's avatar
    • Dave Syer's avatar
      Change ordering of DataSourceInitializer a bit · f8e847a6
      Dave Syer authored
      It needs to run as soon as the DataSource is available really otherwise
      anything else that depends on the DataSource (like Security JDBC
      initializers) might fail when it tries to use it.
      
      One change from 1.1.1 is that if you have a schema.sql you had better
      make sure your data.sql talks to the same tables. In 1.1.1 you could
      sometimes get away with letting Hibernate initialize the tables for
      your data.sql and *also* have a schema.sql. This was fragile and doomed
      to fail eventually if the DataSourceInitializer somehow got
      initialized earlier (e.g. through a @DependsOn), so in the spririt
      of honesty being the best policy we explicitly disallow it now.
      
      Fixes gh-1115
      f8e847a6
    • Dave Syer's avatar
      Fix WS sample to use a random port · 7fc1f193
      Dave Syer authored
      7fc1f193
    • Dave Syer's avatar
      Remove deprecated use of Compile to work with Gradle 2.0+ · f0393f9c
      Dave Syer authored
      The class Compile was deprecated and will be removed in Gradle 2.0 (it is
      already removed in the release canidate).
      
      Instead we should use JavaCompile. Fixes gh-1066.
      f0393f9c
    • Dave Syer's avatar
      Add JDBC user details to web-secure sample · e39fafcc
      Dave Syer authored
      See gh-1115
      e39fafcc
  4. 17 Jun, 2014 12 commits