Index: jdktools/modules/jdktools/src/test/resources/Dependency.jar =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Index: jdktools/modules/jdktools/src/test/resources/Sample.java =================================================================== --- jdktools/modules/jdktools/src/test/resources/Sample.java (revision 984645) +++ jdktools/modules/jdktools/src/test/resources/Sample.java (working copy) @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package tests.resources; +package resources; -import tests.resources.jdktools.Dependency; +import jdktools.Dependency; public class Sample { Index: jdktools/modules/jdktools/src/test/resources/Simple.java =================================================================== --- jdktools/modules/jdktools/src/test/resources/Simple.java (revision 984645) +++ jdktools/modules/jdktools/src/test/resources/Simple.java (working copy) @@ -14,13 +14,13 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package tests.resources.jdktools; +package resources; public class Simple { static public void main(String[] args) { - // Do Nothing + System.out.println("Hello World !!! "); } }