Skip to content

Commit

Permalink
[it] Add IT to reproduce the problem noted on bug fedora-java#58
Browse files Browse the repository at this point in the history
  • Loading branch information
mbooth101 authored and mizdebsk committed Jul 1, 2021
1 parent bc3b9c2 commit 2b488f8
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 0 deletions.
@@ -0,0 +1,7 @@
<configuration>
<resolverSettings>
<metadataRepositories>
<repository>metadata.xml</repository>
</metadataRepositories>
</resolverSettings>
</configuration>
24 changes: 24 additions & 0 deletions xmvn-it/src/test/resources/testJavadocJPMS/pom.xml
@@ -0,0 +1,24 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>xmvn.its</groupId>
<artifactId>javadoc-test-jpms</artifactId>
<version>0.0.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.6.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
</plugins>
</build>
</project>
@@ -0,0 +1,24 @@
/*-
* Copyright (c) 2020 Red Hat, Inc.
*
* Licensed 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.
*/
package foo;

import org.junit.jupiter.api.TestReporter;

public class Bar implements TestReporter
{
public void publishEntry(java.util.Map<String,String> map) {
}
}
@@ -0,0 +1,3 @@
module test.jpms {
requires transitive org.junit.jupiter.api;
}

0 comments on commit 2b488f8

Please sign in to comment.