| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>net.sf.jasperreports</groupId>
- <artifactId>jasperreports-fonts</artifactId>
- <version>6.19.1</version>
- <packaging>jar</packaging>
- <name>JasperReports Font Extension</name>
- <description>JasperReports Font Extension</description>
- <url>http://jasperreports.sourceforge.net</url>
- <organization>
- <name>TIBCO Software Inc.</name>
- <url>https://www.jaspersoft.com/</url>
- </organization>
- <licenses>
- <license>
- <name>GNU Lesser General Public License</name>
- <url>http://jasperreports.sourceforge.net/license.html</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <developers>
- <developer>
- <id>teodord</id>
- <name>Teodor Danciu</name>
- <email>teodord@users.sourceforge.net</email>
- <url>http://sourceforge.net/users/teodord</url>
- <organization>TIBCO Software Inc.</organization>
- <organizationUrl>http://www.jaspersoft.com</organizationUrl>
- <roles>
- <role>architect</role>
- <role>developer</role>
- </roles>
- <timezone>+2</timezone>
- </developer>
- </developers>
- <scm>
- <connection>scm:git:https://github.com/TIBCOSoftware/jasperreports.git</connection>
- <tag>6.19.1</tag>
- <url>https://github.com/TIBCOSoftware/jasperreports</url>
- </scm>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <build>
- <sourceDirectory>./</sourceDirectory>
- <resources>
- <resource>
- <directory>./</directory>
- <includes>
- <include>**/jasperreports_extension.properties</include>
- <include>**/fonts.xml</include>
- <include>**/*.ttf</include>
- <include>**/*.otf</include>
- <include>**/*.eot</include>
- <include>**/*.woff</include>
- <include>**/*.svg</include>
- <include>**/LICENSE</include>
- </includes>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>buildnumber-maven-plugin</artifactId>
- <version>1.4</version>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>create</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <doCheck>true</doCheck>
- <doUpdate>false</doUpdate>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>3.1.0</version>
- <configuration>
- <archive>
- <manifestEntries>
- <Built-By>${project.organization.name}</Built-By>
- </manifestEntries>
- <manifestSections>
- <manifestSection>
- <name>net/sf/jasperreports/fonts/</name>
- <manifestEntries>
- <Specification-Title>${project.name}</Specification-Title>
- <Specification-Version>${project.version}</Specification-Version>
- <Specification-Vendor>${project.organization.name}</Specification-Vendor>
- <Implementation-Title>net.sf.jasperreports.fonts</Implementation-Title>
- <Implementation-Version>${project.version}-${buildNumber}</Implementation-Version>
- <Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
- </manifestEntries>
- </manifestSection>
- </manifestSections>
- </archive>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|