This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
40 changed files
with
434 additions
and
434 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
<project name="Java 8 jar" default="jar" basedir="."> | ||
<property name="classes.dir" value="classes"/> | ||
<property name="classes.dir" value="classes"/> | ||
<property name="sources.dir" value="src"/> | ||
<property name="jar.file" value="java8.jar"/> | ||
<target name="classes"> | ||
<mkdir dir="${classes.dir}"/> | ||
<mkdir dir="${classes.dir}"/> | ||
<javac srcdir="${sources.dir}" includeantruntime="false" destdir="${classes.dir}" source="1.8"> | ||
<include name="com/**"/> | ||
</javac> | ||
</target> | ||
|
||
<target name="jar" depends="classes"> | ||
<jar basedir="${classes.dir}" file="${jar.file}"> | ||
<include name="com/**"/> | ||
</jar> | ||
</target> | ||
<target name="jar" depends="classes"> | ||
<jar basedir="${classes.dir}" file="${jar.file}"> | ||
<include name="com/**"/> | ||
</jar> | ||
</target> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
<project name="Java 8 jar" default="jar" basedir="."> | ||
<property name="classes.dir" value="classes"/> | ||
<property name="classes.dir" value="classes"/> | ||
<property name="sources.dir" value="src"/> | ||
<property name="mlib.dir" value="mlib"/> | ||
<property name="jar.file" value="${mlib.dir}/java9.jar"/> | ||
<target name="classes"> | ||
<mkdir dir="${classes.dir}"/> | ||
<mkdir dir="${classes.dir}"/> | ||
<javac srcdir="${sources.dir}" includeantruntime="false" destdir="${classes.dir}" source="1.9"> | ||
<include name="com/**"/> | ||
</javac> | ||
</target> | ||
|
||
<target name="jar" depends="classes"> | ||
<mkdir dir="${mlib.dir}"/> | ||
<exec executable="jar"> | ||
<target name="jar" depends="classes"> | ||
<mkdir dir="${mlib.dir}"/> | ||
<exec executable="jar"> | ||
<arg value="--create"/> | ||
<arg value="--file"/> | ||
<arg value="${jar.file}"/> | ||
<arg value="--module-version=123"/> | ||
<arg value="--main-class"/> | ||
<arg value="--main-class"/> | ||
<arg value="com.ceylon.java9.Test"/> | ||
<arg value="-C"/> | ||
<arg value="${classes.dir}"/> | ||
<arg value="."/> | ||
</exec> | ||
</target> | ||
<arg value="-C"/> | ||
<arg value="${classes.dir}"/> | ||
<arg value="."/> | ||
</exec> | ||
</target> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.