forked from Steven/DeepJ
Java Wrapper for DeepL API (Improved)
added ".of()" to Translator.java so you don't have to type "new" so many times added null protection to request added ability to set authKey to requests |
||
---|---|---|
.idea | ||
gradle/wrapper | ||
src/main/java/com/the5gi/DeepJ | ||
.gitignore | ||
build.gradle | ||
gradlew | ||
gradlew.bat | ||
LICENSE | ||
README.md | ||
settings.gradle |
DeepJ
Quick Setup
Gradle
Go to your build.gradle file and type:
repositories {
maven {
url "https://git.nevets.tech/api/packages/5gi/maven"
}
}
and
dependencies {
implementation group: 'com.the5gi.deepj', name: 'DeepJ', version: 'VERSION'
}
Maven
Go to your pom.xml file and type:
<repositories>
<repository>
<id>gitea</id>
<url>https://git.nevets.tech/api/packages/5gi/maven</url>
</repository>
</repositories>
and
<dependencies>
<dependency>
<groupId>com.the5gi.deepj</groupId>
<artifactId>DeepJ</artifactId>
<version>1.2.5</version>
</dependency>
</dependencies>
Info
To see more details, see the wiki.
DeepJ is a Java Wrapper for the DeepL Free Public API. This was originally made by Steven (Forked From) and Updated by 5gi