rich-text-area-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.gluonhq</groupId> <artifactId>rich-text-area-parent</artifactId> <version>1.0.0</version> </dependency>
<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-parent</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <name>Rich Text Area Parent</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>18</javafx.version> <gpg.plugin.version>1.6</gpg.plugin.version> </properties> <modules> <module>rta</module> <module>samples</module> </modules> <developers> <developer> <name>Eugene Ryzhikov</name> <email>eugene.ryzhikov@gluonhq.com</email> <organization>Gluon</organization> <organizationUrl>https://www.gluonhq.com</organizationUrl> </developer> <developer> <name>José Pereda</name> <email>jose.pereda@gluonhq.com</email> <organization>Gluon</organization> <organizationUrl>https://www.gluonhq.com</organizationUrl> </developer> <developer> <name>Abhinay Agarwal</name> <email>abhinay.agarwal@gluonhq.com</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://git@github.com: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-M5</version> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.8.2</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </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> </plugins> </build> </profile> </profiles> </project>