diff options
author | acolyer <acolyer> | 2003-11-05 16:17:24 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2003-11-05 16:17:24 +0000 |
commit | a044ad89cd7b28483a97dcae59129ba8b49bf43d (patch) | |
tree | 832bd555551f4b2c40c6e289613b9d49f9d279c6 /eclipse.plugin | |
parent | 44e2127bfe4cdb928c220d3ef107094a38b7f6eb (diff) | |
download | aspectj-a044ad89cd7b28483a97dcae59129ba8b49bf43d.tar.gz aspectj-a044ad89cd7b28483a97dcae59129ba8b49bf43d.zip |
org.aspectj.ajde plugin to be built as part of aspectj build
Diffstat (limited to 'eclipse.plugin')
-rw-r--r-- | eclipse.plugin/org.aspectj.ajde/about.html | 34 | ||||
-rw-r--r-- | eclipse.plugin/org.aspectj.ajde/plugin.properties | 13 | ||||
-rw-r--r-- | eclipse.plugin/org.aspectj.ajde/plugin.xml | 25 |
3 files changed, 72 insertions, 0 deletions
diff --git a/eclipse.plugin/org.aspectj.ajde/about.html b/eclipse.plugin/org.aspectj.ajde/about.html new file mode 100644 index 000000000..9604d9216 --- /dev/null +++ b/eclipse.plugin/org.aspectj.ajde/about.html @@ -0,0 +1,34 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"> +<html> +<head> +<title>About</title> +<meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1"> +</head> +<body lang="EN-US"> +<h2>About This Content</h2> + +<p>5th November, 2003</p> +<h3>License</h3> +<p>Eclipse.org makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the +Common Public License Version 1.0 ("CPL"). A copy of the CPL is available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>. +For purposes of the CPL, "Program" will mean the Content.</p> + +Those portions of this distribution in the org.apache Java namespace are available under the terms of +the Apache Software License, Version 1.1 (See +<a href="http://jakarta.apache.org">http://jakarta.apache.org</a>). + +<h3>Contributions</h3> + +<p>If this Content is licensed to you under the terms and conditions of the CPL, any Contributions, as defined in the CPL, uploaded, submitted, or otherwise +made available to Eclipse.org, members of Eclipse.org and/or the host of Eclipse.org web site, by you that relate to such +Content are provided under the terms and conditions of the CPL and can be made available to others under the terms of the CPL.</p> + +<p>If this Content is licensed to you under license terms and conditions other than the CPL ("Other License"), any modifications, enhancements and/or +other code and/or documentation ("Modifications") uploaded, submitted, or otherwise made available to Eclipse.org, members of Eclipse.org and/or the +host of Eclipse.org, by you that relate to such Content are provided under terms and conditions of the Other License and can be made available +to others under the terms of the Other License. In addition, with regard to Modifications for which you are the copyright holder, you are also +providing the Modifications under the terms and conditions of the CPL and such Modifications can be made available to others under the terms of +the CPL.</p> + +</body> +</html>
\ No newline at end of file diff --git a/eclipse.plugin/org.aspectj.ajde/plugin.properties b/eclipse.plugin/org.aspectj.ajde/plugin.properties new file mode 100644 index 000000000..b9f4532cb --- /dev/null +++ b/eclipse.plugin/org.aspectj.ajde/plugin.properties @@ -0,0 +1,13 @@ +############################################################################### +# Copyright (c) 2003 IBM Corporation and others. +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Common Public License v1.0 +# which accompanies this distribution, and is available at +# http://www.eclipse.org/legal/cpl-v10.html +# +# Contributors: +# Adrian Colyer, George Harley - initial implementation +############################################################################### + +pluginName=AspectJ +providerName=Eclipse.org
\ No newline at end of file diff --git a/eclipse.plugin/org.aspectj.ajde/plugin.xml b/eclipse.plugin/org.aspectj.ajde/plugin.xml new file mode 100644 index 000000000..20b2a8165 --- /dev/null +++ b/eclipse.plugin/org.aspectj.ajde/plugin.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<plugin + id="org.aspectj.ajde" + name="%pluginName" + version="build.version.eclipse.plugins" + provider-name="%providerName"> + + <runtime> + + <library name="ajde.jar"> + <export name="*"/> + <packages prefixes="org.aspectj"/> + </library> + + <library name="aspectjrt.jar"> + <export name="*"/> + <packages prefixes="org.aspectj"/> + </library> + + <library name="aspectjtools.jar"> + <!-- this library is deliberately NOT exported --> + </library> + </runtime> + +</plugin> |