Skip to content

Commit f7e0066

Browse files
committed
Fix indentation; remove useless optimize setting
1 parent 2148cea commit f7e0066

File tree

1 file changed

+25
-21
lines changed

1 file changed

+25
-21
lines changed

pom.xml

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2-
<!-- This module was also published with a richer model, Gradle metadata, -->
3-
<!-- which should be used instead. Do not delete the following line which -->
4-
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
5-
<!-- that they should prefer consuming it instead. -->
6-
<!-- do_not_remove: published-with-gradle-metadata -->
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<!-- This module was also published with a richer model, Gradle metadata, -->
4+
<!-- which should be used instead. Do not delete the following line which -->
5+
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
6+
<!-- that they should prefer consuming it instead. -->
7+
<!-- do_not_remove: published-with-gradle-metadata -->
78
<modelVersion>4.0.0</modelVersion>
89
<parent>
910
<groupId>com.fasterxml.jackson</groupId>
@@ -24,9 +25,9 @@
2425
<id>jaysonminard</id>
2526
<name>Jayson Minard</name>
2627
<email>[email protected]</email>
27-
<roles>
28-
<role>author</role>
29-
</roles>
28+
<roles>
29+
<role>author</role>
30+
</roles>
3031
</developer>
3132
<developer>
3233
<id>dinomite</id>
@@ -146,9 +147,9 @@
146147
</executions>
147148
</plugin>
148149
<plugin>
149-
<groupId>org.apache.maven.plugins</groupId>
150-
<artifactId>maven-surefire-plugin</artifactId>
151-
</plugin>
150+
<groupId>org.apache.maven.plugins</groupId>
151+
<artifactId>maven-surefire-plugin</artifactId>
152+
</plugin>
152153
<plugin>
153154
<!-- Inherited from oss-base. Generate PackageVersion.java.-->
154155
<groupId>com.google.code.maven-replacer-plugin</groupId>
@@ -167,20 +168,19 @@
167168
<configuration>
168169
<showDeprecation>true</showDeprecation>
169170
<showWarnings>true</showWarnings>
170-
<optimize>true</optimize>
171171
</configuration>
172172
</plugin>
173173

174-
<!-- 02-Nov-2020, tatu: Add JDK9+ module info with Moditect -->
175-
<plugin>
174+
<!-- 02-Nov-2020, tatu: Add JDK9+ module info with Moditect -->
175+
<plugin>
176176
<groupId>org.moditect</groupId>
177-
<artifactId>moditect-maven-plugin</artifactId>
178-
</plugin>
177+
<artifactId>moditect-maven-plugin</artifactId>
178+
</plugin>
179179

180180
<!-- 05-Jul-2020, tatu: Add generation of Gradle Module Metadata -->
181181
<plugin>
182-
<groupId>de.jjohannes</groupId>
183-
<artifactId>gradle-module-metadata-maven-plugin</artifactId>
182+
<groupId>de.jjohannes</groupId>
183+
<artifactId>gradle-module-metadata-maven-plugin</artifactId>
184184
</plugin>
185185
</plugins>
186186
</build>
@@ -189,8 +189,12 @@
189189
<repository>
190190
<id>snapshots-repo</id>
191191
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
192-
<releases><enabled>false</enabled></releases>
193-
<snapshots><enabled>true</enabled></snapshots>
192+
<releases>
193+
<enabled>false</enabled>
194+
</releases>
195+
<snapshots>
196+
<enabled>true</enabled>
197+
</snapshots>
194198
</repository>
195199
</repositories>
196200
</project>

0 commit comments

Comments
 (0)