Skip to content

Commit

Permalink
Feature/query microservices (#17)
Browse files Browse the repository at this point in the history
* Updated with latest changes from integration

* bumped release version

* Updated with latest changes from main/integration

* Excluded log4j from our maven plugins

* Updated javadoc plugin to exclude log4j

* Set source and target code levels

* formatting

---------

Co-authored-by: Ivan Bella <[email protected]>
  • Loading branch information
jwomeara and ivakegg authored May 20, 2024
1 parent 7cc068b commit 1999eb5
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions 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</groupId>
<artifactId>datawave-in-memory-accumulo</artifactId>
<version>3.0.2-SNAPSHOT</version>
<version>4.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Datawave InMemory Accumulo</name>
<url>https://code.nsa.gov/datawave-in-memory-accumulo</url>
Expand All @@ -27,6 +27,8 @@
</repository>
</distributionManagement>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<version.accumulo>2.1.1</version.accumulo>
Expand Down Expand Up @@ -175,8 +177,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<optimize>true</optimize>
<encoding>UTF-8</encoding>
</configuration>
Expand Down Expand Up @@ -209,6 +211,24 @@
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>ch.qos.reload4j</groupId>
<artifactId>reload4j</artifactId>
<version>1.2.22</version>
</dependency>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-site-renderer</artifactId>
<version>1.7.4</version>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 1999eb5

Please sign in to comment.