MVN

com.fifesoft.rtext : rtext

Maven & Gradle

Jun 12, 2013
1 usages

RText Application · RText is a powerful, cross-platform programmer's text editor written in Java. It is designed to be easy to use, highly customizable and flexible. Part of RText's design is for the source code to be simple, easy to understand, and well documented, so that other programmers can look into its inner-workings and figure out how RText ticks with ease. A good place to start (besides the source code) is the Javadoc for all classes used in the project.

<dependency>
    <groupId>com.fifesoft.rtext</groupId>
    <artifactId>rtext</artifactId>
    <version>2.0.7</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.fifesoft.rtext : rtext to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.0.7
  • Latest Beta: 2.0.0-beta2

All Versions

Choose a version of com.fifesoft.rtext : rtext to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.0.x
rtext-2.0.7
rtext-2.0.6
rtext-2.0.5.1
rtext-2.0.4
rtext-2.0.0-beta2
1.5.x
rtext-1.5.0
1.3.x
rtext-1.3.0
1.1.x
rtext-1.1.0
1.0.x
rtext-1.0.0

How to add a dependency to Maven

Add the following com.fifesoft.rtext : rtext maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.fifesoft.rtext</groupId>
    <artifactId>rtext</artifactId>
    <version>2.0.7</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.fifesoft.rtext : rtext gradle dependency to your build.gradle file:

implementation 'com.fifesoft.rtext:rtext:2.0.7'

Gradle Kotlin DSL: Add the following com.fifesoft.rtext : rtext gradle kotlin dependency to your build.gradle.kts file:

implementation("com.fifesoft.rtext:rtext:2.0.7")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.fifesoft.rtext : rtext sbt scala dependency to your build.sbt file:

libraryDependencies += "com.fifesoft.rtext" % "rtext" % "2.0.7"