publish v0.1
This commit is contained in:
parent
2b5e08c60a
commit
d8da67b081
3 changed files with 12 additions and 3 deletions
9
pom.xml
9
pom.xml
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
<groupId>ru.redrise</groupId>
|
<groupId>ru.redrise</groupId>
|
||||||
<artifactId>libKonogonka</artifactId>
|
<artifactId>libKonogonka</artifactId>
|
||||||
<version>0.1-SNAPSHOT</version>
|
<version>0.1</version>
|
||||||
|
|
||||||
<url>https://git.redrise.ru/desu/${project.name}}/</url>
|
<url>https://git.redrise.ru/desu/${project.name}}/</url>
|
||||||
<description>
|
<description>
|
||||||
|
@ -26,6 +26,13 @@
|
||||||
</license>
|
</license>
|
||||||
</licenses>
|
</licenses>
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<repository>
|
||||||
|
<id>redrise</id>
|
||||||
|
<url>https://repo.redrise.ru/releases</url>
|
||||||
|
</repository>
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
<developers>
|
<developers>
|
||||||
<developer>
|
<developer>
|
||||||
<id>developer.su</id>
|
<id>developer.su</id>
|
||||||
|
|
|
@ -15,7 +15,7 @@ status = error
|
||||||
name = DebugConfigDevelopmentOnlyVerbose
|
name = DebugConfigDevelopmentOnlyVerbose
|
||||||
|
|
||||||
# Configure root logger level
|
# Configure root logger level
|
||||||
rootLogger.level = DEBUG
|
rootLogger.level = INFO
|
||||||
# Root logger referring to console appender
|
# Root logger referring to console appender
|
||||||
rootLogger.appenderRef.stdout.ref = consoleLogger
|
rootLogger.appenderRef.stdout.ref = consoleLogger
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,7 @@ import libKonogonka.fs.other.System2.System2Provider;
|
||||||
import libKonogonka.fs.other.System2.ini1.KIP1Provider;
|
import libKonogonka.fs.other.System2.ini1.KIP1Provider;
|
||||||
import libKonogonka.aesctr.InFileStreamProducer;
|
import libKonogonka.aesctr.InFileStreamProducer;
|
||||||
import org.junit.jupiter.api.Assertions;
|
import org.junit.jupiter.api.Assertions;
|
||||||
|
import org.junit.jupiter.api.Disabled;
|
||||||
import org.junit.jupiter.api.DisplayName;
|
import org.junit.jupiter.api.DisplayName;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
@ -22,10 +23,11 @@ public class ExtractDecompressedKip1Test {
|
||||||
final String KEYS_FILE_LOCATION = "FilesForTests"+ File.separator+"prod.keys";
|
final String KEYS_FILE_LOCATION = "FilesForTests"+ File.separator+"prod.keys";
|
||||||
final String XCI_HEADER_KEYS_FILE_LOCATION = "FilesForTests"+File.separator+"xci_header_key.txt";
|
final String XCI_HEADER_KEYS_FILE_LOCATION = "FilesForTests"+File.separator+"xci_header_key.txt";
|
||||||
|
|
||||||
final String pathToFirmwares = ". . . nintendo-switch-global-firmwares";
|
final String pathToFirmwares = ". . ./tempPatchesPlayground/nintendo-switch-global-firmwares";
|
||||||
|
|
||||||
private static KeyChainHolder keyChainHolder;
|
private static KeyChainHolder keyChainHolder;
|
||||||
|
|
||||||
|
@Disabled
|
||||||
@DisplayName("Extract FS.kip1")
|
@DisplayName("Extract FS.kip1")
|
||||||
@Test
|
@Test
|
||||||
void testSystem2() throws Exception{
|
void testSystem2() throws Exception{
|
||||||
|
|
Loading…
Reference in a new issue