Skip to content

Commit

Permalink
I forgor
Browse files Browse the repository at this point in the history
  • Loading branch information
StellarWitch7 committed Nov 12, 2024
1 parent 46a6d51 commit c809a47
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -93,19 +93,25 @@ yamlang {

// configure the maven publication
publishing {
publications {
create("mavenJava", MavenPublication) {
artifactId = project.archives_base_name
from components.java
repositories {
maven {
name = "enjaraiMaven"
url = "https://maven.enjarai.dev/releases"
credentials(PasswordCredentials)
authentication {
basic(BasicAuthentication)
}
}
}

// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
repositories {
// Add repositories to publish to here.
// Notice: This block does NOT have the same function as the block in the top level.
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
publications {
mavenJava(MavenPublication) {
groupId = group
artifactId = archivesBaseName
version = version

from components.java
}
}
}

Expand Down
Binary file modified src/main/resources/assets/illusionist/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c809a47

Please sign in to comment.