Commit b13db37 1 parent 8af62cb commit b13db37 Copy full SHA for b13db37
File tree 2 files changed +13
-2
lines changed
src/main/kotlin/com/possible_triangle/atheneum_connector
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,17 @@ forge {
28
28
repositories {
29
29
modrinthMaven()
30
30
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
+ }
31
42
}
32
43
33
44
// required because of duplicate package export
@@ -50,7 +61,7 @@ dependencies {
50
61
51
62
graphql {
52
63
client {
53
- endpoint = env[" GRAPHQL_ENDPOINT" ] ? : " https://atlas.dev. macarena.ceo/api/graphql"
64
+ endpoint = env[" GRAPHQL_ENDPOINT" ] ? : " https://atlas.macarena.ceo/api/graphql"
54
65
packageName = " com.possible_triangle.atheneum_connector.generated"
55
66
serializer = GraphQLSerializer .KOTLINX
56
67
}
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ object Config {
41
41
builder.push(" grapql" )
42
42
}
43
43
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" )
45
45
val graphqlUrl: URL get() = URI (_graphqlUrl .get()).toURL()
46
46
47
47
}
You can’t perform that action at this time.
0 commit comments