Skip to content

Commit d485139

Browse files
committed
add springboot-starter-data-authorization
1 parent 420ee51 commit d485139

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<packaging>pom</packaging>
6+
<modules>
7+
<module>springboot-starter-data-authorization</module>
8+
</modules>
69
<parent>
710
<groupId>org.springframework.boot</groupId>
811
<artifactId>spring-boot-starter-parent</artifactId>
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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+
<parent>
7+
<groupId>com.codingapi.springboot</groupId>
8+
<artifactId>springboot-parent</artifactId>
9+
<version>3.3.26</version>
10+
</parent>
11+
12+
<artifactId>springboot-starter-data-authorization</artifactId>
13+
<description>springboot-starter-data-authorization project for Spring Boot</description>
14+
15+
<properties>
16+
<java.version>17</java.version>
17+
</properties>
18+
19+
20+
<build>
21+
<plugins>
22+
<plugin>
23+
<groupId>org.jacoco</groupId>
24+
<artifactId>jacoco-maven-plugin</artifactId>
25+
<version>0.8.12</version>
26+
<executions>
27+
<execution>
28+
<goals>
29+
<goal>prepare-agent</goal>
30+
</goals>
31+
</execution>
32+
<execution>
33+
<id>report</id>
34+
<phase>test</phase>
35+
<goals>
36+
<goal>report</goal>
37+
</goals>
38+
</execution>
39+
</executions>
40+
</plugin>
41+
42+
43+
</plugins>
44+
</build>
45+
</project>

0 commit comments

Comments
 (0)