- Removed version from Build output

- Changed IP of Remote Server
This commit is contained in:
TheHomecraft 2025-10-21 00:47:33 +02:00
parent 6a80a92f82
commit 329a462fca
3 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ plugins {
}
group = 'de.thehomecraft'
version = '1.0-SNAPSHOT'
version = ''
repositories {
mavenCentral()

View File

@ -16,7 +16,7 @@ import java.util.Objects;
public class S3Uploader {
public void uploadDirectory(File baseDir, File currentDir) throws Exception {
MinioClient client = MinioClient.builder()
.endpoint("http://192.168.178.24:9000")
.endpoint("http://85.214.239.211:9004")
.credentials(new CredProvid().s3AccessKey, new CredProvid().s3SecretKey)
.build();
@ -45,7 +45,7 @@ public class S3Uploader {
public void deleteRemoteDirectory(String repoName) throws Exception {
String bucketName = "repofiles";
MinioClient client = MinioClient.builder()
.endpoint("http://192.168.178.24:9000")
.endpoint("http://85.214.239.211:9004")
.credentials(new CredProvid().s3AccessKey, new CredProvid().s3SecretKey)
.build();

View File

@ -10,7 +10,7 @@ public class SendSocketMessage {
public void send(String text, String endpoint){
URI serverUri;
try {
serverUri = new URI("ws://192.168.178.24:7000/repo/"+endpoint);
serverUri = new URI("ws://85.214.239.211:7000/repo/"+endpoint);
} catch (URISyntaxException e) {
throw new RuntimeException(e);
}