Skip to content
This repository has been archived by the owner on Jan 25, 2021. It is now read-only.

Commit

Permalink
vi
Browse files Browse the repository at this point in the history
  • Loading branch information
GlennFolker committed Oct 15, 2020
1 parent 5438ad8 commit 86e9d90
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions main/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,16 @@ task jarAndroid(type: Jar){
task jarDesktop(type: Jar){
archiveFileName = "${project.archivesBaseName}Desktop.jar"

from files(sourceSets.main.output.classesDirs)
from files(sourceSets.main.output.resourcesDir)
from {configurations.runtimeClasspath.collect{ it.isDirectory() ? it : zipTree(it) }}
from files(project.assetsDir)

from(projectDir){
include "mod.json"
}

from(project.assetsDir){
include "**"
}

manifest{
attributes 'Main-Class': project.mainClassName
}
Expand Down

2 comments on commit 86e9d90

@sk7725
Copy link
Contributor

@sk7725 sk7725 commented on 86e9d90 Oct 15, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that is concerning

@GlennFolker
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

beethoven?

Please sign in to comment.