Skip to content

Commit

Permalink
Merge pull request #25185 from Thihup/issue/25184
Browse files Browse the repository at this point in the history
  • Loading branch information
arjantijms authored Oct 15, 2024
2 parents 9ef2d2f + 3751457 commit d7eadb0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions appserver/appclient/client/acc-config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@
<binding dir="${project.basedir}/src/main/resources" includes="configBindings.xml"/>
<arg value="-dtd"/>
<jvmarg value="-DenableExternalEntityProcessing=true"/>
<jvmarg value="-Dfile.encoding=${project.build.sourceEncoding}" />
</xjc>
</target>
</configuration>
Expand Down
12 changes: 9 additions & 3 deletions nucleus/admin/server-mgmt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,19 @@
<mkdir dir="${dest}" />
<xjc destdir="${dest}"
schema="${project.basedir}/src/main/resources/xsd/schema/template-info.xsd"
package="com.sun.enterprise.admin.servermgmt.xml.templateinfo" />
package="com.sun.enterprise.admin.servermgmt.xml.templateinfo">
<jvmarg value="-Dfile.encoding=${project.build.sourceEncoding}" />
</xjc>
<xjc destdir="${dest}"
schema="${project.basedir}/src/main/resources/xsd/schema/domain-info.xsd"
package="com.sun.enterprise.admin.servermgmt.xml.domaininfo" />
package="com.sun.enterprise.admin.servermgmt.xml.domaininfo">
<jvmarg value="-Dfile.encoding=${project.build.sourceEncoding}" />
</xjc>
<xjc destdir="${dest}"
schema="${project.basedir}/src/main/resources/xsd/schema/stringsubs.xsd"
package="com.sun.enterprise.admin.servermgmt.xml.stringsubs" />
package="com.sun.enterprise.admin.servermgmt.xml.stringsubs">
<jvmarg value="-Dfile.encoding=${project.build.sourceEncoding}" />
</xjc>
</target>
</configuration>
</execution>
Expand Down

0 comments on commit d7eadb0

Please sign in to comment.