Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cms-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
</parent>
<artifactId>cms-api</artifactId>
<packaging>jar</packaging>
<name>CMS Api</name>
<build>
<plugins>
<plugin>
Expand Down
1 change: 1 addition & 0 deletions cms-auth/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
</parent>
<artifactId>cms-auth</artifactId>
<packaging>jar</packaging>
<name>CMS Auth</name>

<dependencies>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions cms-content/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
</parent>
<artifactId>cms-content</artifactId>
<packaging>jar</packaging>
<name>CMS Content</name>
<build>
<plugins>
<plugin>
Expand Down
1 change: 1 addition & 0 deletions cms-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
</parent>
<artifactId>cms-core</artifactId>
<packaging>jar</packaging>
<name>CMS Core</name>

<dependencies>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions cms-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
</parent>
<artifactId>cms-extensions</artifactId>
<packaging>jar</packaging>
<name>CMS Extensions</name>

<dependencies>

Expand Down
1 change: 1 addition & 0 deletions cms-filesystem/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
</parent>
<artifactId>cms-filesystem</artifactId>
<packaging>jar</packaging>
<name>CMS FileSystem</name>

<dependencies>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions cms-media/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
</parent>
<artifactId>cms-media</artifactId>
<packaging>jar</packaging>
<name>CMS Media</name>

<dependencies>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions cms-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
</parent>
<artifactId>cms-server</artifactId>
<packaging>jar</packaging>
<name>CMS Server</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>25</maven.compiler.source>
Expand Down
1 change: 1 addition & 0 deletions cms-templates/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

<artifactId>cms-templates</artifactId>
<packaging>jar</packaging>
<name>CMS Templates</name>

<properties>
<maven.compiler.source>25</maven.compiler.source>
Expand Down
1 change: 1 addition & 0 deletions cms-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
</parent>
<artifactId>cms-test</artifactId>
<packaging>jar</packaging>
<name>CMS Test Framework</name>
<properties>
<exec.mainClass>com.condation.cms.test.CmsTest</exec.mainClass>
</properties>
Expand Down
20 changes: 19 additions & 1 deletion integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,25 @@
</parent>
<artifactId>integration-tests</artifactId>
<packaging>jar</packaging>
<name>integration-tests</name>

<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<central.publishing.skip>true</central.publishing.skip>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
Expand Down Expand Up @@ -38,7 +57,6 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.15.0</version>
</dependency>
<dependency>
<groupId>com.condation.cms</groupId>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package com.condation.cms.test.integration;

/*-
* #%L
* integration-tests
* %%
* Copyright (C) 2023 - 2026 CondationCMS
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program. If not, see
* <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/

/**
* This is an empty file to generate artifacts to be deployed
*
* @author thmar
*/
public class Empty {

}
1 change: 1 addition & 0 deletions modules/api-module/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
</parent>
<artifactId>api-module</artifactId>
<packaging>jar</packaging>
<name>CMS Api Module</name>

<dependencies>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions modules/example-module/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
</parent>
<artifactId>example-module</artifactId>
<packaging>jar</packaging>
<name>CMS Example Module</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<module.id>example-module</module.id>
Expand Down
1 change: 1 addition & 0 deletions modules/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<groupId>com.condation.cms.modules</groupId>
<artifactId>cms-modules</artifactId>
<packaging>pom</packaging>
<name>CMS Modules</name>

<modules>
<module>example-module</module>
Expand Down
1 change: 1 addition & 0 deletions modules/system-modules/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
</parent>
<artifactId>cms-system-modules</artifactId>
<packaging>jar</packaging>
<name>CMS System Modules</name>

<dependencies>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions modules/ui-module/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
</parent>
<artifactId>ui-module</artifactId>
<packaging>jar</packaging>
<name>UI Module</name>

<dependencies>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.condation.cms</groupId>
<artifactId>cms-parent</artifactId>
<name>CMS Parent</name>
<version>8.0.0</version>
<packaging>pom</packaging>
<properties>
Expand Down