This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit 5307db45f43bb0780ffba7d973a352d2e14b9b41
Author: Christofer Dutz <cd...@apache.org>
AuthorDate: Fri Feb 16 18:30:32 2024 +0100

    chore: Made the UI tool's modules have names that match the other modules.
---
 plc4j/tools/ui/application/pom.xml                                  | 1 +
 plc4j/tools/ui/backend/pom.xml                                      | 1 +
 plc4j/tools/ui/frontend/pom.xml                                     | 1 +
 .../ui/frontend/project/src/generated/plc4j-tools-ui-frontend.ts    | 6 +++---
 4 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/plc4j/tools/ui/application/pom.xml 
b/plc4j/tools/ui/application/pom.xml
index 1a5bec3d37..f7a0e446e4 100644
--- a/plc4j/tools/ui/application/pom.xml
+++ b/plc4j/tools/ui/application/pom.xml
@@ -27,6 +27,7 @@
   </parent>
 
   <artifactId>plc4j-tools-ui-application</artifactId>
+  <name>PLC4J: Tools: Application</name>
 
   <build>
     <plugins>
diff --git a/plc4j/tools/ui/backend/pom.xml b/plc4j/tools/ui/backend/pom.xml
index 6e5f33cf70..4923511507 100644
--- a/plc4j/tools/ui/backend/pom.xml
+++ b/plc4j/tools/ui/backend/pom.xml
@@ -27,6 +27,7 @@
   </parent>
 
   <artifactId>plc4j-tools-ui-backend</artifactId>
+  <name>PLC4J: Tools: Backend</name>
 
   <build>
     <plugins>
diff --git a/plc4j/tools/ui/frontend/pom.xml b/plc4j/tools/ui/frontend/pom.xml
index b27fb47090..ebc067fd06 100644
--- a/plc4j/tools/ui/frontend/pom.xml
+++ b/plc4j/tools/ui/frontend/pom.xml
@@ -27,6 +27,7 @@
   </parent>
 
   <artifactId>plc4j-tools-ui-frontend</artifactId>
+  <name>PLC4J: Tools: Frontend</name>
 
   <properties>
   </properties>
diff --git 
a/plc4j/tools/ui/frontend/project/src/generated/plc4j-tools-ui-frontend.ts 
b/plc4j/tools/ui/frontend/project/src/generated/plc4j-tools-ui-frontend.ts
index 759a5b75a4..9d1d0b9f1d 100644
--- a/plc4j/tools/ui/frontend/project/src/generated/plc4j-tools-ui-frontend.ts
+++ b/plc4j/tools/ui/frontend/project/src/generated/plc4j-tools-ui-frontend.ts
@@ -48,8 +48,8 @@ export interface DeviceEvent extends 
UiApplicationEvent<Device> {
 export interface PlcDriverMetadata {
     protocolConfigurationOptionMetadata?: OptionMetadata;
     discoverySupported: boolean;
-    supportedTransportCodes: string[];
     defaultTransportCode?: string;
+    supportedTransportCodes: string[];
 }
 
 export interface ApplicationEvent extends EventObject {
@@ -57,8 +57,8 @@ export interface ApplicationEvent extends EventObject {
 }
 
 export interface OptionMetadata {
-    options: Option[];
     requiredOptions: Option[];
+    options: Option[];
 }
 
 export interface EventObject extends Serializable {
@@ -69,8 +69,8 @@ export interface Option {
     key: string;
     type: OptionType;
     defaultValue?: any;
-    required: boolean;
     description: string;
+    required: boolean;
 }
 
 export interface Serializable {

Reply via email to