|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <parent> |
| 8 | + <artifactId>opensabre-framework</artifactId> |
| 9 | + <groupId>io.github.opensabre</groupId> |
| 10 | + <version>${revision}</version> |
| 11 | + </parent> |
| 12 | + |
| 13 | + <artifactId>opensabre-starter-governance</artifactId> |
| 14 | + <packaging>jar</packaging> |
| 15 | + |
| 16 | + <name>opensabre-starter-governance</name> |
| 17 | + <description>Opensabre governance starter for audit and rate limit annotations</description> |
| 18 | + |
| 19 | + <dependencyManagement> |
| 20 | + <dependencies> |
| 21 | + <dependency> |
| 22 | + <groupId>io.github.opensabre</groupId> |
| 23 | + <artifactId>opensabre-base-dependencies</artifactId> |
| 24 | + <version>${revision}</version> |
| 25 | + <type>pom</type> |
| 26 | + <scope>import</scope> |
| 27 | + </dependency> |
| 28 | + </dependencies> |
| 29 | + </dependencyManagement> |
| 30 | + |
| 31 | + <dependencies> |
| 32 | + <dependency> |
| 33 | + <groupId>io.github.opensabre</groupId> |
| 34 | + <artifactId>opensabre-starter-boot</artifactId> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>io.github.opensabre</groupId> |
| 38 | + <artifactId>opensabre-starter-rpc</artifactId> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>io.github.opensabre</groupId> |
| 42 | + <artifactId>opensabre-starter-webmvc</artifactId> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>org.springframework.boot</groupId> |
| 46 | + <artifactId>spring-boot-starter-aop</artifactId> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>org.aspectj</groupId> |
| 50 | + <artifactId>aspectjweaver</artifactId> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>jakarta.servlet</groupId> |
| 54 | + <artifactId>jakarta.servlet-api</artifactId> |
| 55 | + <scope>provided</scope> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.projectlombok</groupId> |
| 59 | + <artifactId>lombok</artifactId> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.springframework.boot</groupId> |
| 63 | + <artifactId>spring-boot-starter-test</artifactId> |
| 64 | + <scope>test</scope> |
| 65 | + </dependency> |
| 66 | + </dependencies> |
| 67 | +</project> |
0 commit comments