Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into fb_embedded_testFixes
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-tchad committed Jan 5, 2024
2 parents af6bbb4 + 2cab7ff commit 9da22ca
Show file tree
Hide file tree
Showing 13 changed files with 243 additions and 1,747 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ if (project.findProject(":remoteapi:labkey-api-jdbc") != null)

if (project.hasProperty("teamcity"))
{
apply plugin: 'org.labkey.teamCity'
apply plugin: 'org.labkey.build.teamCity'
}

// If this configuration for the default jar file is included when syncing with IntelliJ
Expand Down
2 changes: 1 addition & 1 deletion buildTestModules/communityArtifacts/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apply plugin: 'java'
apply plugin: 'org.labkey.module'
apply plugin: 'org.labkey.build.module'

dependencies {
// add dependencies on community modules, not including those that come through from transitive dependencies:
Expand Down
2 changes: 1 addition & 1 deletion buildTestModules/starterArtifacts/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apply plugin: 'java'
apply plugin: 'org.labkey.module'
apply plugin: 'org.labkey.build.module'

dependencies {
// add dependencies on starter modules, not including those that come through from transitive dependencies:
Expand Down
6 changes: 3 additions & 3 deletions distributions/teamcity/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ else
if (otherProject != project && ModuleFinder.isPotentialModule(otherProject) && FileModule.shouldDoBuild(otherProject, false))
{
project.evaluationDependsOn(otherProject.path)
if (otherProject.plugins.hasPlugin('org.labkey.module') ||
otherProject.plugins.hasPlugin('org.labkey.fileModule') ||
otherProject.plugins.hasPlugin('org.labkey.javaModule'))
if (otherProject.plugins.hasPlugin('org.labkey.build.module') ||
otherProject.plugins.hasPlugin('org.labkey.build.fileModule') ||
otherProject.plugins.hasPlugin('org.labkey.build.javaModule'))
pathList += otherProject.path
}
}
Expand Down
4 changes: 2 additions & 2 deletions modules/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ subprojects { Project p ->
if (p.getProjectDir().exists())
{
if (p.file("src").exists())
apply plugin: 'org.labkey.module'
apply plugin: 'org.labkey.build.module'
else
apply plugin: 'org.labkey.fileModule'
apply plugin: 'org.labkey.build.fileModule'
}
}

Expand Down
Loading

0 comments on commit 9da22ca

Please sign in to comment.