mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 00:11:07 -06:00
Arguments are added to the dependencies list, and to the "--module-path" passed to javac, which is only generated for adequate JDK versions.
14 lines
128 B
Java
14 lines
128 B
Java
package com.bar;
|
|
|
|
public class Bar
|
|
{
|
|
public Bar()
|
|
{
|
|
}
|
|
|
|
public void printName()
|
|
{
|
|
System.out.println("Bar");
|
|
}
|
|
}
|