Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Gross cogross committed Oct 17, 2024
1 parent 0b049c5 commit b9cabcf
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 0 deletions.
12 changes: 12 additions & 0 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
</scm>
<properties>
<datawave.webservice.namespace>http://webservice.datawave/v1</datawave.webservice.namespace>
<version.commons-lang>2.6</version.commons-lang>
<version.datawave>7.3.0</version.datawave>
<version.jakarta.xml.bind-api>2.3.3</version.jakarta.xml.bind-api>
<version.microservice.base-rest-responses>4.0.0</version.microservice.base-rest-responses>
<version.microservice.starter-query>1.0.5</version.microservice.starter-query>
</properties>
Expand Down Expand Up @@ -60,6 +62,11 @@
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${version.commons-lang}</version>
</dependency>
<dependency>
<groupId>gov.nsa.datawave.core</groupId>
<artifactId>datawave-core-connection-pool</artifactId>
Expand All @@ -72,6 +79,11 @@
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${version.jakarta.xml.bind-api}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
Expand Down
83 changes: 83 additions & 0 deletions service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,13 @@
<version.accumulo>2.1.1</version.accumulo>
<version.curator>5.2.0</version.curator>
<version.datawave>7.3.0</version.datawave>
<version.datawave-core-connection-pool>7.3.0</version.datawave-core-connection-pool>
<version.hazelcast>5.1.2</version.hazelcast>
<version.in-memory-accumulo>4.0.0</version.in-memory-accumulo>
<version.microservice.query-api>1.0.0</version.microservice.query-api>
<version.microservice.query-executor-api>1.0.7</version.microservice.query-executor-api>
<version.microservice.query-metric-api>4.0.0</version.microservice.query-metric-api>
<version.microservice.spring-boot-starter-datawave>4.0.3</version.microservice.spring-boot-starter-datawave>
<version.microservice.starter-query>1.0.8</version.microservice.starter-query>
<version.zookeeper>3.8.0</version.zookeeper>
</properties>
Expand Down Expand Up @@ -239,6 +244,11 @@
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast</artifactId>
<version>${version.hazelcast}</version>
</dependency>
<!-- Don't sort the import scope dependencies since we are relying on them to manage various artifact versions -->
<?SORTPOM IGNORE?>
<dependency>
Expand All @@ -250,10 +260,49 @@
<groupId>gov.nsa.datawave</groupId>
<artifactId>datawave-in-memory-accumulo</artifactId>
</dependency>
<dependency>
<groupId>gov.nsa.datawave.core</groupId>
<artifactId>datawave-core-connection-pool</artifactId>
<version>${version.datawave-core-connection-pool}</version>
<exclusions>
<exclusion>
<artifactId>slf4j-reload4j</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>gov.nsa.datawave.core</groupId>
<artifactId>datawave-core-query</artifactId>
</dependency>
<dependency>
<groupId>gov.nsa.datawave.microservice</groupId>
<artifactId>query-api</artifactId>
<version>${version.microservice.query-api}</version>
<classifier>jboss</classifier>
</dependency>
<dependency>
<groupId>gov.nsa.datawave.microservice</groupId>
<artifactId>query-executor-api</artifactId>
</dependency>
<dependency>
<groupId>gov.nsa.datawave.microservice</groupId>
<artifactId>query-metric-api</artifactId>
<version>${version.microservice.query-metric-api}</version>
</dependency>
<dependency>
<groupId>gov.nsa.datawave.microservice</groupId>
<artifactId>spring-boot-starter-datawave</artifactId>
<version>${version.microservice.spring-boot-starter-datawave}</version>
</dependency>
<dependency>
<groupId>gov.nsa.datawave.microservice</groupId>
<artifactId>spring-boot-starter-datawave-query-metric</artifactId>
</dependency>
<dependency>
<groupId>org.apache.accumulo</groupId>
<artifactId>accumulo-core</artifactId>
</dependency>
<!-- Added to get the service working again -->
<dependency>
<groupId>org.apache.accumulo</groupId>
Expand All @@ -269,6 +318,30 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-bus</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-commons</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.kafka</groupId>
<artifactId>spring-kafka</artifactId>
Expand Down Expand Up @@ -305,6 +378,11 @@
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
Expand All @@ -315,6 +393,11 @@
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.kafka</groupId>
<artifactId>spring-kafka-test</artifactId>
Expand Down

0 comments on commit b9cabcf

Please sign in to comment.