-
Notifications
You must be signed in to change notification settings - Fork 7
/
webfx.xml
65 lines (53 loc) · 2.42 KB
/
webfx.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
<?xml version="1.0" encoding="UTF-8"?>
<project name="modality" deployRepositoryId="modality-sonatype-deploy">
<description>Modality is a free, open-source, hospitality-oriented booking system.</description>
<parent name="webfx-parent"/>
<groupId>one.modality</groupId>
<artifactId>modality</artifactId>
<version>1.0.0-SNAPSHOT</version>
<update-options>
<generate-export-snapshot/>
</update-options>
<modules>
<subdirectories-modules/>
</modules>
<required-libraries>
<webfx-library artifact="dev.webfx:webfx-extras:0.1.0-SNAPSHOT"/>
<webfx-library artifact="dev.webfx:webfx-stack:0.1.0-SNAPSHOT"/>
<library>
<groupId>com.cloudinary</groupId>
<artifactId>cloudinary-http45</artifactId>
<version>1.38.0</version>
</library>
<!-- For unit testing -->
<!-- Not used at the moment (and time-consuming for the WebFX CLI)
<library artifact="org.junit.jupiter:junit-jupiter:5.9.0"/>
<library artifact="org.mockito:mockito-inline:4.6.1"/>
-->
<!-- For integration testing -->
<!-- Not used right now
<library artifact="org.seleniumhq.selenium:selenium-java:4.1.4"/>
<library artifact="io.github.bonigarcia:webdrivermanager:5.1.1"/>
-->
</required-libraries>
<maven-repositories>
<snapshot-repository id="webfx-snapshots">https://oss.sonatype.org/content/repositories/snapshots/</snapshot-repository>
<snapshot-repository id="modality-sonatype-deploy">https://s01.oss.sonatype.org/content/repositories/snapshots/</snapshot-repository>
</maven-repositories>
<maven-pom-manual>
<build>
<pluginManagement>
<plugins>
<!-- Removing implementation modules from JavaDoc because 1) they are not useful for users 2) gwt modules don't have a module-info.java which generates JavaDoc errors -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<skippedModules>modality-base-client-css-java,modality-base-client-css-web</skippedModules>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</maven-pom-manual>
</project>