soento-cms
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.soento.cms</groupId>
<artifactId>soento-cms</artifactId>
<version>1.0.0-RELEASE</version>
</dependency><?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">
<parent>
<groupId>com.soento</groupId>
<artifactId>soento-boot</artifactId>
<version>1.0.2-RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.soento.cms</groupId>
<artifactId>soento-cms</artifactId>
<version>1.0.0-RELEASE</version>
<name>${project.artifactId}</name>
<packaging>pom</packaging>
<modules>
<module>soento-cms-start</module>
<module>soento-cms-devtools</module>
<module>soento-cms-system</module>
<module>soento-cms-sample</module>
</modules>
<properties>
<cms.version>1.0.0-RELEASE</cms.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.soento.cms</groupId>
<artifactId>soento-cms-system</artifactId>
<version>${cms.version}</version>
</dependency>
<dependency>
<groupId>com.soento.cms</groupId>
<artifactId>soento-cms-devtools</artifactId>
<version>${cms.version}</version>
</dependency>
<dependency>
<groupId>com.soento.cms</groupId>
<artifactId>soento-cms-sample</artifactId>
<version>${cms.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>