Skip to content

Commit

Permalink
HSC-252: Add assembly.xml and some small adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuisson committed May 15, 2024
1 parent c5373b5 commit 1b8c204
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 7 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,6 @@ release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
effective-pom.xml
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
.mvn/wrapper/maven-wrapper.jar

Expand Down
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tasks:
- name: Run Ozone Ozone Haiti
- name: Run Ozone Haiti
before: sudo apt-get update && sudo apt-get install -y gettext-base && sudo rm -rf /var/lib/apt/lists/*
init: ./scripts/mvnw clean package
command: source target/go-to-scripts-dir.sh && ./start.sh
Expand Down
20 changes: 20 additions & 0 deletions 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-distro-dir</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>
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,19 @@
</properties>

<dependencies>
<dependency>
<groupId>com.ozonehis</groupId>
<artifactId>ozone</artifactId>
<type>zip</type>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.ozonehis</groupId>
<artifactId>ozone-scripts</artifactId>
<type>zip</type>
<version>1.0.0-SNAPSHOT</version>
</dependency>

<!-- TODO: Add any implementation-specific dependencies -->
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions readme/impl-guide.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Ozone Ozone Haiti - Implementer Guide
# Ozone Haiti - Implementer Guide

This distribution can be run using the [Ozone Docker Compose](https://github.com/ozone-his/ozone-docker-compose) project, which is the default configuration for this. The quick start command below is for demonstration and trial purposes and would not be suitable for a stable environment.

Expand All @@ -11,7 +11,7 @@ Build
Run
```bash
source target/go-to-scripts-dir.sh
./start-demo.sh
./start-ozone.sh
```


Expand Down
3 changes: 0 additions & 3 deletions scripts/docker-compose-files.txt

This file was deleted.

0 comments on commit 1b8c204

Please sign in to comment.