One-JAR lets developer package a Java application together with its dependency Jars into a single executable Jar file.

learn more… | top users | synonyms

-1
votes
1answer
29 views

Reference a jar within a jar

I have a jar file that references 6 other jars through a manifest file. I now, however, want to try and compile the jars into one jar file, reasons being: I want them to be cached so the applet does ...
0
votes
1answer
55 views

Creating a single distributable jar file for Android projects which includes other jar files

My objective is to create a single distributable jar file for Android projects which includes a few other jar files. As I understand a "standard" jar file is not allowed to have other jar files ...
1
vote
1answer
106 views

Signing jar created with onejar-maven-plugin throwing stackoverflow exception

I have a jar which is created using onejar-maven-plugin, which is meant to listen to jms messages from tibco and process accordingly. It works fine but when I sign this jar using jarsigner and try to ...
0
votes
1answer
150 views

Calling One-jar jar from Oracle PL/SQL

My customer wants to be able to call a One-jar(using maven plugin all jars are merged into one) jar file from Oracle PL/SQL. Java 1.6, Oracle 11g R2 (enterprise? I think - not sure does it matter?) ...
2
votes
1answer
95 views

Renaming jar files with sbt when using SbtOneJar

When sbt builds a OneJar file using the SbtOneJar plugin it gives the built jar the name [name]_[scala-version]-[version]-one-jar.jar where name is the name of the project, scala-version is the ...
0
votes
3answers
503 views

How to include all dependent Jars within a single non-executable jar?

I am stuck in a very common problem. I am plugging my jar (which has many dependencies on third party vendor) into an application server lib directory. If I just copy my jar along with its ...
3
votes
1answer
235 views

Akka 2.0.4 pulls in both scala 2.9.1 and 2.9.2

I'm using onejar to build an application that uses scala 2.9.2 and akka 2.0.4. When onejar does the build of my application it reports the following: [WARNING] Expected all dependencies to require ...
1
vote
0answers
56 views

Maven: Package “brother” projects

I am working on a big set of projects strongly related to each other and looking for a way to reduce to minimimun the maintenance overhead using a good maven configuration. One of the scenarios which ...
1
vote
1answer
297 views

Embed Tomcat with App in One Fat Jar

I was hoping to combine/embed Tomcat and my web app as onejar aka fat jar but I'm not sure if its possible. Its possible with Jetty using the Maven Shade plugin and Winstone but I tried something ...
0
votes
1answer
283 views

Using JSVC to daemonize a Java app packaged with the Maven One-Jar Plugin

Here is the problem: I have packaged my Java application into a single jar using the Maven plugin One-Jar. Now I want to run the application as a Unix Daemon using JSVC, i.e. Apache Commons Daemon. ...
1
vote
1answer
136 views

Using one-jar to build one jar file

I'm trying to use one-jar to generate one jar file that contains clojure jar file and java class file: Creating one jar file that for execution from Java/Clojure Following the instruction, I could ...
2
votes
1answer
209 views

OneJar and dynamic class loading

We're currently investigating the use of OneJar in our application (for a number reasons), but our application makes use of a number of custom URLClassloaders to load application extensions. When ...