utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.machanism.macha.core.commons</groupId>
<artifactId>utils</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>utils</artifactId>
<name>Utils</name>
<description>
The Utils module provides a collection of reusable utility classes and
helper functions designed to streamline common tasks across the
core. It includes various tools for string manipulation, date and
time handling, validation, and other general-purpose operations. This
module aims to reduce redundancy, enhance productivity, and promote
consistency within the framework.
</description>
<url>https://macha.machanism.org/core/core-commons/utils</url>
<properties>
<scm-path>/core/commons/utils</scm-path>
<maven.javadoc.skip>false</maven.javadoc.skip>
</properties>
<dependencies>
<dependency>
<groupId>org.machanism.macha.core.entities</groupId>
<artifactId>base-entities</artifactId>
<version>0.0.4</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.4</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.3.15</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.github.ferstl</groupId>
<artifactId>depgraph-maven-plugin</artifactId>
<configuration>
<includes>
<include>${project.groupId}:${project.artifactId}:*</include>
<include>*:base-entities:*</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>plantuml-generator-maven-plugin</artifactId>
<groupId>de.elnarion.maven</groupId>
<configuration>
<scanPackages>
<scanPackage>org.machanism.macha.core.commons.utils</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>