Skip to content

Commit

Permalink
Merge pull request #139 from catenax-ng/CX_R24.05_multi_version_submo…
Browse files Browse the repository at this point in the history
…del_impl_part_4

feat : code changes for new serial part submodel with multi version and removed not supported maven modules
  • Loading branch information
almadigabor authored Apr 29, 2024
2 parents 22e8179 + 8d94e48 commit ba3d3f6
Show file tree
Hide file tree
Showing 43 changed files with 673 additions and 2,649 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Added refactor code changes for external services.
- Added different usecase Handler for multi version support.
- Added usecase handle implementation for multiple submodel support.
- Supported new serial part submodel with multi version support.
- Removed maven modules serial-part-typization and assembly-part-relationship for update.

## [2.3.6] - 2024-03-06
### Fixed
Expand Down
5 changes: 2 additions & 3 deletions DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ maven/mavencentral/com.google.errorprone/error_prone_annotations/2.21.1, Apache-
maven/mavencentral/com.jayway.jsonpath/json-path/2.8.0, Apache-2.0, approved, clearlydefined
maven/mavencentral/com.networknt/json-schema-validator/1.0.72, Apache-2.0, approved, CQ22638
maven/mavencentral/com.nimbusds/nimbus-jose-jwt/9.24.4, Apache-2.0, approved, clearlydefined
maven/mavencentral/com.opencsv/opencsv/5.8, Apache-2.0, approved, clearlydefined
maven/mavencentral/com.opencsv/opencsv/5.9, Apache-2.0, approved, clearlydefined
maven/mavencentral/com.sun.istack/istack-commons-runtime/4.1.2, BSD-3-Clause, approved, #2590
maven/mavencentral/com.vaadin.external.google/android-json/0.0.20131108.vaadin1, Apache-2.0, approved, CQ21310
maven/mavencentral/com.zaxxer/HikariCP/5.0.1, Apache-2.0, approved, clearlydefined
Expand Down Expand Up @@ -66,7 +66,6 @@ maven/mavencentral/org.bouncycastle/bcprov-jdk18on/1.77, MIT AND CC0-1.0, approv
maven/mavencentral/org.checkerframework/checker-qual/3.37.0, MIT, approved, clearlydefined
maven/mavencentral/org.eclipse.angus/angus-activation/2.0.1, EPL-2.0 OR GPL-2.0-only with Classpath-exception-2.0, approved, ee4j.angus
maven/mavencentral/org.eclipse.persistence/eclipselink/3.0.3, EPL-2.0 OR BSD-3-Clause, approved, ee4j.eclipselink
maven/mavencentral/org.eclipse.tractusx/assembly-part-relationship/0.0.1, Apache-2.0, approved, automotive.tractusx
maven/mavencentral/org.eclipse.tractusx/batch/0.0.1, Apache-2.0, approved, automotive.tractusx
maven/mavencentral/org.eclipse.tractusx/bpn-discovery/0.0.1, Apache-2.0, approved, automotive.tractusx
maven/mavencentral/org.eclipse.tractusx/digital-twins/0.0.1, Apache-2.0, approved, automotive.tractusx
Expand All @@ -78,7 +77,7 @@ maven/mavencentral/org.eclipse.tractusx/pcf/0.0.1, Apache-2.0, approved, automot
maven/mavencentral/org.eclipse.tractusx/policy-hub/0.0.1, Apache-2.0, approved, automotive.tractusx
maven/mavencentral/org.eclipse.tractusx/portal/0.0.1, Apache-2.0, approved, automotive.tractusx
maven/mavencentral/org.eclipse.tractusx/sde-common/0.0.1, Apache-2.0, approved, automotive.tractusx
maven/mavencentral/org.eclipse.tractusx/serial-part-typization/0.0.1, Apache-2.0, approved, automotive.tractusx
maven/mavencentral/org.eclipse.tractusx/serial-part/0.0.1, Apache-2.0, approved, automotive.tractusx
maven/mavencentral/org.eclipse.tractusx/single-level-bom-as-planned/0.0.1, Apache-2.0, approved, automotive.tractusx
maven/mavencentral/org.eclipse.tractusx/single-level-usage-as-built/0.0.1, Apache-2.0, approved, automotive.tractusx
maven/mavencentral/org.flywaydb/flyway-core/9.16.3, Apache-2.0, approved, #7935
Expand Down
18 changes: 7 additions & 11 deletions modules/sde-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<groupId>org.eclipse.tractusx</groupId>
<artifactId>sde</artifactId>
<version>0.0.1</version>
<relativePath>../../</relativePath>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>sde-core</artifactId>
<name>sde-core</name>
Expand Down Expand Up @@ -139,18 +139,12 @@
<version>0.0.1</version>
</dependency>

<dependency>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>serial-part-typization</artifactId>
<version>0.0.1</version>
</dependency>

<dependency>
<dependency>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>assembly-part-relationship</artifactId>
<artifactId>serial-part</artifactId>
<version>0.0.1</version>
</dependency>

<dependency>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>batch</artifactId>
Expand All @@ -174,11 +168,13 @@
<artifactId>part-site-information-as-planned</artifactId>
<version>0.0.1</version>
</dependency>

<dependency>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>single-level-usage-as-built</artifactId>
<version>0.0.1</version>
</dependency>

<dependency>
<groupId>org.eclipse.tractusx</groupId>
<artifactId>pcf</artifactId>
Expand All @@ -194,7 +190,7 @@
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>5.8</version>
<version>5.9</version>
</dependency>

</dependencies>
Expand Down

This file was deleted.

87 changes: 0 additions & 87 deletions modules/sde-submodules/assembly-part-relationship/pom.xml

This file was deleted.

This file was deleted.

Loading

0 comments on commit ba3d3f6

Please sign in to comment.