Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
wborn committed Oct 3, 2024
1 parent 840babc commit 05a28d9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
# Push excluding tags and workflow changes
push:
branches:
- '**'
- '**'
tags-ignore:
- '*.*'
paths-ignore:
Expand Down
11 changes: 3 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@

allprojects {
// Apply common project setup but exclude submodule, it has its own build.gradle
if (findProject(":openremote") && !path.startsWith(":openremote")) {
apply from: "${project(":openremote").projectDir}/project.gradle"
} else if (!findProject(":openremote")) {
apply from: "${project.rootDir}/project.gradle"
}
// Apply common project setup
apply from: "${project.rootDir}/project.gradle"
}

// Uncomment the following to configure files to be encrypted/decrypted
Expand All @@ -28,7 +23,7 @@ allprojects {
// return password.toCharArray()
// }
//}
//task checkFilesGitIgnoredNew(type: Exec) {
//tasks.register('checkFilesGitIgnoredNew', Exec) {
// // The provided checkFilesGitIgnored task doesn't work on Windows so here's one that does
// def args = []
// if (org.apache.tools.ant.taskdefs.condition.Os.isFamily(org.apache.tools.ant.taskdefs.condition.Os.FAMILY_WINDOWS)) {
Expand Down
3 changes: 0 additions & 3 deletions deployment/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ dependencies {
tasks.register('license') {
doLast {
def licenseFiles = new ArrayList<>()
if (findProject(":openremote")) {
licenseFiles.add("${project(":openremote").projectDir}/LICENSE.txt")
}
licenseFiles.add("${rootDir}/LICENSE.txt")

def toConcatenate = files(licenseFiles.toArray())
Expand Down
5 changes: 4 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ org.gradle.parallel=true

projectName = custom-project
projectVersion = 1.0-SNAPSHOT

openremoteVersion = 1.2.0-SNAPSHOT
typescriptGeneratorVersion = 3.2.1263

jacksonVersion = 2.16.0
typescriptGeneratorVersion = 3.2.1263

0 comments on commit 05a28d9

Please sign in to comment.