Skip to content

Commit

Permalink
OZ-429: Create the Superset config folder and Maven sub-module
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuisson committed Jun 14, 2024
1 parent 9cbe884 commit 541c6e5
Show file tree
Hide file tree
Showing 6 changed files with 74 additions and 3 deletions.
20 changes: 20 additions & 0 deletions base/configs/superset/assembly.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2
http://maven.apache.org/xsd/assembly-1.1.2.xsd"
>
<id>zip-superset-configs</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<outputDirectory>.</outputDirectory>
<directory>${project.build.directory}/${project.artifactId}-${project.version}</directory>
</fileSet>
</fileSets>
</assembly>
Empty file.
42 changes: 42 additions & 0 deletions base/configs/superset/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>com.ozonehis</groupId>
<artifactId>ozone-superset-configs</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath></relativePath>
</parent>

<artifactId>ozone-cambodia-superset-configs</artifactId>
<name>Ozone Cambodia Superset configs</name>
<description>Superset configurations specific to Ozone Cambodia, to be used in Ozone Analytics</description>
<packaging>pom</packaging>

<organization>
<name>Ozone HIS</name>
<url>https://www.ozone-his.com</url>
</organization>

<developers>
<developer>
<name>Mekom Solutions</name>
<url>https://www.mekomsolutions.com</url>
</developer>
</developers>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<repositories>
<repository>
<id>mks-nexus-public</id>
<url>https://nexus.mekomsolutions.net/repository/maven-public/</url>
</repository>
</repositories>

</project>
8 changes: 7 additions & 1 deletion base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@

<artifactId>ozone-cambodia</artifactId>
<version>1.7.0-SNAPSHOT</version>
<description>Ozone Cambodia</description>
<name>Ozone Cambodia</name>
<description>Ozone distribution for Cambodia</description>
<packaging>pom</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -23,6 +25,10 @@
<dependencyReportClassifier>dependencies</dependencyReportClassifier>
</properties>

<modules>
<module>configs/superset</module>
</modules>

<dependencies>
<!-- TODO: Add any implementation-specific dependencies -->
</dependencies>
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.ozonehis</groupId>
<artifactId>ozone-cambodia-aggregator</artifactId>
<description>Ozone for Cambodia - Aggregator</description>
<name>Ozone Cambodia Aggregator</name>
<description>Aggregator project for the Ozone distribution for Cambodia</description>
<version>1.7.0-SNAPSHOT</version>
<packaging>pom</packaging>

Expand Down
4 changes: 3 additions & 1 deletion prod/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@

<artifactId>ozone-cambodia-prod</artifactId>
<version>1.7.0-SNAPSHOT</version>
<description>Ozone Cambodia - with production dependencies</description>
<description>Ozone distribution for Cambodia - with production dependencies</description>
<name>Ozone Cambodia Prod</name>
<packaging>pom</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit 541c6e5

Please sign in to comment.