Skip to content
This repository was archived by the owner on Jun 19, 2024. It is now read-only.

Commit ba2ba86

Browse files
committed
hotfix publishment
1 parent a1e15cf commit ba2ba86

File tree

2 files changed

+33
-24
lines changed

2 files changed

+33
-24
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
plugins {
2+
id("java-library")
3+
id("maven-publish")
4+
}
5+
6+
group = "com.labymedia"
7+
8+
jar {
9+
manifest {
10+
attributes(
11+
'Automatic-Module-Name': 'com.labymedia.ultralight.util'
12+
)
13+
}
14+
}
15+
16+
repositories {
17+
mavenCentral()
18+
}
19+
20+
dependencies {
21+
implementation(project(":ultralight-java-base"))
22+
implementation(project(":ultralight-java-gpu"))
23+
24+
implementation(group: "org.lwjgl", name: "lwjgl-glfw", version: "3.2.2")
25+
implementation(group: "org.lwjgl", name: "lwjgl-opengl", version: "3.2.2")
26+
}
27+
28+
commonPublish(project) {
29+
pom {
30+
name = "UltralightJavaGlfwOpenGLUtil"
31+
description = "Ultralight Java Glfw OpenGL Util"
32+
}
33+
}

ultralight-java-glfw-opengl-util/build.gradle.kts

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)