1. 01 Sep, 2016 2 commits
  2. 31 Aug, 2016 23 commits
  3. 29 Aug, 2016 4 commits
    • Phillip Webb's avatar
      Update @MockBean to support generics · a985a5c8
      Phillip Webb authored
      Update @MockBean and @SpyBean to support field generics. Prior to this
      commit the following fields would fail with a "Duplicate mock
      definition" exception:
      
        @MockBean
        private IdentityProvider<PasswordIdentity> passwordIdentityProvider;
      
        @MockBean
        private IdentityProvider<Oauth2Identity> oauth2IdentityProvider;
      
      Fixes gh-6602
      a985a5c8
    • Phillip Webb's avatar
      Polish · 565ad798
      Phillip Webb authored
      565ad798
    • Phillip Webb's avatar
      Merge branch '1.3.x' · 850141c4
      Phillip Webb authored
      850141c4
    • Phillip Webb's avatar
      Polish · 69e96c62
      Phillip Webb authored
      69e96c62
  4. 28 Aug, 2016 1 commit
  5. 27 Aug, 2016 2 commits
    • Stephane Nicoll's avatar
      Merge branch '1.3.x' · afadac27
      Stephane Nicoll authored
      afadac27
    • Stephane Nicoll's avatar
      Auto-detect fork value in stop goal · 97f15d60
      Stephane Nicoll authored
      So far, one has to set the "fork" value to both the start and stop
      goals. Since they have the same name, sharing them in a global
      configuration element does the trick. However, the plugin also supports
      auto-detection of the fork value according to other parameters:
      typically if an agent or jvm arguments are set, forking will be
      automatically enabled. This is a problem since the stop goal is not aware
      of that.
      
      This commit transmits the value in a property attached to the
      `MavenProject`. That way, the stop goal can retrieve that value and
      apply the same defaults. This has the side effect that specifying the
      fork value isn't necessary anymore.
      
      Closes gh-6747
      97f15d60
  6. 26 Aug, 2016 8 commits