jasperreports-fonts-6.19.1.pom 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>net.sf.jasperreports</groupId>
  5. <artifactId>jasperreports-fonts</artifactId>
  6. <version>6.19.1</version>
  7. <packaging>jar</packaging>
  8. <name>JasperReports Font Extension</name>
  9. <description>JasperReports Font Extension</description>
  10. <url>http://jasperreports.sourceforge.net</url>
  11. <organization>
  12. <name>TIBCO Software Inc.</name>
  13. <url>https://www.jaspersoft.com/</url>
  14. </organization>
  15. <licenses>
  16. <license>
  17. <name>GNU Lesser General Public License</name>
  18. <url>http://jasperreports.sourceforge.net/license.html</url>
  19. <distribution>repo</distribution>
  20. </license>
  21. </licenses>
  22. <developers>
  23. <developer>
  24. <id>teodord</id>
  25. <name>Teodor Danciu</name>
  26. <email>teodord@users.sourceforge.net</email>
  27. <url>http://sourceforge.net/users/teodord</url>
  28. <organization>TIBCO Software Inc.</organization>
  29. <organizationUrl>http://www.jaspersoft.com</organizationUrl>
  30. <roles>
  31. <role>architect</role>
  32. <role>developer</role>
  33. </roles>
  34. <timezone>+2</timezone>
  35. </developer>
  36. </developers>
  37. <scm>
  38. <connection>scm:git:https://github.com/TIBCOSoftware/jasperreports.git</connection>
  39. <tag>6.19.1</tag>
  40. <url>https://github.com/TIBCOSoftware/jasperreports</url>
  41. </scm>
  42. <properties>
  43. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  44. </properties>
  45. <build>
  46. <sourceDirectory>./</sourceDirectory>
  47. <resources>
  48. <resource>
  49. <directory>./</directory>
  50. <includes>
  51. <include>**/jasperreports_extension.properties</include>
  52. <include>**/fonts.xml</include>
  53. <include>**/*.ttf</include>
  54. <include>**/*.otf</include>
  55. <include>**/*.eot</include>
  56. <include>**/*.woff</include>
  57. <include>**/*.svg</include>
  58. <include>**/LICENSE</include>
  59. </includes>
  60. </resource>
  61. </resources>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.codehaus.mojo</groupId>
  65. <artifactId>buildnumber-maven-plugin</artifactId>
  66. <version>1.4</version>
  67. <executions>
  68. <execution>
  69. <phase>validate</phase>
  70. <goals>
  71. <goal>create</goal>
  72. </goals>
  73. </execution>
  74. </executions>
  75. <configuration>
  76. <doCheck>true</doCheck>
  77. <doUpdate>false</doUpdate>
  78. </configuration>
  79. </plugin>
  80. <plugin>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-jar-plugin</artifactId>
  83. <version>3.1.0</version>
  84. <configuration>
  85. <archive>
  86. <manifestEntries>
  87. <Built-By>${project.organization.name}</Built-By>
  88. </manifestEntries>
  89. <manifestSections>
  90. <manifestSection>
  91. <name>net/sf/jasperreports/fonts/</name>
  92. <manifestEntries>
  93. <Specification-Title>${project.name}</Specification-Title>
  94. <Specification-Version>${project.version}</Specification-Version>
  95. <Specification-Vendor>${project.organization.name}</Specification-Vendor>
  96. <Implementation-Title>net.sf.jasperreports.fonts</Implementation-Title>
  97. <Implementation-Version>${project.version}-${buildNumber}</Implementation-Version>
  98. <Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
  99. </manifestEntries>
  100. </manifestSection>
  101. </manifestSections>
  102. </archive>
  103. </configuration>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. </project>