Phillip Webb
46629ef5e4
Migrate away from pivotal-legacy/homebrew-tap
...
Update formula to use spring-boot rather than springboot. This will
allow both taps to be used at the same time.
See gh-24659
5 years ago
Andy Wilkinson
c96455f7cf
Remove . from CLI's classpath on Unix-like platforms
...
Previously, the spring bash script added . to the classpath but the
Windows spring.bat script did not. This commit aligns the classpath
of the two scripts by removing . from the classpath in the bash
script.
Fixes gh-19910
6 years ago
Phillip Webb
ad1248e4ec
Replace "folder" with "directory"
...
Consistently use the term "directory" instead of "folder"
Closes gh-21218
6 years ago
Stephane Nicoll
85e9f713b0
Update copyright year of changed files
...
See gh-21007
6 years ago
Johnny Lim
29717423a3
Remove this keyword on member method invocations
...
See gh-21007
6 years ago
Andy Wilkinson
f251772e17
Fix behaviour of DependencyCustomizer ifAllResourcesPresent
...
Previously, DependencyCustomizer's ifAllResourcesPresent method
would return a customizer that added modules if any of the resources
were present. This commit corrects this behaviours so that modules are
only added if all resources are present.
Fixes gh-20418
6 years ago
wycm
916a4743bb
Polish
...
See gh-20419
6 years ago
Stephane Nicoll
1333af4dcf
Polish "Refine if statement logic"
...
See gh-20390
6 years ago
gir1yaphets
9480e2d605
Refine if statement logic
...
See gh-20390
6 years ago
Stephane Nicoll
03bee83991
Update copyright date
...
See gh-20192
6 years ago
zhangt2333
e2d87a89d0
Polish
...
See gh-20192
6 years ago
Stephane Nicoll
9b79208b60
Upgrade copyright date
...
See gh-19995
6 years ago
Johnny Lim
e6d5f5a271
Polish
...
See gh-19995
6 years ago
dreis2211
42e34673a6
Remove obsolete files
...
See gh-19896
6 years ago
Stephane Nicoll
e044817fe7
Migrate remaining use of ClassLoader.loadClass to Class.forName
...
Closes gh-19824
6 years ago
Stephane Nicoll
95be419527
Use Class.forName rather than ClassLoader.loadClass
...
This commit changes uses of ClassLoader.loadClass to Class.forName for
consistency with what was initiated in #19342 and better compatibility
with GraalVM.
Closes gh-19824
6 years ago
Phillip Webb
862462b791
Update copyright year of changed files
6 years ago
Stephane Nicoll
8b8a4ee65e
Polish "Make equality checks defensive to null reference"
...
See gh-19540
6 years ago
liuhuan
6d8b849361
Make equality checks defensive to null reference
...
See gh-19540
6 years ago
Andy Wilkinson
ce99db1902
Port the build to Gradle
...
Closes gh-19609
Closes gh-19608
6 years ago
Stephane Nicoll
08ac72f5f0
Fix build failure
6 years ago
Stephane Nicoll
2c1e81adf0
Polish
6 years ago
Andy Wilkinson
b5243c5076
Polish "Polish"
...
See gh-18534
6 years ago
Kant Leung
2f73e196af
Polish
...
See gh-18534
6 years ago
Andy Wilkinson
308f2db930
Polish "Support multiple drives when running CLI using Cygwin"
...
See gh-17872
6 years ago
Wanderrful
584a562970
Support multiple drives when running CLI using Cygwin
...
See gh-17872
6 years ago
dreis2211
b4350a9d96
Remove unnecessary blank lines
...
See gh-18089
6 years ago
Andy Wilkinson
7150f121a3
Redirect stdout from cd to /dev/null in CLI's bash script
...
Fixes gh-17579
6 years ago
Ben Hale
2a04d94cf1
Use exec when launching the JVM in CLI's shell script
...
Previously, when the Spring Boot CLI ran the Java command line for an
application it did a straight invocation which suppressed propagation of
signals to the JVM in certain circumstances (e.g within Docker containers).
This change prepends the command with exec which causes the Java process to
replace the script process in a shell ensuring that signals are propagated to
the Java process without suppression.
See gh-17976
Signed-off-by: Ben Hale <bhale@pivotal.io>
6 years ago
Phillip Webb
01933f9b06
Merge previously split strings
...
Merge some string lines that were previously split because of the
90 chars wide formatting.
7 years ago
Andy Wilkinson
9f253603db
Drop -d option from CLI as it was not POSIX compliant
...
Closes gh-16663
7 years ago
Phillip Webb
a66c4d3096
Unify method visibility of private classes
...
Apply checkstyle rule to ensure that private and package private
classes do not have unnecessary public methods. Test classes have
also been unified as much as possible to use default scoped
inner-classes.
Closes gh-7316
7 years ago
Phillip Webb
266d6334b2
Fix checkstyle RedundantModifier test violations
7 years ago
Phillip Webb
17aaf26590
Use consistent javadoc style for annotation links
...
Closes gh-13920
7 years ago
Spring Operator
00ab30362c
Use HTTPS for external links in XML files
...
See gh-16270
7 years ago
Andy Wilkinson
53326695ea
Polish
7 years ago
dreis2211
48295e16fc
Fix assertion
...
Closes gh-15871
7 years ago
Stephane Nicoll
8d1d3fb087
Polish "Avoid string concatenation inside StringBuilder append()"
...
Closes gh-15589
7 years ago
igor-suhorukov
59ac85d371
Avoid string concatenation inside StringBuilder append()
...
See gh-15589
7 years ago
Stephane Nicoll
6e6c22c0ae
Polish "Remove duplicate -l option for init command"
...
Closes gh-1446
7 years ago
Ruslan Molchanov
71cf472116
Remove duplicate -l option for init command
...
See gh-14460
7 years ago
Phillip Webb
01b8667dd7
Update copyright year for changed files
7 years ago
Andy Wilkinson
fcc73c6d88
Polish "Fix shellcheck warnings in CLI's bash script"
...
Closes gh-11458
7 years ago
leogtzr
69b844cb13
Fix shellcheck warnings in CLI's bash script
...
See gh-11458
7 years ago
Phillip Webb
d127d071fd
Ensure classpath resource are also filtered
...
Update `ExtendedGroovyClassLoader` to also filter resources.
Closes gh-14482
7 years ago
Phillip Webb
99908fdfe7
Polish
7 years ago
Phillip Webb
372fee11f5
Upgrade to JOpt Simple 5.0.4
...
Closes gh-14430
7 years ago
Phillip Webb
894e0e11d4
Switch from Aether to Maven Resolver
...
Replace Aether dependencies with Maven Resolver following the Eclipse
EOL announcement for Aether.
Closes gh-7627
7 years ago
dreis2211
4fc2806089
Polish CommandCompleter
...
Closes gh-14339
7 years ago
dreis2211
66b1742f96
Optimize some StringBuilder.append() calls
...
Closes gh-13961
8 years ago