Skip to content

Commit

Permalink
[Parvathy, Rahul] | Add. Undeclared Used Dependencies
Browse files Browse the repository at this point in the history
Co-authored-by: Parvathy Babu <[email protected]>
  • Loading branch information
rahu1ramesh and parvathy00 committed Nov 22, 2023
1 parent 9caaef6 commit b4ec291
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
6 changes: 6 additions & 0 deletions openerp-atomfeed-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,12 @@
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-engine-core</artifactId>
<version>2.0</version>
<exclusions>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
Expand Down
17 changes: 16 additions & 1 deletion openerp-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
Expand Down Expand Up @@ -124,7 +134,7 @@
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.8.3</version>
<version>1.9.4</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
Expand All @@ -147,6 +157,11 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>2.15.2</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
Expand Down
11 changes: 8 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
<db.user>odoo</db.user>
<db.password>odoo</db.password>
<db.schema>public</db.schema>
<junit.version>4.13</junit.version>
<junit.version>4.13.1</junit.version>
<mockito-core.version>4.9.0</mockito-core.version>
<jackson.version>2.9.6</jackson.version>
<jackson.version>2.13.5</jackson.version>
<httpcore.version>4.4.5</httpcore.version>
<httpClient.version>4.5.2</httpClient.version>
<httpClient.version>4.5.13</httpClient.version>
<servlet-api.version>3.0.1</servlet-api.version>
<log4j.version>2.17.1</log4j.version>
<web-clients.version>0.94.3</web-clients.version>
Expand Down Expand Up @@ -266,6 +266,11 @@
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc-common</artifactId>
<version>3.1.3</version>
</dependency>
<!--test libraries-->
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit b4ec291

Please sign in to comment.