-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
74 lines (66 loc) · 2.7 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
<?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>com.flowlogix.depchain</groupId>
<artifactId>depchain</artifactId>
<version>x-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Dependency Chain BOM</name>
<description>Dependency Chain root project</description>
<url>https://github.com/flowlogix/depchain</url>
<scm>
<url>https://github.com/flowlogix/depchain/tree/main</url>
<connection>scm:git:git://github.com/flowlogix/depchain.git</connection>
<developerConnection>scm:git:[email protected]:flowlogix/depchain.git</developerConnection>
</scm>
<parent>
<groupId>com.flowlogix</groupId>
<artifactId>infra-pom</artifactId>
<version>48</version>
</parent>
<properties>
<maven.compiler.release>11</maven.compiler.release>
<base.directory.property>depchain.basedir</base.directory.property>
<base.directory.groupId>com.flowlogix.depchain</base.directory.groupId>
<base.directory.artifactId>depchain</base.directory.artifactId>
<checkstyle.supressionsLocation>${depchain.basedir}/src/checkstyle/suppressions.xml</checkstyle.supressionsLocation>
<jar.skip-if-empty>false</jar.skip-if-empty>
<slf4j.version>2.0.16</slf4j.version>
<junit.jupiter.version>5.11.4</junit.jupiter.version>
</properties>
<modules>
<module>unit-test</module>
<module>integration-test</module>
<module>shiro-jakarta</module>
<module>archetype</module>
</modules>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>META-INF/maven/archetype-metadata.xml</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<excludes>
<exclude>META-INF/maven/archetype-metadata.xml</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.commonjava.maven.plugins</groupId>
<artifactId>directory-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>