summaryrefslogtreecommitdiffstats
path: root/lowercasing_test/src/java
diff options
context:
space:
mode:
Diffstat (limited to 'lowercasing_test/src/java')
-rw-r--r--lowercasing_test/src/java/.gitignore4
-rw-r--r--lowercasing_test/src/java/CMakeLists.txt6
-rw-r--r--lowercasing_test/src/java/HelloWorld.java8
-rw-r--r--lowercasing_test/src/java/build.xml61
4 files changed, 0 insertions, 79 deletions
diff --git a/lowercasing_test/src/java/.gitignore b/lowercasing_test/src/java/.gitignore
deleted file mode 100644
index b9e1611ac9e..00000000000
--- a/lowercasing_test/src/java/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-build.inc
-classes
-lowercasing_test.jar
-java_code_compiled
diff --git a/lowercasing_test/src/java/CMakeLists.txt b/lowercasing_test/src/java/CMakeLists.txt
deleted file mode 100644
index 34b531c2093..00000000000
--- a/lowercasing_test/src/java/CMakeLists.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/java_code_compiled
- COMMAND ant -q -buildfile ${CMAKE_CURRENT_SOURCE_DIR}/build.xml >>/dev/null
- COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_CURRENT_BINARY_DIR}/java_code_compiled
- DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/build.xml ${CMAKE_CURRENT_SOURCE_DIR}/HelloWorld.java)
-add_custom_target(lowercasing_test_java ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/java_code_compiled)
diff --git a/lowercasing_test/src/java/HelloWorld.java b/lowercasing_test/src/java/HelloWorld.java
deleted file mode 100644
index 37d7bf11af7..00000000000
--- a/lowercasing_test/src/java/HelloWorld.java
+++ /dev/null
@@ -1,8 +0,0 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-public class HelloWorld
-{
- public static void main(String[] args)
- {
- System.out.println("Java/jar/HelloWorld");
- }
-}
diff --git a/lowercasing_test/src/java/build.xml b/lowercasing_test/src/java/build.xml
deleted file mode 100644
index 9e70af511f4..00000000000
--- a/lowercasing_test/src/java/build.xml
+++ /dev/null
@@ -1,61 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
-<project basedir="." default="all" name="lowercasing_test">
- <!-- Written to assume that classpath is rooted in the current directory. -->
- <!-- So this should be OK if you make this script in the root of a filesystem. -->
- <!-- If not, just change src.dir to be the root of your sources' package tree -->
- <!-- and use e.g. View over a Filesystem to mount that subdirectory with all capabilities. -->
- <!-- The idea is that both Ant and NetBeans have to know what the package root is -->
- <!-- for the classes in your application. -->
-
- <!-- Don't worry if you don't know the Ant syntax completely or need help on some tasks! -->
- <!-- The standard Ant documentation can be downloaded from AutoUpdate and -->
- <!-- and then you can access the Ant manual in the online help. -->
-
- <property file="build.inc" />
-
- <target name="init">
- <property location="classes" name="classes.dir"/>
- <property location="." name="src.dir"/>
- <property location="doc/api" name="javadoc.dir"/>
- <property name="project.name" value="${ant.project.name}"/>
- <property location="${project.name}.jar" name="jar"/>
- </target>
-
- <target depends="init" name="compile">
- <!-- Both srcdir and destdir should be package roots. -->
- <mkdir dir="${classes.dir}"/>
- <javac debug="true" deprecation="true" destdir="${classes.dir}" srcdir="${src.dir}" includeantruntime="false">
- <classpath>
- </classpath>
- <!-- To add something to the classpath: -->
- <!-- <classpath><pathelement location="${mylib}"/></classpath> -->
- <!-- To exclude some files: -->
- <!-- <exclude name="com/foo/SomeFile.java"/><exclude name="com/foo/somepackage/"/> -->
- </javac>
- </target>
-
- <target depends="init,compile" name="jar">
- <!-- To make a standalone app, insert into <jar>: -->
- <!-- <manifest><attribute name="Main-Class" value="com.foo.Main"/></manifest> -->
- <jar basedir="${classes.dir}" compress="true" jarfile="${jar}"/>
- </target>
-
- <target depends="init,jar" description="Build everything." name="all"/>
-
- <target depends="init" description="Javadoc for my API." name="javadoc">
- <mkdir dir="${javadoc.dir}"/>
- <javadoc destdir="${javadoc.dir}" packagenames="*">
- <sourcepath>
- <pathelement location="${src.dir}"/>
- </sourcepath>
- </javadoc>
- </target>
-
- <target depends="init" description="Clean all build products." name="clean">
- <delete dir="${classes.dir}"/>
- <delete dir="${javadoc.dir}"/>
- <delete file="${jar}"/>
- </target>
-
-</project>