Tagged Questions
The manifest.mf tag has no wiki summary.
17
votes
4answers
5k views
Reading my own Jar's Manifest
I need to read the Manifest file, which delivered my class, but when I use:
getClass().getClassLoader().getResources(...)
I get the MANIFEST from the first .jar loaded into the Java Runtime.
My app ...
8
votes
8answers
8k views
How do you create a MANIFEST.MF that's available when you're testing and running from a jar in production?
I've spent far too much time trying to figure this out. This should be the simplest thing and everyone who distributes Java applications in jars must have to deal with it.
I just want to know the ...
6
votes
3answers
5k views
Bundling native dll with jar
I need to include native lib (jnotify but I think that it does't matter) to my jar. I wont to do it with NetBeans.
I added Bundle-NativeCode: /lib/jnotify.dll; osname=win32 to my manifest.mf file and ...
5
votes
2answers
10k views
Apache ant manifest class-path?
I have a standard project layout for a java project:
project /
src /
source_file_1.java
...
source_file_N.java
build /
classes /
...
4
votes
2answers
2k views
include external jar when running java -jar
From my readings, when you execute a command as follows:
java -jar foo.jar
Then the main classpath is ignored and the classpath is taken from the manifest file.
Further, the classpath declared on ...
3
votes
1answer
105 views
Eclipse Plugin Settings - Activation and Singleton Settings
In the Eclipse manifest editor, there exist check boxes for enabling/disabling plug-in activation and singleton behavior, as shown below:
[ ] Activate this plug-in when one of its classes is loaded
[ ...
3
votes
3answers
47 views
Conventions for additional content of the manifest.mf file?
Are there any conventions for the MANIFEST.MF file in a Java JAR beyond the JAR specification? Interesting information I might want to include are: Build date and other build information, SVN ...
3
votes
6answers
423 views
Using tools that the JDK and/or JRE provide, is there a way to view the Manifest file for a given JAR?
I'm able to read the Manifest file inside of my Java code, but I would also like to know if it's possible, and if it is, how to open up a JAR file from the command line and view its Manifest.MF file, ...
2
votes
1answer
36 views
Best practices for embedding SVN version number in Java jar manifest?
I see questions like How to get revision number from subversion using maven? but are there any standards (defacto or otherwise) for which actual fields to use in the manifest, for the version # and ...
2
votes
2answers
802 views
How to build a jar using an own MANIFEST.MF in Eclipse
I have a custom MANIFEST.MF in my java-project in Eclipse.
When exporting the project to a jar, I choose
Use existing manifest from workspace
Extracting the .jar shows that eclipse generated ...
2
votes
2answers
601 views
How to read manifest.mf from POJO class (not a servlet) instantiated by spring?
I have a simple service called BuildNumberService which would be instantiated by spring.
I'm trying to find the cleanest code for the class to find out the MANIFEST.MF file from the jar file it has ...
2
votes
2answers
829 views
Adding Spring Configuration File to classpath via Manifest file
I have a WAR project and I am trying to store spring configuration files within the /WebContent/WEB-INF/Spring/ folder (as required by my employer), but when I do that I have not found a way to be ...
2
votes
2answers
123 views
Create jar file that can be executed on any machine
I have simple java app that prints `hello world!' on console. It is packed in app.jar.
Jar structure:
main/Hello.class - my main class with singe println method
META-INF/MANIFEST.MF
...
2
votes
1answer
398 views
How do I make the manifest available during a Maven/Surefire unittest run “mvn test”?
How do I make the manifest available during a Maven/Surefire unittest run "mvn test" ?
I have an open-source project that I am converting from Ant to Maven, including its unit tests. Here's the ...
2
votes
5answers
735 views
How to Create a runnable jar that uses external jar files in dynamic locations
I've programmed an application that take about 300 kilobytes.
The jar files that it uses (library) take about 10 megz.
These library jar files are used in other applications I wrote and so I would ...
1
vote
1answer
28 views
how to read manifest.mf in an j2me application
I'm developing a j2me application using Netbeans IDE and LWUIT library. I need to read some attributes of MANIFEST.MF that are included in jar file.
What all I found in net, either have conflict with ...
1
vote
3answers
218 views
How to read MANIFEST.MF file from JAR using Bash
I need to read MANIFEST.MF maven manifest file from "some.jar" using bash
1
vote
1answer
226 views
setting classpath in ant build
my classpath defined in the MANIFEST.MF files references to a dir with all the required jars in it, and I would like to add a refference to a jar that is not located inside that directory. This jar ...
1
vote
1answer
199 views
OSGi MANIFEST.MF files browser
We're developing a big application using osgi (felix, spring-dm, maven-plugin).
I'd like to add to the doc a complete graph of all dependencies (import/export from each bundle).
This is both for ...
1
vote
2answers
2k views
Unable to add classpath in MANIFEST.MF in maven2
I am trying to add class path in MANIFEST.MF in maven2 with following code but it is unable to add it.
<build>
<pluginManagement>
<plugins>
<plugin>
...
1
vote
1answer
990 views
manifest.mf is overwritten by ecplise during jar export
I would like make an executable jar archive with eclipse.
So into my project I created file src/META-INF/MANIFEST.MF :
Manifest-Version: 1.0
Main-Class: MainClass
Class-Path: .
But when I export ...
1
vote
2answers
197 views
How to specify the jar file in manifest?
I have created a mail.jar file and mywar.war file. What I need to set into the manifest.mf use the mail.jar as a library?
1
vote
2answers
1k views
Is it possible to add a custom manifest to a Java library compiled in Netbeans 6.7.1?
I tried adding manifest.file=${src.dir}/manifest.mf to project.properties, but looking through the build-impl.xml I see that the manifest.available is usually accompanied by main.class condition, so ...
1
vote
2answers
4k views
Can I call class files that are within a jar library located in another jar file?
I am trying to access the class files packaged as a library but unfortunately the jar libraries should be packaged in another jar file.
As an example say I have a.jar that contains some class ...
1
vote
6answers
4k views
Netbeans manifest
Is it possible to add entries to the manifest.mf file of jars generated by netbeans?
to build an osgi bundle for instance.
1
vote
4answers
2k views
Tomcat cant pick class-path from Manifest file
Tomcat Version :5.0.28
JDK: 1.5.0.14
The problem:
I am using both hibernate and struts
We are not on the latest and greatest of the version for these libraries
So- both need a different version of ...
1
vote
2answers
1k views
How to obfuscate an OSGi bundle with ProGuard?
I am currently trying to obfuscate my Eclipse RCP application with ProGuard. The problem is that it obfuscates the package names (the class My.Package.Class turns into something like a.b.c), but keeps ...
1
vote
2answers
7k views
Java Manifest.mf classpath issues
I've been trying to run a jar file - let's call it test.jar - that uses the Sybase jconn3.jar on a Unix system.
I have created a MANIFEST.MF file that has the following:
Class-Path: ...
0
votes
1answer
26 views
Executing jar file with jars in folders
I am inside a E:/foo/bar folder inside windows environment. I have a jar file as E:/foo/bar/a.jar. Also inside foo/bar there are lot of jar files. Also under the foo/bar there is another directory ...
0
votes
2answers
44 views
Problems to put log4.properties classpath
I'm having some problems putting my log4j.properties file on classpath. I can use it when I'm developing (Eclipse Indigo) but, when I export my app as a JAR, I can't.
I've made by hand a MANIFEST.MF ...
0
votes
1answer
73 views
Unification of .jar and .jad files in a J2ME application
currently, I am developing a J2ME application for mobiles using LWUIT library. The build result of my project includes a .jar file along with a .jad file. I wonder, is there any way to unify these to ...
0
votes
1answer
29 views
My .jar file is not executable created from Netbeans, why?
Ok, so I am very new to Java. I find it really hard. I have an assignment from school that is almost finished, except one thing. Creating a runnable .jar file. I have googled myself crazy.. When I ...
0
votes
0answers
21 views
How to set default username for MANIFEST.MF for my computer?
I'm looking for a way to set the "built by" entry in my MANIFEST.MF to something different from my user name. I can do it at build time with -Duser.name=<whatIwant> but I'd like to have it ...
0
votes
1answer
61 views
Different MANIFEST.MF for default jar-file and tests.jar
I'm trying to create different MANIFEST.MF files for the jar-packaged artifacts and the test-jar-packaged. The maven-jar-plugin being used to add additional stuff into the MANIFEST.MF - that works ...
0
votes
1answer
22 views
How to define an empty-value attribute in MANIFEST.MF?
I need to add an attribute to MANIFEST.MF with an empty value. This doesn't work:
Foo-Attrib:
java.util.jar.Manifest can't load such a file and throws an exception. What is a possible workaround?
0
votes
0answers
20 views
how to organize the content of MANIFEST?
Most of the jar files contain a file named META-INF/MANIFEST.MF, and it provides some information about the class in the jar files, but when I execute the code below, I can't output all of the jar ...
0
votes
3answers
79 views
jar -uf is deleting the file inside the jar
I am using jar -uf to update my MANIFEST.MF file like this:
a. jar xf jarfile.jar META-INF\MANIFEST.MF
b. edit the file
c. jar uf jarfile.jar META-INF\MANIFEST.MF
But the 'uf' command is removing ...
0
votes
0answers
62 views
Build JARs from same Project in RAD (Rational Developer)
I'm trying to figure out how to build different JARs from the same project in IBM Rational Application Developer.
First off, the reason they are not separate projects is because some JARs use the ...
0
votes
2answers
62 views
The MANIFEST.MF file won't load when I compiled it on my macbook
I created a simple test jar executable file, but when I tried to run it, it wouldn't work because it said that the Main-Class manifest attribute from jar.jar wouldn't load. The manifest file (which ...
0
votes
0answers
81 views
Eclipse export deployable plug-ins and fragments compilation error package cannot be resolved
I have two eclipse RCP plug-ins: A and B. The B plugin depends on A plugin.
The A plugin contains some java package C, which is made exported through MANIFEST.MF.
The B plugin defined its dependency ...
0
votes
0answers
156 views
Access MANIFEST.MF attributes from jsp or servlet [closed]
Possible Duplicate:
How do I read the manifest file for a webapp running in apache tomcat?
Is there a way to access the attributes of the META-INF/MANIFEST.MF from a jsp or a servlet?
0
votes
1answer
179 views
Eclipse Dependencies in MANIFEST.MF
I'm new to this group. Thanks for any help.
I'm using Eclipse and subversion (svn) in the work environment. I imported project A from the svn and renamed it to project B using Refactor. I also ...
0
votes
2answers
211 views
IllegalAccessError when adding Rampart to the POM's dependencies
We tried adding Rampart to our module's POM file and after doing so our ear can no longer start with the following exception:
java.lang.IllegalAccessError: tried to access method ...
0
votes
1answer
29 views
Antenna WtkPackage produces duplicate MANIFEST.MF files
Got a strange problem with Antenna - I've recently switched over to a new laptop, and now when I copied my build setup across to it it started exhibiting strange behaviour. When I call wtkpackage (in ...
0
votes
2answers
210 views
How to include jars in manifest file automatically
I am working with not web based application which uses bunch of external jars, we are few developers on this project and constantly add, remove jars each time jar is being added or removed we manually ...
0
votes
1answer
147 views
What main class should i give in my manifest.mf of a jar file which has an applet without main class?
i am having a applet(not having a main class) and i am having song file (beep.au) and picture file ( a.gif){these 2 files i have used in my applet} and i have created a jar file a.jar which contains ...
0
votes
1answer
142 views
Why is my jar producing a NoClassDefFoundError when the class is listed in MANIFEST.MF?
I have created jar in the following folder usr/local/bin/niidle.jar and my MANIFEST.MF file is as follows:
Manifest-Version: 1.0
Main-Class: com.ensarm.niidle.web.scraper.NiidleScrapeManager
...
0
votes
1answer
168 views
How to get name of JAR which is a desktop application run from?
I have created simple library AppInfo providing an easy way to show always valid, automatic updated information about a version of running software in Java applications, which is especially useful in ...
0
votes
2answers
1k views
reading MANIFEST.MF file from jar file using JAVA
Is there any way i can read the contents of a jar file. like i want to read the manifest file in order to find the creator of the jar file and version. Is there any way to achieve the same.
0
votes
1answer
1k views
How to update digests in Android MANIFEST.MF?
We need to enable our customers to update some components in Android application, like icon/logo, dictionary file etc.
I saw the .APK can be opened like a JAR with 7-zip, and hope files can be ...