This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
62 lines (48 loc) · 1.63 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
<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>org.fugerit.java.guide</groupId>
<artifactId>fj-doc-guides</artifactId>
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-bom</artifactId>
<version>1.6.5</version>
<relativePath></relativePath>
</parent>
<name>Fugerit Venus Guides</name>
<description>Collections of guides for Fugerit Venus Document generation</description>
<version>0.1.0</version>
<packaging>pom</packaging>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<fj-doc-version>8.5.2</fj-doc-version>
</properties>
<modules>
<module>fj-doc-guides-A001-hello-world-pdf</module>
<module>fj-doc-guides-A002-full-document</module>
<module>fj-doc-guides-A003-full-document-freemarker</module>
<module>fj-doc-guides-A004-freemarker-hello-world</module>
<module>fj-doc-guides-E001-hello-world-pdf-json-source</module>
</modules>
<organization>
<url>https://www.fugerit.org</url>
<name>Fugerit</name>
</organization>
<url>https://www.fugerit.org/perm/venus/</url>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.9</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>