Skip to content

Commit

Permalink
Upgrading Elasticsearch, Swagger UI and maven-gpg-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ilgrosso committed Mar 27, 2024
1 parent 43f2f48 commit d32c569
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 27 deletions.
5 changes: 0 additions & 5 deletions core/starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,6 @@ under the License.
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
Expand Down
5 changes: 0 additions & 5 deletions fit/build-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -201,11 +201,6 @@ under the License.
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
Expand Down
32 changes: 20 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -430,8 +430,7 @@ under the License.

<slf4j.version>1.7.36</slf4j.version>

<elasticsearch.version>8.12.2</elasticsearch.version>
<elasticsearch-rest.version>8.10.4</elasticsearch-rest.version>
<elasticsearch.version>8.13.0</elasticsearch.version>
<opensearch.version>2.12.0</opensearch.version>
<opensearch-java.version>2.9.1</opensearch-java.version>

Expand All @@ -441,7 +440,6 @@ under the License.
<commons-lang3.version>3.14.0</commons-lang3.version>
<commons-jexl.version>3.3</commons-jexl.version>
<commons-text.version>1.11.0</commons-text.version>
<commons-logging.version>1.2</commons-logging.version>

<pac4j.version>5.5.0</pac4j.version>

Expand All @@ -452,7 +450,7 @@ under the License.
<h2.version>2.2.224</h2.version>

<swagger-core.version>2.2.21</swagger-core.version>
<swagger-ui.version>5.12.0</swagger-ui.version>
<swagger-ui.version>5.12.2</swagger-ui.version>

<jquery-slimscroll.version>1.3.8</jquery-slimscroll.version>
<jquery-cookie.version>1.4.1-1</jquery-cookie.version>
Expand Down Expand Up @@ -637,7 +635,7 @@ under the License.
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>elasticsearch-rest-client</artifactId>
<version>${elasticsearch-rest.version}</version>
<version>${elasticsearch.version}</version>
</dependency>
<dependency>
<groupId>co.elastic.clients</groupId>
Expand Down Expand Up @@ -953,6 +951,12 @@ under the License.
<groupId>org.apache.commons</groupId>
<artifactId>commons-jexl3</artifactId>
<version>${commons-jexl.version}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -1058,6 +1062,10 @@ under the License.
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -1251,12 +1259,6 @@ under the License.
<artifactId>disruptor</artifactId>
<version>${disruptor.version}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>${commons-logging.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
Expand All @@ -1272,6 +1274,12 @@ under the License.
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
<version>3.0.2</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down Expand Up @@ -2161,7 +2169,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down
5 changes: 0 additions & 5 deletions sra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,6 @@ under the License.
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
Expand Down

0 comments on commit d32c569

Please sign in to comment.