I am trying to get info recorded to the manifest-file, but I dont get anything except below in my manifest file after the build
Manifest-Version: 3
Specification-Title: 3
This is my build task in pom, where i tried giving manifest entries true, but in vain :(
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<executions>
<execution>
<id>deployJarToRepositoryBasedOnVersion</id>
<phase>package</phase>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries/><addDefaultSpecificationEntries/>
</manifest>
</archive>
<artifactId>${component-name}</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
<repositoryId>${jfrog.repository.id}</repositoryId>
<url>${jfrog.repository.url}</url>
<file>${project.build.directory}/classes/${component-name}.jar</file>
<packaging>jar</packaging>
</configuration>
</execution>
</executions>
</plugin>