Skip to content

Commit 08205b1

Browse files
committed
Add compile step for MJAVADOC-365 IT
To show that both javac and javadoc exlude the file. Also as base for MJAVADOC-718 testing.
1 parent 4c8ca8e commit 08205b1

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

src/it/projects/MJAVADOC-365/invoker.properties

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
# to you under the Apache License, Version 2.0 (the
66
# "License"); you may not use this file except in compliance
77
# with the License. You may obtain a copy of the License at
8-
#
8+
#
99
# http://www.apache.org/licenses/LICENSE-2.0
10-
#
10+
#
1111
# Unless required by applicable law or agreed to in writing,
1212
# software distributed under the License is distributed on an
1313
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
invoker.goals=clean javadoc:javadoc
18+
invoker.goals=clean compile javadoc:javadoc

src/it/projects/MJAVADOC-365/pom.xml

+10
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,16 @@
3535
<build>
3636
<pluginManagement>
3737
<plugins>
38+
<plugin>
39+
<groupId>org.apache.maven.plugins</groupId>
40+
<artifactId>maven-compiler-plugin</artifactId>
41+
<version>@compilerPluginVersion@</version>
42+
<configuration>
43+
<excludes>
44+
<exclude>**/*Excluded.java</exclude>
45+
</excludes>
46+
</configuration>
47+
</plugin>
3848
<plugin>
3949
<groupId>org.apache.maven.plugins</groupId>
4050
<artifactId>maven-javadoc-plugin</artifactId>

0 commit comments

Comments
 (0)