Skip to content

Commit 6188a82

Browse files
committed
docs: adapt for newer base versions
1 parent 217c561 commit 6188a82

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

plugin-gradle/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -979,11 +979,11 @@ Since spotless uses the actual npm prettier package behind the scenes, it is pos
979979
```gradle
980980
spotless {
981981
java {
982-
prettier(['prettier': '2.0.5', 'prettier-plugin-java': '0.8.0']).config(['parser': 'java', 'tabWidth': 4])
982+
prettier(['prettier': '2.8.8', 'prettier-plugin-java': '2.2.0']).config(['parser': 'java', 'tabWidth': 4])
983983
}
984984
format 'php', {
985985
target 'src/**/*.php'
986-
prettier(['prettier': '2.0.5', '@prettier/plugin-php': '0.14.2']).config(['parser': 'php', 'tabWidth': 3])
986+
prettier(['prettier': '2.8.8', '@prettier/plugin-php': '0.19.6']).config(['parser': 'php', 'tabWidth': 3])
987987
}
988988
}
989989
```

plugin-maven/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1047,11 +1047,11 @@ You can use prettier in any language-specific format, but usually you will be cr
10471047
<devDependencyProperties>
10481048
<property>
10491049
<name>prettier</name>
1050-
<value>2.0.5</value>
1050+
<value>2.8.8</value>
10511051
</property>
10521052
<property>
10531053
<name>@prettier/plugin-php</name> <!-- this could not be written in the simpler to write 'devDependencies' element. -->
1054-
<value>0.14.2</value>
1054+
<value>0.19.6</value>
10551055
</property>
10561056
</devDependencyProperties>
10571057
<!-- Specify config file and/or inline config, the inline always trumps file -->
@@ -1097,8 +1097,8 @@ Since spotless uses the actual npm prettier package behind the scenes, it is pos
10971097

10981098
<prettier>
10991099
<devDependencies>
1100-
<prettier>2.0.5</prettier>
1101-
<prettier-plugin-java>0.8.0</prettier-plugin-java>
1100+
<prettier>2.8.8</prettier>
1101+
<prettier-plugin-java>2.2.0</prettier-plugin-java>
11021102
</devDependencies>
11031103
<config>
11041104
<tabWidth>4</tabWidth>
@@ -1118,11 +1118,11 @@ Since spotless uses the actual npm prettier package behind the scenes, it is pos
11181118
<devDependencyProperties>
11191119
<property>
11201120
<name>prettier</name>
1121-
<value>2.0.5</value>
1121+
<value>2.8.8</value>
11221122
</property>
11231123
<property>
11241124
<name>@prettier/plugin-php</name>
1125-
<value>0.14.2</value>
1125+
<value>0.19.6</value>
11261126
</property>
11271127
</devDependencyProperties>
11281128
<config>

0 commit comments

Comments
 (0)