fixing the bug here aswell
This commit is contained in:
parent
4e69cede99
commit
04cb994052
3 changed files with 44 additions and 3 deletions
43
build.gradle
43
build.gradle
|
|
@ -1,6 +1,47 @@
|
|||
plugins {
|
||||
id 'java'
|
||||
id 'maven-publish'
|
||||
}
|
||||
|
||||
group = 'tiny-java'
|
||||
group = 'tiny'
|
||||
version = '0.8'
|
||||
publishing {
|
||||
publications {
|
||||
mavenJava(MavenPublication) {
|
||||
from components.java
|
||||
pom {
|
||||
name.set("tiny")
|
||||
description.set("tiny software suite, java edition")
|
||||
url.set("https://github.com/kin-fuyuki/tiny-java")
|
||||
|
||||
licenses {
|
||||
license {
|
||||
name.set("GNU Affero General Public License v3.0")
|
||||
url.set("https://www.gnu.org/licenses/agpl-3.0.txt")
|
||||
distribution.set("repo")
|
||||
}
|
||||
}
|
||||
|
||||
developers {
|
||||
developer {
|
||||
id.set("kin-fuyuki")
|
||||
name.set("kin fuyuki")
|
||||
}
|
||||
}
|
||||
|
||||
scm {
|
||||
connection.set("scm:git:git://github.com/kin-fuyuki/tiny-java.git")
|
||||
developerConnection.set("scm:git:ssh://github.com:kin-fuyuki/tiny-java.git")
|
||||
url.set("https://github.com/kin-fuyuki/tiny-java")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
name = "localmaven"
|
||||
url = uri("maven")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
rootProject.name = 'tiny-java'
|
||||
rootProject.name = 'tiny'
|
||||
|
|
@ -651,7 +651,7 @@ public class TDF_FILE {
|
|||
str.append("' ").append(key).append(" ").append((Character) val.data).append("\n");
|
||||
break;
|
||||
case TDF_BLOCK:
|
||||
str.append("S ").append(key).append("\n").append((String) val.data).append("\\\n");
|
||||
str.append("S ").append(key).append("\n").append((String) val.data).append("\n\\\n");
|
||||
break;
|
||||
case TDF_BOOL:
|
||||
str.append("B ").append(key).append(" ").append(((Boolean) val.data) ? "T" : "F").append("\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue