-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
119 lines (106 loc) · 3.6 KB
/
pom.xml
File metadata and controls
119 lines (106 loc) · 3.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.5.7</version>
</parent>
<groupId>com.eaphonetech</groupId>
<artifactId>eaphone-spring-data-query-parent</artifactId>
<version>2.3.1</version>
<packaging>pom</packaging>
<organization>
<name>广州易风</name>
<url>http://www.eaphonetech.com</url>
</organization>
<scm>
<connection>scm:git:https://cnb.cool/xinxiangsui/java-projects/eaphone-spring-data-query</connection>
<developerConnection>scm:git:https://cnb.cool/xinxiangsui/java-projects/eaphone-spring-data-query</developerConnection>
<url>https://github.com/EaphoneTech/eaphone-spring-data-query</url>
<tag>2.3.1</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<reflections.version>0.10.2</reflections.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.eaphonetech</groupId>
<artifactId>eaphone-spring-data-query-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.eaphonetech</groupId>
<artifactId>eaphone-spring-data-query-jpa</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.eaphonetech</groupId>
<artifactId>eaphone-spring-data-query-mongodb</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>${reflections.version}</version>
</dependency>
<!-- dependencies for embedding databases -->
<!-- mongo-java-server for fake mongodb -->
<dependency>
<groupId>de.bwaldvogel</groupId>
<artifactId>mongo-java-server</artifactId>
<version>1.47.0</version>
</dependency>
<!-- h2 for fake mysql -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.3.232</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<defaultGoal>compile</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.12.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<projectVersionPolicyId>SemVerVersionPolicy</projectVersionPolicyId>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>eaphone-spring-data-query-commons</module>
<module>eaphone-spring-data-query-jpa</module>
<module>eaphone-spring-data-query-mongodb</module>
<module>eaphone-spring-data-query-samples</module>
</modules>
</project>