forked from AgID/EeISI-mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
113 lines (105 loc) · 3.95 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<project>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>it.infocert.eigor</groupId>
<artifactId>eigor</artifactId>
<packaging>pom</packaging>
<version>4.5.0</version>
<name>Eigor :: Aggregator</name>
<description>Electronic Invoice GO Regional</description>
<organization>
<name>Infocert</name>
<url>https://www.infocert.it/</url>
</organization>
<distributionManagement>
<site>
<id>eigor</id>
<name>eigor</name>
<url>http://infocert.it</url>
</site>
</distributionManagement>
<modules>
<module>eigor-parent</module>
<module>eigor-cli</module>
<module>eigor-test</module>
<module>eigor-core</module>
<module>eigor-api</module>
<module>eigor-spring-core</module>
<module>eigor-test-schemas</module>
<module>converter-fattpa-commons</module>
<module>eigor-configurations</module>
<module>cen-core</module>
<module>converter-fattpa-cen</module>
<module>converter-cen-fattpa</module>
<module>converter-csvcen-cen</module>
<module>converter-commons</module>
<module>converter-ubl-cen</module>
<module>converter-ublcn-cen</module>
<module>converter-cii-cen</module>
<module>converter-cen-cii</module>
<module>converter-cen-ubl</module>
<module>converter-cen-ublcn</module>
<module>converter-xmlcen-cen</module>
<module>converter-cen-xmlcen</module>
<module>converter-cen-peppol</module>
<module>converter-cen-peppolcn</module>
</modules>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.7.0</version>
<reportSets>
<reportSet>
<id>info-reports</id>
<inherited>false</inherited>
<reports>
<report>modules</report>
<report>index</report>
<!--
<report>licens</report>
<report>scm</report>
<report>issue-tracking</report>
<report>project-team</report>
-->
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<doclint>none</doclint>
</configuration>
<reportSets>
<reportSet><!-- by default, id = "default" -->
<reports><!-- select non-aggregate reports -->
<report>javadoc</report>
</reports>
</reportSet>
<reportSet><!-- aggregate reportSet, to define in poms having modules -->
<id>aggregate</id>
<inherited>false</inherited><!-- don't run aggregate in child modules -->
<reports>
<report>aggregate</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>