aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2024-01-07 11:19:13 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2024-01-07 11:19:13 +0700
commit96b15962f93d7e8400a1a03d20f2bc6939c7ad8e (patch)
tree11beddaf0b6d33183be20a0d5cf9286dcc33cd7b /build
parent939e81e6babc20852fe1d6d1fa490c95e1aa8b56 (diff)
downloadaspectj-96b15962f93d7e8400a1a03d20f2bc6939c7ad8e.tar.gz
aspectj-96b15962f93d7e8400a1a03d20f2bc6939c7ad8e.zip
Delete obsolete files
- Redundant copies of HTML files used in AspectJ installer, which already exist as resource files in module 'build' - Null-sized AspectJ library JARs which probably were used to trigger certain build steps in the former Ant build - BridgeVersion.java.txt, which has been replaced by a regular org.aspectj.bridge.Version class which can dynamically determine versions from a properties file instead of relying on them being hard-coded into the template. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'build')
-rw-r--r--build/lib/BridgeVersion.java.txt89
-rw-r--r--build/products/aspectj/install/configure-auto.html17
-rw-r--r--build/products/aspectj/install/configure-hand.html21
-rw-r--r--build/products/aspectj/install/finish.html28
-rw-r--r--build/products/aspectj/install/install-finish.html12
-rw-r--r--build/products/aspectj/install/install-start.html13
-rw-r--r--build/products/aspectj/install/intro.html25
-rw-r--r--build/products/aspectj/install/location.html11
-rw-r--r--build/products/tools/dist/lib/aspectjrt.jar0
-rw-r--r--build/products/tools/dist/lib/aspectjtools.jar0
-rw-r--r--build/products/tools/dist/lib/aspectjweaver.jar0
-rw-r--r--build/products/tools/dist/lib/org.aspectj.matcher.jar0
-rw-r--r--build/products/tools/install/configure-auto.html17
-rw-r--r--build/products/tools/install/configure-hand.html21
-rw-r--r--build/products/tools/install/finish.html24
-rw-r--r--build/products/tools/install/install-finish.html20
-rw-r--r--build/products/tools/install/install-start.html21
-rw-r--r--build/products/tools/install/intro.html29
-rw-r--r--build/products/tools/install/location.html20
19 files changed, 0 insertions, 368 deletions
diff --git a/build/lib/BridgeVersion.java.txt b/build/lib/BridgeVersion.java.txt
deleted file mode 100644
index 047854cc6..000000000
--- a/build/lib/BridgeVersion.java.txt
+++ /dev/null
@@ -1,89 +0,0 @@
-/* ********************************************************************
- * Copyright (c) 1998-2001 Xerox Corporation,
- * 2002 Palo Alto Research Center, Incorporated (PARC).
- * All rights reserved.
- * This program and the accompanying materials are made available
- * under the terms of the Eclipse Public License v 2.0
- * which accompanies this distribution and is available at
- * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
- *
- * Contributors:
- * Xerox/PARC initial implementation
- * *******************************************************************/
-
-package org.aspectj.bridge;
-
-import java.text.ParsePosition;
-import java.text.SimpleDateFormat;
-import java.util.Date;
-
-/** release-specific version information */
-public class Version {
-
- // generated from build/lib/BridgeVersion.java
-
- /** default version value for development version */
- public static final String DEVELOPMENT = "DEVELOPMENT";
- // VersionUptodate.java depends on this value
-
- /** default time value for development version */
- public static final long NOTIME = 0L;
-
- /** set by build script */
- public static final String text = "@build.version@";
- // VersionUptodate.java scans for "static final String text = "
-
- /**
- * Time text set by build script using SIMPLE_DATE_FORMAT.
- * (if DEVELOPMENT version, invalid)
- */
- public static final String time_text = "@build.time@";
-
- /**
- * time in seconds-since-... format, used by programmatic clients.
- * (if DEVELOPMENT version, NOTIME)
- */
- private static long time = -1; // -1 == uninitialized
-
- /** format used by build script to set time_text */
- public static final String SIMPLE_DATE_FORMAT = "@build.time.format@";
-
- public static long getTime() {
- if (time==-1) {
- long foundTime = NOTIME;
- // if not DEVELOPMENT version, read time text using format used to set time
- try {
- SimpleDateFormat format = new SimpleDateFormat(SIMPLE_DATE_FORMAT);
- ParsePosition pos = new ParsePosition(0);
- Date date = format.parse(time_text, pos);
- if (date!=null) foundTime = date.getTime();
- } catch (Throwable t) {
- }
- time = foundTime;
- }
- return time;
- }
-
- /**
- * Test whether the version is as specified by any first argument.
- * Emit text to System.err on failure
- * @param args String[] with first argument equal to Version.text
- * @see Version#text
- */
- public static void main(String[] args) {
- if ((null != args) && (0 < args.length)) {
- if (!Version.text.equals(args[0])) {
- System.err.println("version expected: \""
- + args[0]
- + "\" actual=\""
- + Version.text
- + "\"");
- }
- }
- }
-}
-
-
-
-
-
diff --git a/build/products/aspectj/install/configure-auto.html b/build/products/aspectj/install/configure-auto.html
deleted file mode 100644
index 6da643ef5..000000000
--- a/build/products/aspectj/install/configure-auto.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<html>
-
-<head>
-<title>auto configure</title>
-</head>
-
-<body>
-
-<p>The installer has successfully found the path to your Java home (J2SE 1.4 or greater).
-This path will be used as the default Java location when generating
-script files for launching the AspectJ compiler and core tools. Unless
-you know that this path is wrong, we suggest that you press
-<b>Next</b> to continue.</p>
-
-</body>
-
-</html>
diff --git a/build/products/aspectj/install/configure-hand.html b/build/products/aspectj/install/configure-hand.html
deleted file mode 100644
index 888db63df..000000000
--- a/build/products/aspectj/install/configure-hand.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-
-<head>
-<title>configure</title>
-</head>
-
-<body>
-
-<p>The installer cannot find the path to your Java home (J2SE 1.4 or greater).
-Please try to find this directory on your path now. It will probably look
-something like <code>jdk1.4.1</code>. If you can't find this
-directory now, you may continue with the install, but you will have
-to either edit your launch scripts by hand or to set the JAVA_HOME
-environment variable to point to the right location.
-</p>
-
-<p>Press <b>Next</b> when ready to continue.</p>
-
-</body>
-
-</html>
diff --git a/build/products/aspectj/install/finish.html b/build/products/aspectj/install/finish.html
deleted file mode 100644
index 229f3a21a..000000000
--- a/build/products/aspectj/install/finish.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<html>
-
-<head>
-<title>finish</title>
-</head>
-
-<body>
-
-<p>The automatic installation process is complete.
-We recommend you complete the installation as follows:</p>
-<ol>
- <li>Add <b><code>${installer.output.aspectjrt}</code></b>
- to your CLASSPATH.
- This small .jar file contains classes required by any
- program compiled with the ajc compiler.
- </li>
- <li>Modify your PATH to include
- <code> <b>${installer.output.dir.bin}</b></code>.
- This will make it easier to run ajc.
- </li>
-</ol>
-
-<p>These steps are described in more detail in <code>
-<b>${installer.output.readme}</b></code>.</p>
-
-</body>
-
-</html>
diff --git a/build/products/aspectj/install/install-finish.html b/build/products/aspectj/install/install-finish.html
deleted file mode 100644
index 14281a0bf..000000000
--- a/build/products/aspectj/install/install-finish.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-
-<body>
-
-<p>&nbsp;</p>
-
-<p>The automatic installation process is complete.&nbsp; Press <b>Next </b>for
-some important final instructions.</p>
-
-</body>
-
-</html>
diff --git a/build/products/aspectj/install/install-start.html b/build/products/aspectj/install/install-start.html
deleted file mode 100644
index b375c68aa..000000000
--- a/build/products/aspectj/install/install-start.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<html>
-
-<body>
-
-<p>&nbsp;</p>
-
-<p>Now installing to ${installer.output.dir}...</p>
-
-<p>Press <b>Cancel</b> to interrupt the installation.</p>
-
-</body>
-
-</html>
diff --git a/build/products/aspectj/install/intro.html b/build/products/aspectj/install/intro.html
deleted file mode 100644
index c8992bac2..000000000
--- a/build/products/aspectj/install/intro.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<html>
-<body>
-
-<h2 align="center">Installer for AspectJ 9 Development Kit<sup><small>TM</small></sup></h2>
-
-<p align="center">Version ${build.version.long} built on ${build.date}</p>
-<p>This installs the complete AspectJ 9 Development Kit (AJDK) distribution, with
-the compiler, aspect libraries, structure browser, ant tasks,
-documentation, and examples.
-This distribution is covered by the Eclipse Public License v 2.0 (see
-https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt).
-<p>
-For IDE integrations or source code, see the project home page at
-https://eclipse.org/aspectj</p>
-
-
-<p>${copyright.allRights.from1998}</p>
-<p></p>
-
-<p>Press <b>Next</b> to continue. At any time you may press <b>Cancel</b>
-to exit the installation process.</p>
-
-</body>
-
-</html>
diff --git a/build/products/aspectj/install/location.html b/build/products/aspectj/install/location.html
deleted file mode 100644
index 0398ce4a5..000000000
--- a/build/products/aspectj/install/location.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<html>
-
-<body>
-
-<p>Please select a directory into which to install AspectJ.</p>
-<p>Press <b>Install</b> to begin the installation process
- to this directory.</p>
-
-</body>
-
-</html>
diff --git a/build/products/tools/dist/lib/aspectjrt.jar b/build/products/tools/dist/lib/aspectjrt.jar
deleted file mode 100644
index e69de29bb..000000000
--- a/build/products/tools/dist/lib/aspectjrt.jar
+++ /dev/null
diff --git a/build/products/tools/dist/lib/aspectjtools.jar b/build/products/tools/dist/lib/aspectjtools.jar
deleted file mode 100644
index e69de29bb..000000000
--- a/build/products/tools/dist/lib/aspectjtools.jar
+++ /dev/null
diff --git a/build/products/tools/dist/lib/aspectjweaver.jar b/build/products/tools/dist/lib/aspectjweaver.jar
deleted file mode 100644
index e69de29bb..000000000
--- a/build/products/tools/dist/lib/aspectjweaver.jar
+++ /dev/null
diff --git a/build/products/tools/dist/lib/org.aspectj.matcher.jar b/build/products/tools/dist/lib/org.aspectj.matcher.jar
deleted file mode 100644
index e69de29bb..000000000
--- a/build/products/tools/dist/lib/org.aspectj.matcher.jar
+++ /dev/null
diff --git a/build/products/tools/install/configure-auto.html b/build/products/tools/install/configure-auto.html
deleted file mode 100644
index 6da643ef5..000000000
--- a/build/products/tools/install/configure-auto.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<html>
-
-<head>
-<title>auto configure</title>
-</head>
-
-<body>
-
-<p>The installer has successfully found the path to your Java home (J2SE 1.4 or greater).
-This path will be used as the default Java location when generating
-script files for launching the AspectJ compiler and core tools. Unless
-you know that this path is wrong, we suggest that you press
-<b>Next</b> to continue.</p>
-
-</body>
-
-</html>
diff --git a/build/products/tools/install/configure-hand.html b/build/products/tools/install/configure-hand.html
deleted file mode 100644
index 888db63df..000000000
--- a/build/products/tools/install/configure-hand.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-
-<head>
-<title>configure</title>
-</head>
-
-<body>
-
-<p>The installer cannot find the path to your Java home (J2SE 1.4 or greater).
-Please try to find this directory on your path now. It will probably look
-something like <code>jdk1.4.1</code>. If you can't find this
-directory now, you may continue with the install, but you will have
-to either edit your launch scripts by hand or to set the JAVA_HOME
-environment variable to point to the right location.
-</p>
-
-<p>Press <b>Next</b> when ready to continue.</p>
-
-</body>
-
-</html>
diff --git a/build/products/tools/install/finish.html b/build/products/tools/install/finish.html
deleted file mode 100644
index 81c98b212..000000000
--- a/build/products/tools/install/finish.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
-
-<head>
-<title>finish</title>
-</head>
-
-<body>
-
-<p>The automatic installation process is complete. There are two more
-steps that we recommend you perform to complete the installation:</p>
-<ol>
- <li>Put <b><code>${installer.output.aspectjrt}</code></b> on your CLASSPATH.
- This small .jar file contains classes that are required by any program compiled
- with the ajc compiler.</li>
- <li>Modify your PATH to include <code> <b>${installer.output.dir.bin}</b></code>.
- This will make it easier to run ajc. </li>
-</ol>
-
-<p>These steps are described in more detail in <code>
-<b>${installer.output.readme}</b></code>.</p>
-
-</body>
-
-</html>
diff --git a/build/products/tools/install/install-finish.html b/build/products/tools/install/install-finish.html
deleted file mode 100644
index 26aea1e5e..000000000
--- a/build/products/tools/install/install-finish.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv="Content-Language" content="en-us">
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
-<meta name="ProgId" content="FrontPage.Editor.Document">
-<title>New Page 1</title>
-</head>
-
-<body>
-
-<p>&nbsp;</p>
-
-<p>The automatic installation process is complete.&nbsp; Press <b>Next </b>for
-some important final instructions.</p>
-
-</body>
-
-</html>
diff --git a/build/products/tools/install/install-start.html b/build/products/tools/install/install-start.html
deleted file mode 100644
index 858ed8512..000000000
--- a/build/products/tools/install/install-start.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv="Content-Language" content="en-us">
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
-<meta name="ProgId" content="FrontPage.Editor.Document">
-<title>New Page 1</title>
-</head>
-
-<body>
-
-<p>&nbsp;</p>
-
-<p>Now installing to ${installer.output.dir}.</p>
-
-<p>Press <b>Cancel</b> to interrupt the installation.</p>
-
-</body>
-
-</html>
diff --git a/build/products/tools/install/intro.html b/build/products/tools/install/intro.html
deleted file mode 100644
index 2bf78d302..000000000
--- a/build/products/tools/install/intro.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv="Content-Language" content="en-us">
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
-<meta name="ProgId" content="FrontPage.Editor.Document">
-<title>New Page 1</title>
-</head>
-
-<body>
-
-<h2 align="center">Installer for AspectJ(TM) Compiler and Core Tools</h2>
-
-<p align="center">Version ${build.version.long} built on ${build.date}</p>
-<p>
-This is a binary only release of tools made available under
-the Eclipse Public License.
-For more information on the license or to download the source code,
-see https://eclipse.org/aspectj</p>
-<p>${copyright.allRights.from1998}</p>
-<p></p>
-
-<p>Press <b>Next</b> to continue. At any time you may press <b>Cancel</b>
-to exit the installation process.</p>
-
-</body>
-
-</html>
diff --git a/build/products/tools/install/location.html b/build/products/tools/install/location.html
deleted file mode 100644
index 1ac230abf..000000000
--- a/build/products/tools/install/location.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv="Content-Language" content="en-us">
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
-<meta name="ProgId" content="FrontPage.Editor.Document">
-<title>New Page 1</title>
-</head>
-
-<body>
-
-<p>Please select a directory into which to install
- the AspectJ compiler and core tools.</p>
-<p>Press <b>Install</b> to begin the installation process
- to this directory.</p>
-
-</body>
-
-</html>