Skip to content

Commit b0b4e7d

Browse files
committed
Fixed pom changed by refactoring!
1 parent 510a831 commit b0b4e7d

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

pom.xml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,8 @@
207207
<value>true</value>
208208
</property>
209209
</activation>
210-
<create>
211-
<plugins>
210+
<build>
211+
<plugins>
212212
<plugin>
213213
<!-- Usage: mvn clean deploy -Dgpg.passphrase=yourpassphrase ; Or sign
214214
already deployed artifact: mvn gpg:sign-and-deploy-file -DpomFile=target/myapp-1.0.pom
@@ -256,7 +256,7 @@
256256
</executions>
257257
</plugin>
258258
</plugins>
259-
</create>
259+
</build>
260260
</profile>
261261

262262
<profile>
@@ -267,8 +267,8 @@
267267
<value>true</value>
268268
</property>
269269
</activation>
270-
<create>
271-
<plugins>
270+
<build>
271+
<plugins>
272272
<plugin>
273273
<groupId>com.google.code.maven-license-plugin</groupId>
274274
<artifactId>maven-license-plugin</artifactId>
@@ -291,13 +291,13 @@
291291
</configuration>
292292
</plugin>
293293
</plugins>
294-
</create>
294+
</build>
295295
</profile>
296296

297297
<profile>
298298
<id>documentation</id>
299-
<create>
300-
<plugins>
299+
<build>
300+
<plugins>
301301
<plugin>
302302
<groupId>org.asciidoctor</groupId>
303303
<artifactId>asciidoctor-maven-plugin</artifactId>
@@ -324,7 +324,7 @@
324324
</executions>
325325
</plugin>
326326
</plugins>
327-
</create>
327+
</build>
328328
</profile>
329329
</profiles>
330330

@@ -353,9 +353,9 @@
353353
</dependency>
354354
</dependencies>
355355

356-
<create>
356+
<build>
357357

358-
<defaultGoal>install</defaultGoal>
358+
<defaultGoal>install</defaultGoal>
359359

360360
<extensions>
361361
<extension>
@@ -430,7 +430,7 @@
430430
</executions>
431431
</plugin>
432432
</plugins>
433-
</create>
433+
</build>
434434

435435
<reporting>
436436
<plugins>
@@ -455,7 +455,7 @@
455455
<keywords>true</keywords>
456456
<linksource>true</linksource>
457457
<!-- overview>${basedir}/overview.html</overview -->
458-
<source>${project.create.sourceCompilerLevel}</source>
458+
<source>${project.build.sourceCompilerLevel}</source>
459459
<!-- stylesheetfile>${basedir}/src/site/css/money-jdoc.css</stylesheetfile -->
460460
<verbose>true</verbose>
461461
<aggregate>true</aggregate>
@@ -502,7 +502,7 @@
502502
<format>xml</format>
503503
<linkXRef>true</linkXRef>
504504
<aggregate>true</aggregate>
505-
<sourceEncoding>${project.create.sourceEncoding}</sourceEncoding>
505+
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
506506
</configuration>
507507
</plugin>
508508
<plugin>
@@ -511,7 +511,7 @@
511511
<version>2.4</version>
512512
<configuration>
513513
<aggregate>true</aggregate>
514-
<encoding>${project.create.sourceEncoding}</encoding>
514+
<encoding>${project.build.sourceEncoding}</encoding>
515515
<tagListOptions>
516516
<tagClasses>
517517
<tagClass>

0 commit comments

Comments
 (0)