-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
95 lines (87 loc) · 2.98 KB
/
pom.xml
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
<?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>
<groupId>io.fria</groupId>
<artifactId>lilo-parent</artifactId>
<version>24.5.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>lilo-parent</name>
<description>Lilo GraphQL stitching library parent pom</description>
<url>https://github.com/friatech/lilo</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/friatech/lilo.git</connection>
<developerConnection>scm:git:ssh://github.com:friatech/lilo.git</developerConnection>
<url>https://github.com/friatech/lilo/tree/main</url>
</scm>
<developers>
<developer>
<name>Fırat KÜÇÜK</name>
<email>[email protected]</email>
<organization>Fria Tech</organization>
<organizationUrl>https://fria.io</organizationUrl>
</developer>
</developers>
<properties>
<java.version>[17,18)</java.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.min.version>3.6.3</maven.min.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Plugin Versions -->
<maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version>
</properties>
<modules>
<module>lilo</module>
<module>lilo-spring</module>
</modules>
<build>
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven-enforcer-plugin.version}</version>
<executions>
<execution>
<id>enforce-versions-compile</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>${maven.min.version}</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
<execution>
<id>enforce-versions-deploy</id>
<phase>deploy</phase>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>${maven.min.version}</version>
</requireMavenVersion>
<requireJavaVersion>
<version>${java.version}</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>