You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dist target creates a flat structure and doesn't include a top level directory with the project and version name as we used to produce using jpos-app.gradle script.
The text was updated successfully, but these errors were encountered:
aVolpe
added a commit
to aVolpe/jpos-gradle-plugin
that referenced
this issue
Sep 28, 2023
The plugin can now be configured using a 'jpos' directive in the .gradle file:
```groovyjpos {
target = "devel"
addGitRevision = true
addBuildTime = true
archiveJarName = "${project_name}-${version}.jar"
archiveWarName = "${project_name}-${version}.war"
installDir = build/install/${project_name}
distDir = src/dist
}
```
A non trivial refactor of the plugin was made to ensure that those properties
can be configured and used as described in the README.
This commit also makes this plugin compatible with gradle 8, so it fixesjpos#3
The configurability of git revision data also fixesjpos#5.
And it can be a workaround for jpos#7 using a different distDir.
Signed-off-by: Arturo Volpe <[email protected]>
The plugin can now be configured using a 'jpos' directive in the .gradle file:
```groovy
jpos {
target = "devel"
addGitRevision = true
addBuildTime = true
archiveJarName = "${project_name}-${version}.jar"
archiveWarName = "${project_name}-${version}.war"
installDir = build/install/${project_name}
distDir = src/dist
}
```
A non trivial refactor of the plugin was made to ensure that those properties
can be configured and used as described in the README.
This commit also makes this plugin compatible with gradle 8, so it fixesjpos#3
The configurability of git revision data also fixesjpos#5.
And it can be a workaround for jpos#7 using a different distDir.
Signed-off-by: Arturo Volpe <[email protected]>
dist
target creates a flat structure and doesn't include a top level directory with the project and version name as we used to produce usingjpos-app.gradle
script.The text was updated successfully, but these errors were encountered: