Skip to content

Commit

Permalink
Rename modules
Browse files Browse the repository at this point in the history
  • Loading branch information
hufman committed Aug 7, 2024
1 parent db58d8e commit d00f5e7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 11 deletions.
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/.gradle
/build
/core/build
/etch/build
/idriveconnectkit-etch/build
*.iml
/libs/apache-etch-java-runtime-1.4.0.jar
/etch/libs/apache-etch-java-runtime-1.4.0.jar
/etch-runtime/libs/apache-etch-java-runtime-1.4.0.jar
2 changes: 1 addition & 1 deletion etch-runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ publishing {
maven(MavenPublication) {
// package names for Maven/Jitpack
groupId 'org.apache.etch'
artifactId 'etch'
artifactId 'etch-runtime'
version '1.4.0'

from components.java
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions etch/build.gradle → idriveconnectkit-etch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ apply plugin: 'maven-publish'


dependencies {
api project(path: ':etch')
api project(path: ':etch-runtime')
}

sourceSets {
Expand Down Expand Up @@ -52,9 +52,9 @@ tasks.register('compileEtch', JavaExec) {
"${buildDir}/etch/apache-etch-1.4.0/lib/apache-etch-java-compiler-1.4.0.jar",
"${buildDir}/etch/apache-etch-1.4.0/lib/velocity-1.7-dep.jar"
)
workingDir "${rootDir}/etch"
workingDir "${rootDir}/idriveconnectkit-etch"
args('--binding', 'java', '--output-dir', "${buildDir}/generated", 'BMWRemoting.etch')
inputs.file("${rootDir}/etch/BMWRemoting.etch")
inputs.file("${rootDir}/idriveconnectkit-etch/BMWRemoting.etch")
outputs.dir "${buildDir}/generated"
}

Expand Down
6 changes: 3 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include ':core', ':etch', ':etch-runtime'
include ':core', ':idriveconnectkit-etch', ':etch-runtime'
project(':core').name = "idriveconnectkit"
project(':etch').name = "idriveconnectkit-etch"
project(':etch-runtime').name = "etch"
project(':idriveconnectkit-etch').name = "idriveconnectkit-etch"
project(':etch-runtime').name = "etch-runtime"

0 comments on commit d00f5e7

Please sign in to comment.