We use the Spring Formatter already in many Neo4j projects and are quite happy with it. It feels natural to use it with a Spring project, too. We take the opportunity to apply the formatter to the upcoming 8.0.x release. We think that the now increased difficulty of back porting things to the 7.x lines is outweighed by the better format and the simpler tooling. Signed-off-by: Michael Simons <michael@simons.ac>
46 lines
1.5 KiB
XML
46 lines
1.5 KiB
XML
<!--
|
|
|
|
Copyright 2011-2025 the original author or authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
-->
|
|
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
|
|
https://maven.apache.org/xsd/settings-1.0.0.xsd">
|
|
|
|
<servers>
|
|
<server>
|
|
<id>spring-plugins-release</id>
|
|
<username>${env.ARTIFACTORY_USR}</username>
|
|
<password>${env.ARTIFACTORY_PSW}</password>
|
|
</server>
|
|
<server>
|
|
<id>spring-libs-snapshot</id>
|
|
<username>${env.ARTIFACTORY_USR}</username>
|
|
<password>${env.ARTIFACTORY_PSW}</password>
|
|
</server>
|
|
<server>
|
|
<id>spring-libs-milestone</id>
|
|
<username>${env.ARTIFACTORY_USR}</username>
|
|
<password>${env.ARTIFACTORY_PSW}</password>
|
|
</server>
|
|
<server>
|
|
<id>spring-libs-release</id>
|
|
<username>${env.ARTIFACTORY_USR}</username>
|
|
<password>${env.ARTIFACTORY_PSW}</password>
|
|
</server>
|
|
</servers>
|
|
|
|
</settings> |