You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Dennis Lundberg (JIRA)" <ji...@codehaus.org> on 2011/01/27 20:48:57 UTC

[jira] Updated: (MSHARED-182) manifestEntry seems not to work correctly

     [ http://jira.codehaus.org/browse/MSHARED-182?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dennis Lundberg updated MSHARED-182:
------------------------------------

    Component/s: maven-archiver
    Description: 
hope this is the correct place ot file an issue about maven-jar-plugin
{code:xml}
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>2.3.1</version>
				<configuration>
					<archive>
						<manifest>
							<addClasspath>true</addClasspath>
							<mainClass>eu.ngong.xslt.App</mainClass>
							<classpathPrefix>/usr/share/java/</classpathPrefix>
						</manifest>
						<manifestEntries>
							<Name>xxx</Name>
							<Content-Type>yyy</Content-Type>
						</manifestEntries>
					</archive>
				</configuration>
			</plugin>
{code}

does not work: silently neither a classpass is generated nor the requested entries Name and Content-Type.

If I exchange the manifestEntries by 
{code:xml}
						<manifestEntries>
							<key>value</key>
						</manifestEntries>
{code}

it works: the classpath is generated in MANIFEST.MF as well as the "key: value" line.

If I exchange the manifestEntries by 
{code:xml}
						<manifestEntries>
							<Key>value</Key>
						</manifestEntries>
{code}

it does not work: the classpath is generated but not the "Key: value" line.



  was:
hope this is the correct place ot file an issue about maven-jar-plugin

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>2.3.1</version>
				<configuration>
					<archive>
						<manifest>
							<addClasspath>true</addClasspath>
							<mainClass>eu.ngong.xslt.App</mainClass>
							<classpathPrefix>/usr/share/java/</classpathPrefix>
						</manifest>
						<manifestEntries>
							<Name>xxx</Name>
							<Content-Type>yyy</Content-Type>
						</manifestEntries>
					</archive>
				</configuration>
			</plugin>

does not work: silently neither a classpass is generated nor the requested entries Name and Content-Type.

If I exchange the manifestEntries by 
						<manifestEntries>
							<key>value</key>
						</manifestEntries>
it works: the classpath is generated in MANIFEST.MF as well as the "key: value" line.

If I exchange the manifestEntries by 
						<manifestEntries>
							<Key>value</Key>
						</manifestEntries>
it does not work: the classpath is generated but not the "Key: value" line.




> manifestEntry seems not to work correctly
> -----------------------------------------
>
>                 Key: MSHARED-182
>                 URL: http://jira.codehaus.org/browse/MSHARED-182
>             Project: Maven Shared Components
>          Issue Type: Bug
>          Components: maven-archiver
>         Environment: maven-jar-plugin 2.3.1
>            Reporter: Rolf Schumacher
>            Priority: Blocker
>
> hope this is the correct place ot file an issue about maven-jar-plugin
> {code:xml}
> 			<plugin>
> 				<groupId>org.apache.maven.plugins</groupId>
> 				<artifactId>maven-jar-plugin</artifactId>
> 				<version>2.3.1</version>
> 				<configuration>
> 					<archive>
> 						<manifest>
> 							<addClasspath>true</addClasspath>
> 							<mainClass>eu.ngong.xslt.App</mainClass>
> 							<classpathPrefix>/usr/share/java/</classpathPrefix>
> 						</manifest>
> 						<manifestEntries>
> 							<Name>xxx</Name>
> 							<Content-Type>yyy</Content-Type>
> 						</manifestEntries>
> 					</archive>
> 				</configuration>
> 			</plugin>
> {code}
> does not work: silently neither a classpass is generated nor the requested entries Name and Content-Type.
> If I exchange the manifestEntries by 
> {code:xml}
> 						<manifestEntries>
> 							<key>value</key>
> 						</manifestEntries>
> {code}
> it works: the classpath is generated in MANIFEST.MF as well as the "key: value" line.
> If I exchange the manifestEntries by 
> {code:xml}
> 						<manifestEntries>
> 							<Key>value</Key>
> 						</manifestEntries>
> {code}
> it does not work: the classpath is generated but not the "Key: value" line.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira