Skip to content

Commit 32a32ad

Browse files
committed
Add initial project structure
Dropping the old unsafe part of the project, which will now be integrated directly into the project instead. If all goes well, this will replace the current main branch.
0 parents  commit 32a32ad

File tree

11 files changed

+161
-0
lines changed

11 files changed

+161
-0
lines changed

.gitignore

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
.gradle
2+
build/
3+
!gradle/wrapper/gradle-wrapper.jar
4+
!**/src/main/**/build/
5+
!**/src/test/**/build/
6+
7+
### IntelliJ IDEA ###
8+
.idea/modules.xml
9+
.idea/jarRepositories.xml
10+
.idea/compiler.xml
11+
.idea/libraries/
12+
*.iws
13+
*.iml
14+
*.ipr
15+
out/
16+
!**/src/main/**/out/
17+
!**/src/test/**/out/
18+
19+
### Eclipse ###
20+
.apt_generated
21+
.classpath
22+
.factorypath
23+
.project
24+
.settings
25+
.springBeans
26+
.sts4-cache
27+
bin/
28+
!**/src/main/**/bin/
29+
!**/src/test/**/bin/
30+
31+
### NetBeans ###
32+
/nbproject/private/
33+
/nbbuild/
34+
/dist/
35+
/nbdist/
36+
/.nb-gradle/
37+
38+
### VS Code ###
39+
.vscode/
40+
41+
### Mac OS ###
42+
.DS_Store

.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle.kts

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
plugins {
2+
id("java-library")
3+
id("maven-publish")
4+
}
5+
allprojects {
6+
tasks.withType<JavaCompile> {
7+
options.compilerArgs.add("--enable-preview")
8+
}
9+
}
10+
dependencies {
11+
testImplementation(platform("org.junit:junit-bom:5.10.0"))
12+
testImplementation("org.junit.jupiter:junit-jupiter")
13+
compileOnly("org.jetbrains:annotations:+")
14+
}
15+
tasks.test {
16+
useJUnitPlatform()
17+
}
18+
java {
19+
withSourcesJar()
20+
}
21+
publishing {
22+
publications {
23+
create<MavenPublication>("maven") {
24+
groupId = project.group as String
25+
artifactId = project.name
26+
version = project.version as String
27+
from(components["java"])
28+
}
29+
}
30+
repositories {
31+
maven {
32+
name = "GithubPackages"
33+
url = uri("https://maven.pkg.github.com/CelDaemon/celestia")
34+
credentials(PasswordCredentials::class)
35+
}
36+
}
37+
}

example/build.gradle.kts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
plugins {
2+
id("application")
3+
}
4+
dependencies {
5+
implementation(rootProject)
6+
compileOnly("org.jetbrains:annotations:+")
7+
}
8+
application {
9+
mainModule = "net.voidgroup.celestia.example"
10+
mainClass = "net.voidgroup.celestia.example.Main"
11+
applicationDefaultJvmArgs = listOf("--enable-preview")
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package net.voidgroup.celestia.example;
2+
3+
import net.voidgroup.celestia.Celestia;
4+
5+
public class Main {
6+
public static void main(String[] args) {
7+
Celestia.test("testing text");
8+
}
9+
}

gradle.properties

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
group=net.voidgroup
2+
version=1.0-SHAPSHOT

settings.gradle.kts

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
dependencyResolutionManagement {
2+
@Suppress("UnstableApiUsage")
3+
repositories {
4+
mavenCentral()
5+
}
6+
}
7+
rootProject.name = "celestia"
8+
include("example")
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package net.voidgroup.celestia;
2+
3+
public class Celestia {
4+
public static void test(String inner) {
5+
System.out.println(STR."Inner: \{inner}");
6+
}
7+
}

0 commit comments

Comments
 (0)