Skip to content

Commit

Permalink
renames demo apps and adapts POMs
Browse files Browse the repository at this point in the history
  • Loading branch information
jekutzsche committed May 4, 2021
1 parent 2c59b68 commit 592cbab
Show file tree
Hide file tree
Showing 63 changed files with 11 additions and 57 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 3 additions & 4 deletions iris-app-api-demo/pom.xml → demo-checkin-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,10 @@
<version>2.4.4</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<groupId>de.healthIMIS</groupId>
<artifactId>iris-app-api-demo</artifactId>
<groupId>iris-gateway</groupId>
<artifactId>demo-checkin-app</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>iris-app-api-demo</name>
<description>Demo for App connection</description>
<name>Demo for Checkin Apps</name>
<properties>
<java.version>11</java.version>
<docker.image.prefix>inoeg</docker.image.prefix>
Expand Down
File renamed without changes.
File renamed without changes.
12 changes: 3 additions & 9 deletions iris-dummy-app/pom.xml → demo-contact-diary-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>de.healthIMIS</groupId>
<groupId>iris-gateway</groupId>
<artifactId>parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>

<artifactId>iris-dummy-app</artifactId>
<artifactId>demo-contact-diary-app</artifactId>

<name>IRIS Dummy App</name>
<name>Demo for Contact Diary App</name>
<description>A dummy app as example for an app that uses the IRIS system.</description>
<licenses>
<license>
Expand All @@ -30,12 +30,6 @@
</properties>

<dependencies>
<dependency>
<groupId>de.healthIMIS</groupId>
<artifactId>iris-api-app-client</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.springframework.hateoas</groupId>
<artifactId>spring-hateoas</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion iris-location-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<version>2.4.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>de.healthIMIS.iris</groupId>
<groupId>iris-gateway</groupId>
<artifactId>iris-location-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>IRIS Location Service</name>
Expand Down
2 changes: 1 addition & 1 deletion iris-public-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<version>2.4.2</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<groupId>de.healthIMIS</groupId>
<groupId>iris-gateway</groupId>
<artifactId>iris-public-server</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>IRIS Public Server</name>
Expand Down
45 changes: 3 additions & 42 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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>

<groupId>de.healthIMIS</groupId>
<groupId>iris-gateway</groupId>
<artifactId>parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
Expand All @@ -15,52 +15,13 @@
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<jackson-version>2.12.2</jackson-version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.4.4</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons</artifactId>
<version>2.4.6</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>${jackson-version}</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>2.0.1.Final</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-version}</version>
</dependency>
</dependencies>
</dependencyManagement>

<modules>
<module>iris-api-generator</module>
<module>iris-api-location-service</module>
<module>iris-api-public-server</module>
<module>iris-api-sidecar-server</module>
<module>iris-api-sidecar-client</module>
<module>iris-api-app-client</module>
<module>iris-sormas-api-client</module>
<module>iris-public-server</module>
<module>iris-location-service</module>
<module>iris-client-sormas-sidecar</module>
<module>iris-app-api-demo</module>
<module>iris-dummy-app</module>
<module>demo-checkin-app</module>
<module>demo-contact-diary-app</module>
</modules>

<build>
Expand Down

0 comments on commit 592cbab

Please sign in to comment.