Skip to content

Commit

Permalink
Add compile step for MJAVADOC-365 IT
Browse files Browse the repository at this point in the history
To show that both javac and javadoc exlude the file. Also as base for
MJAVADOC-718 testing.
  • Loading branch information
michael-o committed Jul 14, 2024
1 parent 4c8ca8e commit 08205b1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/it/projects/MJAVADOC-365/invoker.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

invoker.goals=clean javadoc:javadoc
invoker.goals=clean compile javadoc:javadoc
10 changes: 10 additions & 0 deletions src/it/projects/MJAVADOC-365/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>@compilerPluginVersion@</version>
<configuration>
<excludes>
<exclude>**/*Excluded.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down

0 comments on commit 08205b1

Please sign in to comment.