generated from hms-networks/sc-java-maven-starter-project
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
176 changed files
with
2,806 additions
and
1,140 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.