Skip to content

Commit

Permalink
Add missing .java resource files to jaxb-xjc.jar.
Browse files Browse the repository at this point in the history
Fixes #1287

Signed-off-by: Roman Grigoriadi <roman.grigoriadi@oracle.com>
  • Loading branch information
Roman Grigoriadi authored and bravehorsie committed Feb 1, 2019
1 parent d64d08d commit 0042068
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion jaxb-ri/xjc/pom.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2013, 2018 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Distribution License v. 1.0, which is available at
Expand Down Expand Up @@ -264,6 +264,30 @@
</additionalJOptions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/classes/com/sun/tools/xjc/runtime</outputDirectory>
<resources>
<resource>
<directory>src/main/java/com/sun/tools/xjc/runtime</directory>
<filtering>false</filtering>
<excludes>
<exclude>package-info.java</exclude>
</excludes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 0042068

Please sign in to comment.