Skip to content

Commit

Permalink
refactoring: init miranum-libs
Browse files Browse the repository at this point in the history
  • Loading branch information
lmoesle committed Jul 31, 2024
1 parent 1fee279 commit f35be51
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 153 deletions.
1 change: 1 addition & 0 deletions connect/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<groupId>io.miragon.miranum</groupId>
<artifactId>miranum-unit-test</artifactId>
<scope>test</scope>
<version>${project.version}</version>
</dependency>
</dependencies>

Expand Down
20 changes: 20 additions & 0 deletions libs/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>miranum-libs</artifactId>
<name>miranum-libs</name>
<packaging>pom</packaging>

<parent>
<groupId>io.miragon.miranum</groupId>
<artifactId>miranum</artifactId>
<version>${revision}</version>
</parent>

<modules>
<module>unit-test</module>
</modules>


</project>
File renamed without changes.
137 changes: 0 additions & 137 deletions platform/coverage/pom.xml

This file was deleted.

7 changes: 0 additions & 7 deletions platform/engine/task/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,6 @@
<groupId>io.github.openfeign</groupId>
<artifactId>feign-httpclient</artifactId>
</dependency>

<!-- Test -->
<dependency>
<groupId>io.miragon.miranum</groupId>
<artifactId>miranum-unit-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
5 changes: 2 additions & 3 deletions platform/libs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>miranum-libs</artifactId>
<name>miranum-libs</name>
<artifactId>miranum-platform-libs</artifactId>
<name>miranum-platform-libs</name>
<packaging>pom</packaging>

<parent>
Expand All @@ -14,7 +14,6 @@

<modules>
<module>spring-security</module>
<module>unit-test</module>
</modules>


Expand Down
2 changes: 1 addition & 1 deletion platform/libs/spring-security/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.miragon.miranum</groupId>
<artifactId>miranum-libs</artifactId>
<artifactId>miranum-platform-libs</artifactId>
<version>${revision}</version>
</parent>

Expand Down
6 changes: 6 additions & 0 deletions platform/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.miragon.miranum</groupId>
<artifactId>miranum-unit-test</artifactId>
<scope>test</scope>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
6 changes: 1 addition & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
</properties>

<modules>
<module>libs</module>
<module>connect</module>
<module>platform</module>
<module>examples</module>
Expand Down Expand Up @@ -94,11 +95,6 @@
<artifactId>logstash-logback-encoder</artifactId>
<version>${logstash.encoder.version}</version>
</dependency>
<dependency>
<groupId>io.miragon.miranum</groupId>
<artifactId>miranum-unit-test</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit f35be51

Please sign in to comment.