macha
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.machanism.macha</groupId> <artifactId>macha</artifactId> <version>0.0.1</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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.machanism.macha</groupId> <artifactId>macha</artifactId> <version>0.0.1</version> <packaging>pom</packaging> <name>Macha</name> <description> The Macha Project is part of the Machanism core, designed to build scalable and maintainable applications using Clean Architecture principles. It supports modular development with Java (backend), Apache Maven, and Docker while enabling flexibility for outer layers like Spring Boot, TypeScript, and cloud services. Macha emphasizes reusable libraries, strict dependency management, and test-driven development, making it ideal for modern software systems. </description> <url>http://macha.machanism.org</url> <properties> <scm-path>/</scm-path> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.8</java.version> <spring-boot.version>3.3.3</spring-boot.version> </properties> <scm> <connection> scm:svn:https://svn.code.sf.net/p/macha/code/trunk${scm-path}</connection> <developerConnection> scm:svn:https://svn.code.sf.net/p/macha/code/trunk${scm-path}</developerConnection> <url>https://sourceforge.net/p/macha/code/HEAD/tree/trunk${scm-path}</url> </scm> <modules> <module>core</module> <module>apps</module> <module>machaon</module> </modules> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <doclint>all,-missing</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.7.1</version> <executions> <execution> <id>make-assembly</id> <phase>deploy</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> </plugin> <plugin> <groupId>org.apache.avro</groupId> <artifactId>avro-maven-plugin</artifactId> <version>1.12.0</version> </plugin> <plugin> <artifactId>plantuml-generator-maven-plugin</artifactId> <groupId>de.elnarion.maven</groupId> <version>3.0.1</version> <configuration> <outputFilename>class-diagram.puml</outputFilename> <outputDirectory>target/generated-docs/puml</outputDirectory> <maxVisibilityFields>PUBLIC</maxVisibilityFields> <maxVisibilityMethods>PROTECTED</maxVisibilityMethods> <hideFields>true</hideFields> <hideMethods>true</hideMethods> <hideClasses>true</hideClasses> <scanPackages> <scanPackage>org.machanism.macha.*</scanPackage> </scanPackages> </configuration> <executions> <execution> <id>gen-class-diagram</id> <phase>pre-site</phase> <goals> <goal>generate</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.simplify4u.plugins</groupId> <artifactId>sitemapxml-maven-plugin</artifactId> <version>2.2.0</version> </plugin> <plugin> <groupId>com.ganteater</groupId> <artifactId>ae-maven-plugin</artifactId> <version>1.2.1-SNAPSHOT</version> <configuration> <basedir>src/scaff</basedir> </configuration> <dependencies> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>42.7.4</version> </dependency> <dependency> <groupId>com.ganteater</groupId> <artifactId>sql-ae-plugin</artifactId> <version>1.2.1-SNAPSHOT</version> </dependency> <dependency> <groupId>com.ganteater</groupId> <artifactId>jms-ae-plugin</artifactId> <version>1.2.1-SNAPSHOT</version> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <parameters>true</parameters> <testCompilerArgument>-parameters</testCompilerArgument> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M4</version> <configuration> <excludes> <exclude>**/*ManualTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.21.0</version> </plugin> <plugin> <groupId>org.simplify4u.plugins</groupId> <artifactId>sitemapxml-maven-plugin</artifactId> <executions> <execution> <goals> <goal>gen</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.github.ferstl</groupId> <artifactId>depgraph-maven-plugin</artifactId> <version>4.0.3</version> <configuration> <includes> <include>${project.groupId}:${project.artifactId}:*</include> <include>${project.groupId}*:core:*</include> <include>${project.groupId}*:apps:*</include> <include>${project.groupId}*:machaon:*</include> </includes> <showGroupIds>false</showGroupIds> <includeParentProjects>true</includeParentProjects> <graphFormat>puml</graphFormat> <outputDirectory>target/generated-docs/puml</outputDirectory> <outputFileName>dependency-graph</outputFileName> <scope>compile</scope> </configuration> <executions> <execution> <id>gen-class-diagram</id> <phase>pre-site</phase> <goals> <goal>aggregate</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.github.funthomas424242</groupId> <artifactId>plantuml-maven-plugin</artifactId> <version>1.5.2</version> <configuration> <sourceFiles> <directory>${basedir}</directory> <includes> <include>src/site/puml/**/*.*</include> <include>target/generated-docs/puml/*.*</include> </includes> </sourceFiles> <outputDirectory>target/site/images</outputDirectory> </configuration> <executions> <execution> <id>plantuml-generate</id> <phase>site</phase> <goals> <goal>generate</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>net.sourceforge.plantuml</groupId> <artifactId>plantuml</artifactId> <version>1.2022.7</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> <distributionManagement> <site> <id>macha.machanism.org</id> <url>scp://macha.machanism.org/@macha</url> </site> </distributionManagement> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <repositories> <repository> <name>Central Portal Snapshots</name> <id>central-portal-snapshots</id> <url>https://central.sonatype.com/repository/maven-snapshots/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>confluent</id> <url>https://packages.confluent.io/maven/</url> </repository> </repositories> <developers> <developer> <name>Viktor Tovstyi</name> <email>viktor.tovstyi@gmail.com</email> <organization>machanism.org</organization> <organizationUrl>http://machanism.org</organizationUrl> </developer> </developers> </project>