Skip to content

Commit

Permalink
Initial refactors for single-scope configurations and shared fabric i…
Browse files Browse the repository at this point in the history
…nstallations
  • Loading branch information
lukebemish committed Feb 3, 2025
1 parent cd71692 commit a4f5283
Show file tree
Hide file tree
Showing 52 changed files with 3,555 additions and 1,130 deletions.
15 changes: 10 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ plugins {
id 'java-gradle-plugin'
id 'org.gradle.kotlin.kotlin-dsl' version '5.1.2' // Version for gradle 8.12
id 'maven-publish'
id 'checkstyle'
id 'dev.lukebemish.managedversioning'
alias cLibs.plugins.gradlepublish
}

group='dev.lukebemish'
group = 'dev.lukebemish'

managedVersioning {
versionFile.set project.file('version.properties')
Expand Down Expand Up @@ -149,8 +150,8 @@ repositories {
mavenCentral()
gradlePluginPortal()
maven {
name 'Staging'
url 'https://maven.lukebemish.dev/staging/'
name = 'Staging'
url = 'https://maven.lukebemish.dev/staging/'
}
}

Expand Down Expand Up @@ -192,8 +193,12 @@ java {
tasks.withType(AbstractArchiveTask) {
preserveFileTimestamps = false
reproducibleFileOrder = true
dirMode = 0755
fileMode = 0644
dirPermissions {
unix 0755
}
filePermissions {
unix 0644
}
}

abstract class DownloadManifest extends DefaultTask {
Expand Down
Loading

0 comments on commit a4f5283

Please sign in to comment.