|
17 | 17 | <module>base-app</module> |
18 | 18 | <module>extend-app</module> |
19 | 19 | </modules> |
20 | | - |
21 | | - <build> |
22 | | - <pluginManagement> |
23 | | - <plugins> |
24 | | - <plugin> |
25 | | - <groupId>org.jetbrains.kotlin</groupId> |
26 | | - <artifactId>kotlin-maven-plugin</artifactId> |
27 | | - <version>${kotlin.version}</version> |
28 | | - <configuration> |
29 | | - <jvmTarget>${java.version}</jvmTarget> |
30 | | - </configuration> |
31 | | - <executions> |
32 | | - <execution> |
33 | | - <id>compile</id> |
34 | | - <phase>compile</phase> |
35 | | - <goals> |
36 | | - <goal>compile</goal> |
37 | | - </goals> |
38 | | - </execution> |
39 | | - <execution> |
40 | | - <id>test-compile</id> |
41 | | - <phase>test-compile</phase> |
42 | | - <goals> |
43 | | - <goal>test-compile</goal> |
44 | | - </goals> |
45 | | - </execution> |
46 | | - </executions> |
47 | | - </plugin> |
48 | | - <plugin> |
49 | | - <groupId>org.apache.maven.plugins</groupId> |
50 | | - <artifactId>maven-surefire-plugin</artifactId> |
51 | | - <version>2.22.1</version> |
52 | | - <!-- TODO enable below once we add unit tests to federation example app --> |
53 | | - <!-- <configuration>--> |
54 | | - <!-- <failIfNoTests>true</failIfNoTests>--> |
55 | | - <!-- </configuration>--> |
56 | | - </plugin> |
57 | | - <plugin> |
58 | | - <groupId>org.apache.maven.plugins</groupId> |
59 | | - <artifactId>maven-failsafe-plugin</artifactId> |
60 | | - <version>2.22.1</version> |
61 | | - <executions> |
62 | | - <execution> |
63 | | - <goals> |
64 | | - <goal>integration-test</goal> |
65 | | - <goal>verify</goal> |
66 | | - </goals> |
67 | | - </execution> |
68 | | - </executions> |
69 | | - </plugin> |
70 | | - <plugin> |
71 | | - <groupId>org.jacoco</groupId> |
72 | | - <artifactId>jacoco-maven-plugin</artifactId> |
73 | | - <version>${jacoco-maven-plugin.version}</version> |
74 | | - <executions> |
75 | | - <execution> |
76 | | - <goals> |
77 | | - <goal>prepare-agent</goal> |
78 | | - </goals> |
79 | | - </execution> |
80 | | - <execution> |
81 | | - <id>report</id> |
82 | | - <phase>test</phase> |
83 | | - <goals> |
84 | | - <goal>report</goal> |
85 | | - </goals> |
86 | | - </execution> |
87 | | - </executions> |
88 | | - </plugin> |
89 | | - <plugin> |
90 | | - <groupId>org.jetbrains.dokka</groupId> |
91 | | - <artifactId>dokka-maven-plugin</artifactId> |
92 | | - <version>${dokka-maven-plugin.version}</version> |
93 | | - <configuration> |
94 | | - <!-- don't generate javadocs as there is no artifact--> |
95 | | - <skip>true</skip> |
96 | | - </configuration> |
97 | | - </plugin> |
98 | | - </plugins> |
99 | | - </pluginManagement> |
100 | | - <plugins> |
101 | | - <plugin> |
102 | | - <groupId>org.jetbrains.kotlin</groupId> |
103 | | - <artifactId>kotlin-maven-plugin</artifactId> |
104 | | - </plugin> |
105 | | - <plugin> |
106 | | - <groupId>org.apache.maven.plugins</groupId> |
107 | | - <artifactId>maven-surefire-plugin</artifactId> |
108 | | - </plugin> |
109 | | - <plugin> |
110 | | - <groupId>org.apache.maven.plugins</groupId> |
111 | | - <artifactId>maven-failsafe-plugin</artifactId> |
112 | | - </plugin> |
113 | | - <plugin> |
114 | | - <groupId>org.jacoco</groupId> |
115 | | - <artifactId>jacoco-maven-plugin</artifactId> |
116 | | - </plugin> |
117 | | - </plugins> |
118 | | - </build> |
119 | | - |
120 | | - <profiles> |
121 | | - <profile> |
122 | | - <!-- build example apps by default but exclude them from the release --> |
123 | | - <id>defaultBuild</id> |
124 | | - <activation> |
125 | | - <activeByDefault>true</activeByDefault> |
126 | | - </activation> |
127 | | - <modules> |
128 | | - <module>base-app</module> |
129 | | - <module>extend-app</module> |
130 | | - </modules> |
131 | | - </profile> |
132 | | - </profiles> |
133 | 20 | </project> |
0 commit comments