Skip to content

Commit 5195734

Browse files
committed
Fixed build
Signed-off-by: David Matějček <[email protected]>
1 parent 95b4c7d commit 5195734

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

wsit/docs/getting-started/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
3+
Copyright (c) 2026 Contributors to the Eclipse Foundation.
44
Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
55
66
This program and the accompanying materials are made available under the
@@ -31,20 +31,20 @@
3131
<artifactId>maven-antrun-plugin</artifactId>
3232
<executions>
3333
<execution>
34+
<id>process-entities</id>
35+
<phase>package</phase>
36+
<goals>
37+
<goal>run</goal>
38+
</goals>
3439
<configuration>
35-
<tasks>
40+
<target>
3641
<echo message="Preparing char entities"/>
3742
<mkdir dir="${src.dir}"/>
3843
<copy todir="${src.dir}">
3944
<fileset dir="src/docbook"/>
4045
</copy>
41-
</tasks>
46+
</target>
4247
</configuration>
43-
<id>process-entities</id>
44-
<phase>package</phase>
45-
<goals>
46-
<goal>run</goal>
47-
</goals>
4848
</execution>
4949
</executions>
5050
</plugin>

wsit/docs/guide/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
3+
Copyright (c) 2026 Contributors to the Eclipse Foundation.
44
Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
55
66
This program and the accompanying materials are made available under the
@@ -32,8 +32,13 @@
3232
<artifactId>maven-antrun-plugin</artifactId>
3333
<executions>
3434
<execution>
35+
<id>pre-process</id>
36+
<phase>package</phase>
37+
<goals>
38+
<goal>run</goal>
39+
</goals>
3540
<configuration>
36-
<tasks>
41+
<target>
3742
<echo message="Preparing char entities"/>
3843
<mkdir dir="${src.dir}"/>
3944
<copy todir="${src.dir}">
@@ -43,13 +48,8 @@
4348
<replace file="${src.dir}/metro.ent" token="$repository" value="${javanet.repository.id}"/>
4449
<replace file="${src.dir}/metro.ent" token="$jax-ws.version" value="${www.guide.jaxws.version}"/>
4550
<replace file="${src.dir}/metro.ent" token="$jaxws.home.uri" value="${www.guide.jaxws.home.uri}"/>
46-
</tasks>
51+
</target>
4752
</configuration>
48-
<id>process-entities</id>
49-
<phase>package</phase>
50-
<goals>
51-
<goal>run</goal>
52-
</goals>
5353
</execution>
5454
</executions>
5555
</plugin>

0 commit comments

Comments
 (0)