-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
50 lines (47 loc) · 2.07 KB
/
pom.xml
File metadata and controls
50 lines (47 loc) · 2.07 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
<?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>
<packaging>pom</packaging>
<groupId>de.codecentric.reedelk</groupId>
<artifactId>modules</artifactId>
<!-- This pom is only a convenient file needed for building the projects all together,
this version (1.0.0) is fixed since it does not affect any build -->
<version>1.0.0</version>
<modules>
<module>../reedelk-module-aws-s3</module>
<module>../reedelk-module-azure-storage</module>
<module>../reedelk-module-core</module>
<module>../reedelk-module-csv</module>
<module>../reedelk-module-database</module>
<module>../reedelk-module-file</module>
<module>../reedelk-module-ftp</module>
<module>../reedelk-module-google-drive-v3</module>
<module>../reedelk-module-json</module>
<module>../reedelk-module-jwt</module>
<module>../reedelk-module-kafka</module>
<module>../reedelk-module-mail</module>
<module>../reedelk-module-mongodb</module>
<module>../reedelk-module-rabbitmq</module>
<module>../reedelk-module-rest</module>
<module>../reedelk-module-salesforce</module>
<module>../reedelk-module-scheduler</module>
<module>../reedelk-module-xml</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<!-- This is an aggregator pom and it must not be deployed on the repository -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>