-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make junit5 aggregator a java-library
in order to publish them in correct scope automatically. To get the `checkUploadedArtifacts` not to fail, I have to change the order of namespaces of the expected pom. Note: * I also replaced tabs with spaces in `junit5/aggregator/build.gradle`. But only one additinal line, so no separate commit. Signed-off-by: Andreas Schmid <service@aaschmid.de>
- Loading branch information
1 parent
cf01860
commit f1d7390
Showing
2 changed files
with
7 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
apply plugin: 'java-library' | ||
|
||
ext.moduleName = 'com.tngtech.archunit.junit5' | ||
|
||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
|
||
dependencies { | ||
compile(project(":archunit-junit5-api")) | ||
runtime(project(":archunit-junit5-engine")) | ||
api(project(":archunit-junit5-api")) | ||
implementation(project(":archunit-junit5-engine")) | ||
} | ||
|
||
shadowJar { | ||
exclude '**' | ||
exclude '**' | ||
} |
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