Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat : code changes for new serial part submodel with multi version and removed not supported maven modules #139

Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Added new classes for multiple submodel version support.
- Added refactor code changes for external services.
- Added usecase handle implementation for multiple submodel support.
- Supported new serial part submodel with multi version support.

## [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
Loading