project renamed envelope

This commit is contained in:
2021-09-25 21:08:21 +02:00
parent 9f085af24a
commit 5aea49219f
17 changed files with 39 additions and 384 deletions

View File

@@ -5,6 +5,6 @@ java {
jar {
manifest {
attributes "Automatic-Module-Name" : "net.woggioni.executable.jar"
attributes "Automatic-Module-Name" : "net.woggioni.envelope"
}
}

View File

@@ -1,4 +1,4 @@
package net.woggioni.executable.jar;
package net.woggioni.envelope;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;

View File

@@ -1,4 +1,4 @@
package net.woggioni.executable.jar;
package net.woggioni.envelope;
import java.util.Calendar;
import java.util.GregorianCalendar;
@@ -10,8 +10,8 @@ public class Constants {
public static final String LIBRARIES_FOLDER = "LIB-INF";
public static final String METADATA_FOLDER = "META-INF";
public static final int BUFFER_SIZE = 0x10000;
public static final String DEFAULT_LAUNCHER = "net.woggioni.executable.jar.Launcher";
public static final String AGENT_LAUNCHER = "net.woggioni.executable.jar.JavaAgentLauncher";
public static final String DEFAULT_LAUNCHER = "net.woggioni.envelope.Launcher";
public static final String AGENT_LAUNCHER = "net.woggioni.envelope.JavaAgentLauncher";
public static final String JAVA_AGENTS_FILE = METADATA_FOLDER + "/javaAgents.properties";
public static class ManifestAttributes {