forked from deliveredtechnologies/rulebook
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue102 auditable default result (deliveredtechnologies#103)
* added updated dsl to allow a default result with auditor * updated gradle build * Update README.md
- Loading branch information
1 parent
8ccb903
commit 238fe63
Showing
8 changed files
with
197 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,9 +108,167 @@ subprojects { | |
build.dependsOn jacocoTestReport, checkstyleMainHtml, checkstyleTestHtml | ||
} | ||
|
||
project("rulebook-core") { | ||
modifyPom { | ||
project { | ||
name 'RuleBook' | ||
description 'A simple and intuitive rules abstraction for Java' | ||
url "${projectUrl}" | ||
inceptionYear "${projectYear}" | ||
|
||
scm { | ||
url "${projectScmUrl}" | ||
connection "${projectScmConnection}" | ||
developerConnection "${projectScmConnection}" | ||
} | ||
|
||
distributionManagement { | ||
site { | ||
id "${projectDistMgmtId}" | ||
url "${projectDistMgmtUrl}" | ||
} | ||
} | ||
|
||
issueManagement { | ||
system "${projectIssueMgmtSystem}" | ||
url "${projectIssueMgmtUrl}" | ||
} | ||
|
||
licenses { | ||
license { | ||
name "${projectLicenseName}" | ||
url "${projectLicenseUrl}" | ||
distribution "${projectLicenseDistro}" | ||
} | ||
} | ||
|
||
developers { | ||
developer { | ||
id 'Clayton7510' | ||
name 'Clayton Long' | ||
url 'https://github.com/Clayton7510' | ||
email '[email protected]' | ||
roles { | ||
role 'Author' | ||
} | ||
} | ||
} | ||
|
||
contributors { | ||
contributor { | ||
name 'Nicholas Lambert' | ||
url 'https://github.com/NicolasLambert' | ||
roles { | ||
role 'code contributor for v0.2.1' | ||
role 'raised dsl enhancement for v0.8' | ||
} | ||
} | ||
contributor { | ||
name 'wheezymustafa' | ||
url 'https://github.com/wheezymustafa' | ||
roles { | ||
role 'raised bugs and enhancement suggestions for v0.3 and v0.3.1' | ||
} | ||
} | ||
contributor { | ||
name 'Alessandro Torrisi' | ||
url 'https://github.com/typhoon1978' | ||
roles { | ||
role 'raised bug for v0.5.1' | ||
} | ||
} | ||
contributor { | ||
name 'Marc Seeger' | ||
url 'https://github.com/Gersee' | ||
roles { | ||
role 'raised bug for v0.5.1' | ||
} | ||
} | ||
contributor { | ||
name 'abhineet27' | ||
url 'https://github.com/abhineet27' | ||
roles { | ||
role 'raised bug for v0.6.1' | ||
role 'raised bug for v0.6.2' | ||
} | ||
} | ||
contributor { | ||
name 'Darrell Merryweather' | ||
url 'https://github.com/darrellme' | ||
roles { | ||
role 'raised rule chain enhancement for v0.8' | ||
} | ||
} | ||
contributor { | ||
name 'Kent Jones' | ||
url 'https://github.com/kentjones' | ||
roles { | ||
role 'raised bug for v0.8.1' | ||
} | ||
} | ||
contributor { | ||
name 'Ivan Portugal' | ||
url 'https://github.com/ivanbportugal' | ||
roles { | ||
role 'raised bug for v0.8.1' | ||
} | ||
} | ||
contributor { | ||
name 'Brad Egler' | ||
url 'https://github.com/bradegler' | ||
roles { | ||
rule 'upgraded gradle build for v0.9.1' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
project("rulebook-spring") { | ||
modifyPom { | ||
project { | ||
name 'RuleBook Spring' | ||
description 'Spring support for RuleBook' | ||
url "${projectUrl}" | ||
inceptionYear "${projectYear}" | ||
|
||
scm { | ||
url "${projectScmUrl}" | ||
connection "${projectScmConnection}" | ||
developerConnection "${projectScmConnection}" | ||
} | ||
|
||
distributionManagement { | ||
site { | ||
id "${projectDistMgmtId}" | ||
url "${projectDistMgmtUrl}" | ||
} | ||
} | ||
|
||
issueManagement { | ||
system "${projectIssueMgmtSystem}" | ||
url "${projectIssueMgmtUrl}" | ||
} | ||
|
||
licenses { | ||
license { | ||
name "${projectLicenseName}" | ||
url "${projectLicenseUrl}" | ||
distribution "${projectLicenseDistro}" | ||
} | ||
} | ||
|
||
developers { | ||
developer { | ||
id 'Clayton7510' | ||
name 'Clayton Long' | ||
email '[email protected]' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
task jacocoRootReport(type: org.gradle.testing.jacoco.tasks.JacocoReport) { | ||
dependsOn subprojects.test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,107 +1 @@ | ||
modifyPom { | ||
project { | ||
name 'RuleBook' | ||
description 'A simple and intuitive rules abstraction for Java' | ||
url "${projectUrl}" | ||
inceptionYear "${projectYear}" | ||
|
||
scm { | ||
url "${projectScmUrl}" | ||
connection "${projectScmConnection}" | ||
developerConnection "${projectScmConnection}" | ||
} | ||
|
||
distributionManagement { | ||
site { | ||
id "${projectDistMgmtId}" | ||
url "${projectDistMgmtUrl}" | ||
} | ||
} | ||
|
||
issueManagement { | ||
system "${projectIssueMgmtSystem}" | ||
url "${projectIssueMgmtUrl}" | ||
} | ||
|
||
licenses { | ||
license { | ||
name "${projectLicenseName}" | ||
url "${projectLicenseUrl}" | ||
distribution "${projectLicenseDistro}" | ||
} | ||
} | ||
|
||
developers { | ||
developer { | ||
id 'Clayton7510' | ||
name 'Clayton Long' | ||
url 'https://github.com/Clayton7510' | ||
email '[email protected]' | ||
roles { | ||
role 'Author' | ||
} | ||
} | ||
} | ||
|
||
contributors { | ||
contributor { | ||
name 'Nicholas Lambert' | ||
url 'https://github.com/NicolasLambert' | ||
roles { | ||
role 'code contributor for v0.2.1' | ||
role 'raised dsl enhancement for v0.8' | ||
} | ||
} | ||
contributor { | ||
name 'wheezymustafa' | ||
url 'https://github.com/wheezymustafa' | ||
roles { | ||
role 'raised bugs and enhancement suggestions for v0.3 and v0.3.1' | ||
} | ||
} | ||
contributor { | ||
name 'Alessandro Torrisi' | ||
url 'https://github.com/typhoon1978' | ||
roles { | ||
role 'raised bug for v0.5.1' | ||
} | ||
} | ||
contributor { | ||
name 'Marc Seeger' | ||
url 'https://github.com/Gersee' | ||
roles { | ||
role 'raised bug for v0.5.1' | ||
} | ||
} | ||
contributor { | ||
name 'abhineet27' | ||
url 'https://github.com/abhineet27' | ||
roles { | ||
role 'raised bug for v0.6.1' | ||
role 'raised bug for v0.6.2' | ||
} | ||
} | ||
contributor { | ||
name 'Darrell Merryweather' | ||
url 'https://github.com/darrellme' | ||
roles { | ||
role 'raised rule chain enhancement for v0.8' | ||
} | ||
} | ||
contributor { | ||
name 'Kent Jones' | ||
url 'https://github.com/kentjones' | ||
roles { | ||
role 'raised bug for v0.8.1' | ||
} | ||
} | ||
contributor { | ||
name 'Ivan Portugal' | ||
url 'https://github.com/ivanbportugal' | ||
roles { | ||
role 'raised bug for v0.8.1' | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.