From 49cb924f5402c9d24379ae1af62def6fa5892649 Mon Sep 17 00:00:00 2001 From: Alexander Kriegisch Date: Fri, 4 Jun 2021 07:58:52 +0700 Subject: Upgrade license from CPLv1/EPLv1 to EPLv2 This was required by the Eclipse team as one precondition for the next release. Signed-off-by: Alexander Kriegisch --- .../testdata/OutjarTest/src/jar1/Parent.java | 8 ++-- .../testdata/OutjarTest/src/jar2/Child.java | 8 ++-- .../testdata/OutjarTest/src/jar3/Aspect.aj | 44 +++++++++++----------- 3 files changed, 30 insertions(+), 30 deletions(-) (limited to 'org.aspectj.ajdt.core/testdata') diff --git a/org.aspectj.ajdt.core/testdata/OutjarTest/src/jar1/Parent.java b/org.aspectj.ajdt.core/testdata/OutjarTest/src/jar1/Parent.java index 087bb2ad9..7d7bc4e85 100644 --- a/org.aspectj.ajdt.core/testdata/OutjarTest/src/jar1/Parent.java +++ b/org.aspectj.ajdt.core/testdata/OutjarTest/src/jar1/Parent.java @@ -1,10 +1,10 @@ /******************************************************************************* * Copyright (c) 2004 IBM Corporation and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 + * 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 - * http://www.eclipse.org/legal/epl-v10.html - * + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt + * * Contributors: * Matthew Webster - initial implementation *******************************************************************************/ diff --git a/org.aspectj.ajdt.core/testdata/OutjarTest/src/jar2/Child.java b/org.aspectj.ajdt.core/testdata/OutjarTest/src/jar2/Child.java index d08de6a6a..652f8beb8 100644 --- a/org.aspectj.ajdt.core/testdata/OutjarTest/src/jar2/Child.java +++ b/org.aspectj.ajdt.core/testdata/OutjarTest/src/jar2/Child.java @@ -1,10 +1,10 @@ /******************************************************************************* * Copyright (c) 2004 IBM Corporation and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 + * 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 - * http://www.eclipse.org/legal/epl-v10.html - * + * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt + * * Contributors: * Matthew Webster - initial implementation *******************************************************************************/ diff --git a/org.aspectj.ajdt.core/testdata/OutjarTest/src/jar3/Aspect.aj b/org.aspectj.ajdt.core/testdata/OutjarTest/src/jar3/Aspect.aj index fcee316f5..52721eb25 100644 --- a/org.aspectj.ajdt.core/testdata/OutjarTest/src/jar3/Aspect.aj +++ b/org.aspectj.ajdt.core/testdata/OutjarTest/src/jar3/Aspect.aj @@ -1,22 +1,22 @@ -/******************************************************************************* - * Copyright (c) 2004 IBM Corporation and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * Matthew Webster - initial implementation - *******************************************************************************/ -package jar3; - -public aspect Aspect { - - pointcut main () : - execution(* Parent+.main(..)); - - after () : main () { - System.out.println("? Aspect.main()"); - } - -} +/******************************************************************************* + * Copyright (c) 2004 IBM Corporation and others. + * 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: + * Matthew Webster - initial implementation + *******************************************************************************/ +package jar3; + +public aspect Aspect { + + pointcut main () : + execution(* Parent+.main(..)); + + after () : main () { + System.out.println("? Aspect.main()"); + } + +} -- cgit v1.2.3