Skip to content

Commit

Permalink
WIP: DO NOT MERGE
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjhawk committed Apr 29, 2024
1 parent eb34aa9 commit c605c9a
Show file tree
Hide file tree
Showing 176 changed files with 2,806 additions and 1,140 deletions.
16 changes: 16 additions & 0 deletions .idea/checkstyle-idea.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 22 additions & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 44 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

76 changes: 76 additions & 0 deletions alarms/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--suppress MavenModelInspection -->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>

<!-- PARENT PROJECT -->
<parent>
<groupId>com.hms_networks.americas.sc</groupId>
<artifactId>extensions</artifactId>
<version>1.15.8</version>
</parent>

<!-- MODULE ARTIFACT ID -->
<artifactId>alarms</artifactId>

<!-- BUILD CONFIGURATION, PLUGINS, AND EXTENSIONS -->
<build>
<plugins>
<!-- Download JDK which can compile for Java 1.4 -->
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-jlink-wrapper</artifactId>
<executions>
<execution>
<id>cache-jdk-for-build</id>
<phase>initialize</phase>
<goals>
<goal>cache-jdk</goal>
</goals>
<configuration>
<jdkCachePath>${pom.parent.build.directory}${file.separator}buildJdk
</jdkCachePath>
</configuration>
</execution>
</executions>
</plugin>

<!-- Create testing coverage report -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>

<!-- Build sources .jar output -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>

<!-- Build Javadocs .jar output -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>

<!-- PROJECT DEPENDENCIES/LIBRARIES -->
<dependencies>
<!-- System Module -->
<dependency>
<groupId>com.hms_networks.americas.sc</groupId>
<artifactId>system</artifactId>
<version>1.15.8</version>
</dependency>

<!-- Tag Info Module -->
<dependency>
<groupId>com.hms_networks.americas.sc</groupId>
<artifactId>taginfo</artifactId>
<version>1.15.8</version>
</dependency>
</dependencies>
</project>
76 changes: 76 additions & 0 deletions api/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--suppress MavenModelInspection -->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>

<!-- PARENT PROJECT -->
<parent>
<groupId>com.hms_networks.americas.sc</groupId>
<artifactId>extensions</artifactId>
<version>1.15.8</version>
</parent>

<!-- MODULE ARTIFACT ID -->
<artifactId>api</artifactId>

<!-- BUILD CONFIGURATION, PLUGINS, AND EXTENSIONS -->
<build>
<plugins>
<!-- Download JDK which can compile for Java 1.4 -->
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-jlink-wrapper</artifactId>
<executions>
<execution>
<id>cache-jdk-for-build</id>
<phase>initialize</phase>
<goals>
<goal>cache-jdk</goal>
</goals>
<configuration>
<jdkCachePath>${pom.parent.build.directory}${file.separator}buildJdk
</jdkCachePath>
</configuration>
</execution>
</executions>
</plugin>

<!-- Create testing coverage report -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>

<!-- Build sources .jar output -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>

<!-- Build Javadocs .jar output -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>

<!-- PROJECT DEPENDENCIES/LIBRARIES -->
<dependencies>
<!-- Logging Module -->
<dependency>
<groupId>com.hms_networks.americas.sc</groupId>
<artifactId>logging</artifactId>
<version>1.15.8</version>
</dependency>

<!-- String Module -->
<dependency>
<groupId>com.hms_networks.americas.sc</groupId>
<artifactId>string</artifactId>
<version>1.15.8</version>
</dependency>
</dependencies>
</project>
77 changes: 77 additions & 0 deletions config/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--suppress MavenModelInspection -->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>

<!-- PARENT PROJECT -->
<parent>
<groupId>com.hms_networks.americas.sc</groupId>
<artifactId>extensions</artifactId>
<version>1.15.8</version>
</parent>

<!-- MODULE ARTIFACT ID -->
<artifactId>config</artifactId>

<!-- BUILD CONFIGURATION, PLUGINS, AND EXTENSIONS -->
<build>
<plugins>
<!-- Download JDK which can compile for Java 1.4 -->
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-jlink-wrapper</artifactId>
<executions>
<execution>
<id>cache-jdk-for-build</id>
<phase>initialize</phase>
<goals>
<goal>cache-jdk</goal>
</goals>
<configuration>
<jdkCachePath>${pom.parent.build.directory}${file.separator}buildJdk
</jdkCachePath>
</configuration>
</execution>
</executions>
</plugin>

<!-- Create testing coverage report -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>

<!-- Build sources .jar output -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>

<!-- Build Javadocs .jar output -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>

<!-- PROJECT DEPENDENCIES/LIBRARIES -->
<dependencies>

<!-- File Utils Module -->
<dependency>
<groupId>com.hms_networks.americas.sc</groupId>
<artifactId>fileutils</artifactId>
<version>1.15.8</version>
</dependency>

<!-- JSON Module -->
<dependency>
<groupId>com.hms_networks.americas.sc</groupId>
<artifactId>json</artifactId>
<version>1.15.8</version>
</dependency>
</dependencies>
</project>
Loading

0 comments on commit c605c9a

Please sign in to comment.