Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMat Booth2020-06-04 00:57:16 +0000
committerMat Booth2020-06-11 15:08:01 +0000
commit177697ed7a4017359d61915b1750d1bf6e319bd2 (patch)
tree3729cb2d280569becf0395dccb348f293476af26 /examples/bundles/com.mycorp.examples.timeservice.host
parent2d0a5fee7e94dcb55aa588209b85311cc43a08d9 (diff)
downloadorg.eclipse.ecf-177697ed7a4017359d61915b1750d1bf6e319bd2.tar.gz
org.eclipse.ecf-177697ed7a4017359d61915b1750d1bf6e319bd2.tar.xz
org.eclipse.ecf-177697ed7a4017359d61915b1750d1bf6e319bd2.zip
Bug 560602 - Switch to EPL version 2.0
Update license headers in examples Change-Id: I45f6bf36935538b2a8d10ca8ac11b8b341dea5ae Signed-off-by: Mat Booth <mat.booth@redhat.com>
Diffstat (limited to 'examples/bundles/com.mycorp.examples.timeservice.host')
-rw-r--r--examples/bundles/com.mycorp.examples.timeservice.host/META-INF/MANIFEST.MF2
-rw-r--r--examples/bundles/com.mycorp.examples.timeservice.host/pom.xml2
-rw-r--r--examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java17
-rw-r--r--examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/TimeServiceImpl.java17
4 files changed, 22 insertions, 16 deletions
diff --git a/examples/bundles/com.mycorp.examples.timeservice.host/META-INF/MANIFEST.MF b/examples/bundles/com.mycorp.examples.timeservice.host/META-INF/MANIFEST.MF
index b7d0f5dc9..b0ece886e 100644
--- a/examples/bundles/com.mycorp.examples.timeservice.host/META-INF/MANIFEST.MF
+++ b/examples/bundles/com.mycorp.examples.timeservice.host/META-INF/MANIFEST.MF
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: ECF RS Example Timeservice Host
Bundle-SymbolicName: com.mycorp.examples.timeservice.host
Automatic-Module-Name: com.mycorp.examples.timeservice.host
-Bundle-Version: 1.1.201.qualifier
+Bundle-Version: 1.1.300.qualifier
Bundle-Vendor: Eclipse.org - ECF
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy
diff --git a/examples/bundles/com.mycorp.examples.timeservice.host/pom.xml b/examples/bundles/com.mycorp.examples.timeservice.host/pom.xml
index 0efe48b90..48e350c68 100644
--- a/examples/bundles/com.mycorp.examples.timeservice.host/pom.xml
+++ b/examples/bundles/com.mycorp.examples.timeservice.host/pom.xml
@@ -10,6 +10,6 @@
</parent>
<groupId>org.eclipse.ecf</groupId>
<artifactId>com.mycorp.examples.timeservice.host</artifactId>
- <version>1.1.201-SNAPSHOT</version>
+ <version>1.1.300-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
diff --git a/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java b/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java
index 6150852c0..3b0fdf6c3 100644
--- a/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java
+++ b/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java
@@ -1,11 +1,14 @@
-/*******************************************************************************
- * Copyright (c) 2015 Composent, Inc. 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
- *
+/****************************************************************************
+ * Copyright (c) 2015 Composent, Inc.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
* Contributors: Scott Lewis - initial API and implementation
- ******************************************************************************/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *****************************************************************************/
package com.mycorp.examples.timeservice.host;
import java.util.Dictionary;
diff --git a/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/TimeServiceImpl.java b/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/TimeServiceImpl.java
index 7168d6766..692067ca7 100644
--- a/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/TimeServiceImpl.java
+++ b/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/TimeServiceImpl.java
@@ -1,11 +1,14 @@
-/*******************************************************************************
- * Copyright (c) 2013 Composent, Inc. 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
- *
+/****************************************************************************
+ * Copyright (c) 2013 Composent, Inc.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
* Contributors: Scott Lewis - initial API and implementation
- ******************************************************************************/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *****************************************************************************/
package com.mycorp.examples.timeservice.host;
import com.mycorp.examples.timeservice.ITimeService;

Back to the top