Skip to content

Commit

Permalink
UberJar and Barcode4J to full to match JasperReports (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Oct 29, 2024
1 parent ed05218 commit 1b72eaf
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ void uberJarServiceLoaders(BuildProducer<UberJarMergedResourceBuildItem> produce
"services/org.primefaces.component.fileupload.FileUploadDecoder",
"services/org.primefaces.util.PropertyDescriptorResolver",
"services/org.primefaces.virusscan.VirusScanner",
"maven/org.json/json/pom.properties");
"maven/org.json/json/pom.properties",
"maven/org.json/json/pom.xml",
"maven/org.jctools/jctools-core/pom.properties",
"maven/org.jctools/jctools-core/pom.xml");

for (String serviceFile : serviceFiles) {
producer.produce(new UberJarMergedResourceBuildItem("META-INF/" + serviceFile));
Expand Down
22 changes: 19 additions & 3 deletions quarkus-primefaces/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,25 @@
<version>1.8.0</version>
</dependency>
<dependency>
<groupId>org.primefaces.extensions</groupId>
<artifactId>barcode4j-light</artifactId>
<version>2.3.0</version>
<groupId>net.sf.barcode4j</groupId>
<artifactId>barcode4j</artifactId>
<version>2.1</version>
<scope>compile</scope>
<optional>false</optional>
<exclusions>
<exclusion>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
</exclusion>
<exclusion>
<groupId>avalon-framework</groupId>
<artifactId>avalon-framework-impl</artifactId>
</exclusion>
<exclusion>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.graalvm.sdk</groupId>
Expand Down

0 comments on commit 1b72eaf

Please sign in to comment.