META-INF.maven.com.gluonhq.rich-text-area.pom.xml Maven / Gradle / Ivy
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.gluonhq</groupId> <artifactId>rich-text-area</artifactId> <version>1.2.0</version> <packaging>jar</packaging> <name>Rich Text Area</name> <description>Rich text control for JavaFX</description> <inceptionYear>2022</inceptionYear> <url>https://github.com/gluonhq/rich-text-area</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>11</maven.compiler.release> <javafx.version>22</javafx.version> <gpg.plugin.version>1.6</gpg.plugin.version> </properties> <dependencies> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> <version>${javafx.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.gluonhq</groupId> <artifactId>emoji</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.9.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testfx</groupId> <artifactId>testfx-junit5</artifactId> <version>4.0.18</version> </dependency> </dependencies> <developers> <developer> <name>Eugene Ryzhikov</name> <email>[email protected]</email> <organization>Gluon</organization> <organizationUrl>https://www.gluonhq.com</organizationUrl> </developer> <developer> <name>José Pereda</name> <email>[email protected]</email> <organization>Gluon</organization> <organizationUrl>https://www.gluonhq.com</organizationUrl> </developer> <developer> <name>Abhinay Agarwal</name> <email>[email protected]</email> <organization>Gluon</organization> <organizationUrl>https://www.gluonhq.com</organizationUrl> </developer> </developers> <scm> <url>https://github.com/gluonhq/rich-text-area</url> <connection>scm:git:git://github.com/gluonhq/rich-text-area.git</connection> <developerConnection>scm:git:ssh://[email protected]:gluonhq/rich-text-area.git</developerConnection> </scm> <organization> <name>Gluon</name> <url>https://www.gluonhq.com</url> </organization> <issueManagement> <system>GitHub</system> <url>https://github.com/gluonhq/rich-text-area/issues</url> </issueManagement> <licenses> <license> <name>GNU GENERAL PUBLIC LICENSE, Version 3</name> <url>http://www.gnu.org/licenses/gpl-3.0.html</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.2</version> <executions> <execution> <id>javadoc</id> <goals> <goal>jar</goal> </goals> <configuration> <additionalJOption>-javafx</additionalJOption> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M7</version> <configuration> <trimStackTrace>false</trimStackTrace> <argLine>--add-opens javafx.graphics/com.sun.javafx.application=ALL-UNNAMED</argLine> <systemProperties> <property> <name>java.util.logging.config.file</name> <value>src/test/resources/logging.properties</value> </property> </systemProperties> </configuration> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.9.2</version> </dependency> </dependencies> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <!-- This is necessary for gpg to not try to use the pinentry programs --> <!-- Only required for GPG >= 2.2 --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy