model-customization
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.machanism.macha.core.commons</groupId>
<artifactId>model-customization</artifactId>
<version>0.0.4</version>
</dependency><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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.machanism.macha.core.commons</groupId>
<artifactId>core-commons</artifactId>
<version>0.0.4</version>
</parent>
<artifactId>model-customization</artifactId>
<name>Core Model Сustomization</name>
<description>
core components work with core entities. Adapters and
interactors know only base models. To customize a client project, you
should extend base models and other related components. For a universal
approach, you can use predefined model customization tools following the
dependency direction rule.
</description>
<url>https://macha.machanism.org/core/core-commons/model-customization</url>
<properties>
<scm-path>/core/commons/model-customization</scm-path>
<maven.javadoc.skip>false</maven.javadoc.skip>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.github.ferstl</groupId>
<artifactId>depgraph-maven-plugin</artifactId>
<configuration>
<includes>
<include>${project.groupId}:${project.artifactId}:*</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>plantuml-generator-maven-plugin</artifactId>
<groupId>de.elnarion.maven</groupId>
<configuration>
<scanPackages>
<scanPackage>org.machanism.macha.core.commons.customization.annotation*</scanPackage>
</scanPackages>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:svn:${scm-root}${scm-branch}${scm-path}</connection>
<developerConnection>scm:svn:${scm-root}${scm-branch}${scm-path}</developerConnection>
<url>${scm-web}${scm-branch}${scm-path}</url>
</scm>
</project>