Skip to content

Commit

Permalink
Review internal dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
javiertuya committed Jun 23, 2024
1 parent 5bcf00f commit e7abd42
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 13 deletions.
11 changes: 5 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<httpclient-version>5.3.1</httpclient-version>

<!-- datagen still using httpclient4, pending migration -->
<!-- store-loader still using httpclient4 to call REST APIs, pending migration -->
<httpclient4-version>4.5.14</httpclient4-version>

<mockserver.version>5.15.0</mockserver.version>
Expand All @@ -51,7 +51,7 @@
<version>${portable.version}</version>
</dependency>

<!-- Dependencias para OpenApi (para jackson usa el bom pues hay muchas dependencias) -->
<!-- OpenApi dependencies (uses the jackson bom as many modules are used) -->
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
Expand All @@ -65,7 +65,6 @@
<artifactId>httpclient5</artifactId>
<version>${httpclient-version}</version>
</dependency>
<!-- Aunque openapi usa httpclient5, datagen todavia necesita httpclient4 -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
Expand All @@ -76,7 +75,7 @@
<artifactId>commons-lang3</artifactId>
<version>3.14.0</version>
</dependency>
<!-- otras dependencias -->
<!-- other dependencies -->
<dependency>
<groupId>io.swagger.parser.v3</groupId>
<artifactId>swagger-parser</artifactId>
Expand All @@ -98,7 +97,7 @@
<version>1.3.2</version>
</dependency>

<!-- Mock de servicios, si hay problemas de dependencias usar el artefacto shaded, https://github.com/mock-server/mockserver -->
<!-- Service mocks, if any problem with dependencies, use the shaded artifact: https://github.com/mock-server/mockserver -->
<dependency>
<groupId>org.mock-server</groupId>
<artifactId>mockserver-netty</artifactId>
Expand All @@ -124,7 +123,7 @@
<scope>test</scope>
</dependency>

<!--Exclusivas para ejecucion de test -->
<!-- Only for test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
5 changes: 0 additions & 5 deletions tdrules-client-oa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@
<artifactId>tdrules-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.giis-uniovi</groupId>
<artifactId>tdrules-store-shared</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.swagger.parser.v3</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import giis.tdrules.openapi.model.TdCheck;
import giis.tdrules.openapi.model.TdEntity;
import giis.tdrules.openapi.model.TdSchema;
import giis.tdrules.store.dtypes.DataTypes;
import io.swagger.v3.oas.models.media.Schema;

/**
Expand All @@ -35,7 +34,7 @@ public SchemaTransformer(Map<String, Schema> oaSchemas, OaSchemaLogger oaLogger)
this.oaSchemas = oaSchemas;
this.oaLogger = oaLogger;
this.ct = new CompositeTransformer(this);
this.tdSchema = new TdSchema().storetype(DataTypes.OA_DBMS_VENDOR_NAME);
this.tdSchema = new TdSchema().storetype("openapi");
this.upstreamAttr = new UpstreamAttribute(this.tdSchema);
}

Expand Down
1 change: 1 addition & 0 deletions tdrules-store-loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
<artifactId>tdrules-store-shared</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.github.giis-uniovi</groupId>
<artifactId>tdrules-client-rdb</artifactId>
Expand Down

0 comments on commit e7abd42

Please sign in to comment.