Skip to main content

All Questions

Tagged with or
Filter by
Sorted by
Tagged with
1 vote
0 answers
59 views

I am trying to create a fat JAR that includes my application and its tests to run them externally using the JUnit Console Launcher. The build succeeds, and the JAR is created. However, when I execute ...
novengail's user avatar
0 votes
0 answers
41 views

I am facing these warnings. These warnings can be categorized into three main issues: Automodule Warning (exp4j-0.4.8.jar) Shading module-info.class Warning Overlapping Resources in Shaded JAR While ...
user30142456's user avatar
1 vote
1 answer
132 views

I already found out how to configure Log4J programmatically, and now I need to build a “fat JAR” that includes all dependencies, so that the program can be run simply with java -jar example.jar and be ...
Pixelcode's user avatar
  • 440
0 votes
0 answers
96 views

I have a simple assignment for class to practice maven and I am completely lost with the pom file part. Our Java file just takes in either "PDF" or "XLS" then reads a csv file and ...
Roenan Bingle's user avatar
0 votes
0 answers
22 views

I am trying to install Fat Jar Plugin to Eclipse 4.29.0. When I try to install it directly from eclipse (Help --> Install New Software) , the following error comes up: I tried to download the Jar ...
Tobi123's user avatar
  • 101
1 vote
0 answers
43 views

An application is deployed as a war file. It contains a dependency "a" as a jar file inside the war file. "a" has its own dependency "b", embedded inside it, so "a&...
Z.T.'s user avatar
  • 969
-1 votes
1 answer
89 views

According to information found here: https://github.com/sendgrid/sendgrid-java, I should be able to download the sendgrid "fat" jar and use that without needing additional dependancies, but ...
splashout's user avatar
  • 573
-1 votes
1 answer
573 views

The following code works correctly when fired from the IDE (Eclipse); that is, the documents in src/main/resources/static are being served to the browser: import org.apache.catalina.Context; import ...
DBE's user avatar
  • 363
1 vote
0 answers
82 views

I'm trying to add jcharset ([https://www.freeutils.net/source/jcharset/]) to my project, by I couldn't archive it for the last few days. Let's I describe my env: spring boot fat jar java 17 docker ...
Ivan Bautrukevich's user avatar
0 votes
1 answer
468 views

While trying to create a jar for a Flink Batch program to runs on EMR, I am running into conflicts with versions of flink-shaded-guava jar. pom.xml <dependency> <groupId>org....
SergeiProgrammer's user avatar
1 vote
0 answers
123 views

Sorry if the question was already answered, I didn't understand the other threads. I have a springboot project that have maven dependency on 2 java projects packaged as jboss-sar on our repository. ...
joploya's user avatar
  • 39
2 votes
1 answer
4k views

When I try to build with ant single jar file which uses jar-in-jar-loader everything inside looks as expected. The manifest content is Manifest-Version: 1.0 Ant-Version: Apache Ant 1.10.14 Created-By: ...
rainbow's user avatar
  • 1,313
1 vote
1 answer
1k views

As part of fixing vulnerable dependencies, I want to remove/upgrade a few dependencies let's say json-smart. But in my project, even after excluding the dependency and adding it exclusively, Azure ...
Abhisek Dash's user avatar
0 votes
1 answer
303 views

I've that gradle.build file: import com.github.jengelman.gradle.plugins.shadow.tasks.ConfigureShadowRelocation import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar plugins { id 'java'...
Anonymous's user avatar
1 vote
2 answers
1k views

Where is documentation on exactly what format of contents of a ZIP file that AWS Lambda supports for Java deployments? Sure, I've read Deploy Java Lambda functions with .zip or JAR file archives and a ...
Garret Wilson's user avatar
0 votes
0 answers
359 views

I am relatively new in Java programming and try to set up a Swing-based GUI with some action buttons (including ActionListener and ActionPerformed sections) as a first project. So far, I managed to ...
Nose1's user avatar
  • 1
4 votes
1 answer
653 views

I want to generate a fat-aar of an app module and use it as a dependency in another app. I have used this library to generate the fat-aar. I have an app module which is converted as a library module ...
hasan_shaikh's user avatar
  • 1,500
1 vote
0 answers
201 views

I'm trying to register a custom CharsetProvider. As suggested in the https://stackoverflow.com/questions/39641604/spring-boot-1-4-x-and-custom-charsetprovider post we upgraded our application to use ...
Adarsh Mishra's user avatar
0 votes
1 answer
555 views

I built a fat jar using the Gradle Shadow Plugin like so: tasks { "build" { dependsOn(shadowJar) } shadowJar { mergeServiceFiles { var path = "...
buzoherbert's user avatar
  • 1,688
-1 votes
1 answer
126 views

I have created a fat-jar for my apache camel 3 route. I put that on my raspberry pi (bullseye) in /opt/myhome and could start it successfully with java 17 (also works with sudo): /usr/bin/java -jar /...
PowerStat's user avatar
  • 3,863
2 votes
0 answers
642 views

Context: Windows 10/Linux Ubuntu 8 LTS Spark: 3.3.0 (spark-3.3.0-bin-hadoop3) I'm running spark-submit with a fat jar, but I receive a "jar does not exists" from DependencyUtils, even if the ...
LorenzoGi's user avatar
  • 276
1 vote
1 answer
829 views

I use version Gradle 6.8.3 I want to use gradle clean build, but I have cannot make fatJar use gradle. Here is my task for fatJar task fatJar(type: Jar) { manifest { attributes '...
jujol's user avatar
  • 21
-1 votes
1 answer
173 views

I have a library/sdk in which I created a shaded pom java-sdk-1.0.0-SNAPSHOT-shaded.pom using maven shade plugin . which contains all jars and classes which are used as dependencies . Now I want to ...
Dr Drake Ramoray's user avatar
0 votes
1 answer
185 views

Nightcode has this implemented https://github.com/oakes/Nightcode/blob/2e112c59cddc5fdec96059a08912c73b880f9ae8/deps.edn#L20 but for some reason it does not work just by copying code ; does not work {...
Sergei-Udris's user avatar
0 votes
1 answer
266 views

Following this guide, I have configured my Quarkus application to return a custom error page when a file is not found in META-INF/resources/. @ApplicationScoped public class FileNotFoundHandler { ...
j.a's user avatar
  • 31

1
2 3 4 5
7