-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can not read customize property from webapp #27
Comments
my customize property:higo-build-time Manifest-Version: 1.0
higo-build-time: 20150820064447
Build-Jdk: 1.7.0_79
Built-By: janwen
Created-By: Maven Integration for Eclipse |
@yegor256 please pay attention to this issue |
@JanWen you need to give more information about your configuration, etc. Also, you may turn on logging for |
I believe that a MANIFEST.MF that is not in a jar file is not read. So if you don't archive your classes in a webapp the war files MANIFEST.MF is not processed. I was unable to read web-app MANIFEST.MF until I added the following to my pom <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archiveClasses>true</archiveClasses>
</configuration>
</plugin> |
The text was updated successfully, but these errors were encountered: