<manifestEntries> <YOURTAG> value </YOURTAG> </manifestEntries>
იხილეთ მაგალითაი:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<build> | |
<finalName>${artifactId}-${version}</finalName> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-jar-plugin</artifactId> | |
<configuration> | |
<archive> | |
<manifest> | |
<addClasspath>false</addClasspath> | |
<classpathPrefix>dependency/</classpathPrefix> | |
</manifest> | |
<manifestEntries> | |
<Trusted-Library>true</Trusted-Library> | |
<URL>${project.url}</URL> | |
</manifestEntries> | |
</archive> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-jarsigner-plugin</artifactId> | |
</plugin> | |
</plugins> | |
</build> |
შედეგი კი გვენქება დაახლოებით ასეთი.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Manifest-Version: 1.0 | |
Trusted-Library: true | |
URL: vakhokor.blogspot.com | |
Build-Jdk: 1.7.0_21 | |
Built-By: v.koroghlishvili | |
Created-By: Apache Maven | |
Archiver-Version: Plexus Archiver |
No comments:
Post a Comment