lush-archetypes
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.px3j</groupId> <artifactId>lush-archetypes</artifactId> <version>2024.Q4.1</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"> <modelVersion>4.0.0</modelVersion> <name>Lush Service Architecture - Archetype Parent</name> <description>Lush Service Architecture - Archetype Parent</description> <url>https://github.com/paul-parrone/lush</url> <parent> <groupId>com.px3j</groupId> <artifactId>lush</artifactId> <version>2024.Q4.1</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>lush-archetypes</artifactId> <packaging>pom</packaging> <modules> <module>lush-service-archetype-web</module> <module>lush-service-archetype-webflux</module> </modules> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <!-- Dependencies for tracing and distributed tracing --> <!-- Micrometer Tracing Bridge for Brave (or choose another tracing implementation) --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-core</artifactId> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-tracing-bridge-brave</artifactId> </dependency> <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> </dependencies> </project>