Skip to content

Commit

Permalink
update API reducing api
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed Jan 11, 2023
1 parent 7f2e679 commit bed404b
Show file tree
Hide file tree
Showing 82 changed files with 16 additions and 41 deletions.
File renamed without changes.
9 changes: 2 additions & 7 deletions api/column/pom.xml → api/nosql-column/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,13 @@
<version>1.0.0-b6-SNAPSHOT</version>
</parent>

<artifactId>mapping-column</artifactId>
<artifactId>nosql-column</artifactId>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>jakarta.nosql.communication</groupId>
<artifactId>communication-column</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>mapping-core</artifactId>
<artifactId>nosql-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
Expand Down
File renamed without changes.
File renamed without changes.
16 changes: 3 additions & 13 deletions api/core/pom.xml → api/nosql-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,15 @@


<parent>
<groupId>jakarta.nosql.mapping</groupId>
<artifactId>mapping-api</artifactId>
<groupId>jakarta.nosql</groupId>
<artifactId>api-parent</artifactId>
<version>1.0.0-b6-SNAPSHOT</version>
</parent>

<artifactId>mapping-core</artifactId>
<artifactId>nosql-core</artifactId>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>jakarta.nosql.communication</groupId>
<artifactId>communication-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>jakarta.nosql.communication</groupId>
<artifactId>communication-query</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
File renamed without changes.
13 changes: 4 additions & 9 deletions api/document/pom.xml → api/nosql-document/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,17 @@

<parent>
<groupId>jakarta.nosql.mapping</groupId>
<artifactId>mapping-api</artifactId>
<artifactId>api-parent</artifactId>
<version>1.0.0-b6-SNAPSHOT</version>
</parent>

<artifactId>mapping-document</artifactId>
<artifactId>nosql-document</artifactId>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>jakarta.nosql.communication</groupId>
<artifactId>communication-document</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>mapping-core</artifactId>
<artifactId>nosql-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
Expand Down
File renamed without changes.
File renamed without changes.
11 changes: 3 additions & 8 deletions api/key-value/pom.xml → api/nosql-key-value/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,17 @@

<parent>
<groupId>jakarta.nosql.mapping</groupId>
<artifactId>mapping-api</artifactId>
<artifactId>api-parent</artifactId>
<version>1.0.0-b6-SNAPSHOT</version>
</parent>

<artifactId>mapping-key-value</artifactId>
<artifactId>nosql-key-value</artifactId>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>jakarta.nosql.communication</groupId>
<artifactId>communication-key-value</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>mapping-core</artifactId>
<artifactId>nosql-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
Expand Down
8 changes: 4 additions & 4 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
<packaging>pom</packaging>

<modules>
<module>core</module>
<module>key-value</module>
<module>column</module>
<module>document</module>
<module>nosql-core</module>
<module>nosql-key-value</module>
<module>nosql-column</module>
<module>nosql-document</module>
</modules>
</project>

0 comments on commit bed404b

Please sign in to comment.