-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
74 lines (71 loc) · 2.98 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
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.bodz.bas</groupId>
<artifactId>bas-parent</artifactId>
<version>0.5-SNAPSHOT</version>
<relativePath></relativePath>
</parent>
<groupId>net.bodz</groupId>
<artifactId>parent</artifactId>
<version>1-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<ffdir>src/main/generated</ffdir>
<ffdir.test>src/test/generated</ffdir.test>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<name>Jazz Parent</name>
<profiles>
<profile>
<id>generate-xjdocs</id>
<activation>
<file>
<missing>${basedir}/generate-xjdocs.terminator</missing>
</file>
</activation>
<build>
<plugins>
<plugin>
<groupId>net.bodz.mda</groupId>
<artifactId>mda-xjdoc-maven-plugin</artifactId>
<version>0.0.1-SNAPSHOT</version>
<executions>
<execution>
<id>main-ff</id>
<phase>generate-resources</phase>
<goals>
<goal>build</goal>
</goals>
<configuration>
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
<outputDirectory>${basedir}/${ffdir}</outputDirectory>
</configuration>
</execution>
<execution>
<id>test-ff</id>
<phase>generate-test-resources</phase>
<goals>
<goal>build</goal>
</goals>
<configuration>
<testClasses>true</testClasses>
<sourceDirectory>${basedir}/src/test/java</sourceDirectory>
<outputDirectory>${basedir}/${ffdir.test}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>