Skip to content

Commit 04403a4

Browse files
committed
feat: init
0 parents  commit 04403a4

10 files changed

Lines changed: 788 additions & 0 deletions

File tree

.gitignore

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

build.gradle.kts

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
plugins {
2+
`java-library`
3+
`maven-publish`
4+
id("java")
5+
}
6+
7+
group = "com.instancify.scriptify.declaration"
8+
version = "1.0.0-SNAPSHOT"
9+
10+
java {
11+
toolchain {
12+
languageVersion = JavaLanguageVersion.of(17)
13+
}
14+
}
15+
repositories {
16+
mavenCentral()
17+
maven("https://repo.instancify.app/snapshots")
18+
}
19+
20+
dependencies {
21+
compileOnlyApi("com.instancify.scriptify:api:1.4.2-SNAPSHOT")
22+
implementation("com.instancify.scriptify:script-js-graalvm:1.4.2-SNAPSHOT")
23+
implementation("com.instancify.scriptify:common:1.4.2-SNAPSHOT")
24+
compileOnlyApi("org.projectlombok:lombok:1.18.36")
25+
annotationProcessor("org.projectlombok:lombok:1.18.36")
26+
}
27+
28+
publishing {
29+
publications {
30+
create<MavenPublication>("maven") {
31+
groupId = project.group.toString()
32+
artifactId = project.name
33+
version = project.version.toString()
34+
from(components["java"])
35+
}
36+
}
37+
repositories {
38+
maven {
39+
name = "instancify"
40+
url = uri("https://repo.instancify.app/snapshots")
41+
credentials {
42+
username = System.getenv("MAVEN_USERNAME")
43+
password = System.getenv("MAVEN_PASSWORD")
44+
}
45+
}
46+
}
47+
}

gradle/wrapper/gradle-wrapper.jar

59.3 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Mon Aug 18 00:36:33 GET 2025
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

gradlew

Lines changed: 234 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)