Skip to content

Commit

Permalink
Improve connector branding
Browse files Browse the repository at this point in the history
Improve the branding throughout the connector by
more consistently referencing the connector name
as Ignition Ewon Connector. Additionally, eWon
is being corrected to Ewon where possible.

The Ignition Maven Plugin was also updated to
support improved build version display on the
Ignition UI.

Note: Further branding improvements will be
completed after v2.0.0 release to alleviate
the need for multiple rebases during dev.
  • Loading branch information
alexjhawk committed Aug 18, 2023
1 parent 7f60a62 commit c68be40
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 9 deletions.
10 changes: 5 additions & 5 deletions eWonConnector-build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>EwonConnector</artifactId>
<artifactId>IgnitionEwonConnector</artifactId>
<groupId>com.hms_networks.americas.sc</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
Expand All @@ -25,7 +25,7 @@
<plugin>
<groupId>com.inductiveautomation.ignitionsdk</groupId>
<artifactId>ignition-maven-plugin</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>

<executions>
<execution>
Expand All @@ -45,9 +45,9 @@
</projectScopes>

<moduleId>com.hms_networks.americas.sc.ignition</moduleId>
<moduleName>${project.parent.name}</moduleName>
<moduleDescription>${project.description}</moduleDescription>
<moduleVersion>1.2.1</moduleVersion>
<moduleName>${module-name}</moduleName>
<moduleDescription>${module-description}</moduleDescription>
<moduleVersion>${module-full-version}</moduleVersion>
<requiredIgnitionVersion>${ignition-sdk-version}</requiredIgnitionVersion>
<licenseFile>license.html</licenseFile>
<freeModule>true</freeModule>
Expand Down
2 changes: 1 addition & 1 deletion eWonConnector-gateway/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>EwonConnector</artifactId>
<artifactId>IgnitionEwonConnector</artifactId>
<groupId>com.hms_networks.americas.sc</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
Expand Down
17 changes: 14 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,29 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<artifactId>EwonConnector</artifactId>
<artifactId>IgnitionEwonConnector</artifactId>
<groupId>com.hms_networks.americas.sc</groupId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>

<properties>
<!-- Ignition Platform/SDK Properties -->
<ignition-platform-version>8.1.1</ignition-platform-version>
<ignition-sdk-version>${ignition-platform-version}</ignition-sdk-version>
<module-name>EwonConnector Ignition Module</module-name>
<module-description>EwonConnector Ignition Module.</module-description>

<!-- Module Properties -->
<module-id>com.hms_networks.americas.sc.ignition</module-id>
<module-name>Ignition Ewon Connector</module-name>
<module-description>Ignition module for streaming Ewon tag data to Ignition tags using the Ewon DMWeb and M2Web APIs.</module-description>
<module-version>2.0.0</module-version>
<module-full-version>${module-version}.${maven.build.timestamp}</module-full-version>
<module-author>HMS Networks, MU Americas Solution Center</module-author>
<module-website>https://github.com/hms-networks/IgnitionEwonConnector</module-website>

<!-- Maven/Build Properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.build.timestamp.format>yyyyMMddHH</maven.build.timestamp.format>
</properties>

<modules>
Expand Down

0 comments on commit c68be40

Please sign in to comment.