Skip to content

Commit

Permalink
Make the configcheck module optional as it is a separate utility not (#…
Browse files Browse the repository at this point in the history
…2283)

required in the main datawave builds
  • Loading branch information
ivakegg authored and rdhayes68 committed Feb 21, 2024
1 parent dcb6a28 commit cbbfa38
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion microservices/configcheck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>gov.nsa.datawave.microservice</groupId>
<artifactId>datawave-microservice-configcheck</artifactId>
<version>6.7.0-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<name>${project.artifactId}</name>
<distributionManagement>
<repository>
Expand Down
12 changes: 11 additions & 1 deletion microservices/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<modules>
<module>configcheck</module>
<module>services</module>
<module>starters</module>
</modules>
Expand All @@ -38,5 +37,16 @@
<module>microservice-service-parent</module>
</modules>
</profile>
<profile>
<id>configcheck</id>
<activation>
<property>
<name>configcheck</name>
</property>
</activation>
<modules>
<module>configcheck</module>
</modules>
</profile>
</profiles>
</project>

0 comments on commit cbbfa38

Please sign in to comment.