hp-soa-framework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.hpsocket</groupId> <artifactId>hp-soa-framework</artifactId> <version>1.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.hpsocket</groupId> <artifactId>hp-soa-parent</artifactId> <version>1.2.0</version> </parent> <artifactId>hp-soa-framework</artifactId> <version>1.2.0</version> <packaging>pom</packaging> <name>${project.artifactId}</name> <description>hp-soa: a fully functional, easy-to-use, and highly scalable microservice framework</description> <url>https://github.com/ldcsaa/hp-soa</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <modules> <module>hp-soa-framework-core</module> <module>hp-soa-framework-web</module> <module>hp-soa-framework-leaf</module> <module>hp-soa-framework-gelf</module> <module>hp-soa-framework-util</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>io.github.hpsocket</groupId> <artifactId>hp-soa-dependencies</artifactId> <version>${project.parent.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> </plugin> </plugins> </build> </project>