forked from 5gi/DeepJ
Compare commits
2 Commits
1.2.0
...
1.2.1-e0f5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0b634901ff | ||
|
|
1b2f247a62 |
@@ -3,9 +3,9 @@ plugins {
|
|||||||
id 'maven-publish'
|
id 'maven-publish'
|
||||||
id 'com.github.johnrengelman.shadow' version '5.2.0'
|
id 'com.github.johnrengelman.shadow' version '5.2.0'
|
||||||
}
|
}
|
||||||
|
apply plugin: 'maven-publish'
|
||||||
group 'tech.nevets.deepj'
|
group 'com.the5gi.deepj'
|
||||||
version '1.1.0'
|
version '1.2.1'
|
||||||
|
|
||||||
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_11
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_11
|
||||||
|
|
||||||
@@ -17,8 +17,6 @@ dependencies {
|
|||||||
implementation group: 'org.json', name: 'json', version: '20210307'
|
implementation group: 'org.json', name: 'json', version: '20210307'
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'maven-publish'
|
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
publications{
|
publications{
|
||||||
publish(MavenPublication) {
|
publish(MavenPublication) {
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
package tech.nevets.DeepJ;
|
package com.the5gi.DeepJ;
|
||||||
|
|
||||||
import org.json.JSONArray;
|
import org.json.JSONArray;
|
||||||
import org.json.JSONObject;
|
import org.json.JSONObject;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
@@ -11,7 +12,6 @@ import java.nio.charset.StandardCharsets;
|
|||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
public class Translator {
|
public class Translator {
|
||||||
//TODO Test class to make sure multiple contructors work.
|
|
||||||
public static String globalAuthKey = "null";
|
public static String globalAuthKey = "null";
|
||||||
|
|
||||||
public static void setGlobalAuthKey(String key) {
|
public static void setGlobalAuthKey(String key) {
|
||||||
Reference in New Issue
Block a user