Skip to content

Commit b13db37

Browse files
committed
add github repository
1 parent 8af62cb commit b13db37

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

build.gradle.kts

+12-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,17 @@ forge {
2828
repositories {
2929
modrinthMaven()
3030
localMaven(project)
31+
32+
maven {
33+
url = uri("https://maven.pkg.github.com/VoidShake/Atheneum")
34+
credentials {
35+
username = env["GITHUB_ACTOR"]
36+
password = env["GITHUB_TOKEN"]
37+
}
38+
content {
39+
includeGroup("com.possible-triangle")
40+
}
41+
}
3142
}
3243

3344
// required because of duplicate package export
@@ -50,7 +61,7 @@ dependencies {
5061

5162
graphql {
5263
client {
53-
endpoint = env["GRAPHQL_ENDPOINT"] ?: "https://atlas.dev.macarena.ceo/api/graphql"
64+
endpoint = env["GRAPHQL_ENDPOINT"] ?: "https://atlas.macarena.ceo/api/graphql"
5465
packageName = "com.possible_triangle.atheneum_connector.generated"
5566
serializer = GraphQLSerializer.KOTLINX
5667
}

src/main/kotlin/com/possible_triangle/atheneum_connector/Config.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ object Config {
4141
builder.push("grapql")
4242
}
4343

44-
private val _graphqlUrl = builder.define("url", "http://localhost:8080/api/graphql")
44+
private val _graphqlUrl = builder.define("url", "https://atlas.macarena.ceo/api/graphql")
4545
val graphqlUrl: URL get() = URI(_graphqlUrl.get()).toURL()
4646

4747
}

0 commit comments

Comments
 (0)