forked from aotrzonsek/oasp4j-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
33 lines (31 loc) · 1.28 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
<?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>
<parent>
<groupId>io.oasp.java</groupId>
<artifactId>oasp4j-parent</artifactId>
<version>dev-SNAPSHOT</version>
<relativePath>../oasp4j/oasp4j-parent/pom.xml</relativePath>
</parent>
<artifactId>oasp4j-example</artifactId>
<version>dev-SNAPSHOT</version>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>Example application of the Open Application Standard Platform for Java (OASP4J).</description>
<modules>
<module>oasp4j-example-application</module>
<module>oasp4j-example-boot-application</module>
<module>oasp4j-restaurant</module>
</modules>
<profiles>
<profile>
<id>integration-test</id>
<modules>
<module>oasp4j-example-application</module>
<module>oasp4j-restaurant</module>
<module>oasp4j-example-application-integration-test</module>
</modules>
</profile>
</profiles>
</project>