Skip to content

Commit

Permalink
add system module
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorsten Marx committed Nov 19, 2024
1 parent 9e3cfa4 commit a54b1a7
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 1 deletion.
5 changes: 5 additions & 0 deletions cms-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@
<artifactId>cms-auth</artifactId>
</dependency>

<dependency>
<groupId>com.condation.cms.modules</groupId>
<artifactId>cms-system-modules</artifactId>
</dependency>

<dependency>
<groupId>com.condation.cms</groupId>
<artifactId>cms-test</artifactId>
Expand Down
1 change: 1 addition & 0 deletions modules/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@

<modules>
<module>example-module</module>
<module>system-modules</module>
</modules>
</project>
18 changes: 18 additions & 0 deletions modules/system-modules/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?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.condation.cms.modules</groupId>
<artifactId>cms-modules</artifactId>
<version>7.2.0</version>
</parent>
<artifactId>cms-system-modules</artifactId>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>com.condation.cms</groupId>
<artifactId>cms-api</artifactId>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.condation.cms.auth;
package com.condation.cms.modules.system;

/*-
* #%L
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,11 @@
<artifactId>modules-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.condation.cms.modules</groupId>
<artifactId>cms-system-modules</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
Expand Down

0 comments on commit a54b1a7

Please sign in to comment.