Skip to content

Commit

Permalink
[GEOS-11713] Concurrent LDAP builds fail on Jenkins
Browse files Browse the repository at this point in the history
  • Loading branch information
aaime authored and jodygarnett committed Feb 6, 2025
1 parent 1183ad5 commit 35f09e1
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/security/ldap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,16 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<!-- Make ApacheDS work in the build directory, rather than using a fixed global position -->
<workingDirectory>${project.build.directory}/myDS</workingDirectory>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</project>
15 changes: 15 additions & 0 deletions src/web/security/ldap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,19 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<!-- Make ApacheDS work in the build directory, rather than using a fixed global position -->
<workingDirectory>${project.build.directory}/myDS</workingDirectory>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 35f09e1

Please sign in to comment.