Skip to content

Commit

Permalink
Bug 565143 - [Passage] floating licensing
Browse files Browse the repository at this point in the history
attempt to fix build failure, added license headers

Signed-off-by: Nikifor Fedorov <zelenyhleb@gmail.com>
  • Loading branch information
zelenyhleb committed Jul 28, 2020
1 parent c197c0e commit 1c79fda
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 4 deletions.
Expand Up @@ -9,6 +9,7 @@ Bundle-Copyright: %Bundle-Copyright
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ActivationPolicy: lazy
Service-Component: OSGI-INF/org.eclipse.passage.lbc.server.launcher.ApplicationLauncher.xml
Require-Bundle: org.eclipse.passage.lbc.api;bundle-version="0.0.0",
Require-Bundle: org.eclipse.osgi.services;bundle-version="0.0.0",
org.eclipse.passage.lbc.api;bundle-version="0.0.0",
org.eclipse.passage.lbc.jetty;bundle-version="0.0.0"
Export-Package: org.eclipse.passage.lbc.server.launcher
@@ -1,3 +1,15 @@
/*******************************************************************************
* Copyright (c) 2020 ArSysOp
*
* 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/.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* ArSysOp - initial API and implementation
*******************************************************************************/
package org.eclipse.passage.lbc.server.launcher;

import java.util.Collections;
Expand Down
@@ -1,3 +1,15 @@
/*******************************************************************************
* Copyright (c) 2020 ArSysOp
*
* 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/.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* ArSysOp - initial API and implementation
*******************************************************************************/
package org.eclipse.passage.lbc.server.tests;

import static org.junit.Assert.assertTrue;
Expand All @@ -8,13 +20,11 @@

public class ApplicationLauncherTest {

private ApplicationLauncher launcher;
private FakeBackendLauncher fakeBackendLauncher = new FakeBackendLauncher();

@Before
public void init() {
launcher = new ApplicationLauncher();
launcher.bind(fakeBackendLauncher);
new ApplicationLauncher().bind(fakeBackendLauncher);
}

@Test
Expand Down
@@ -1,3 +1,15 @@
/*******************************************************************************
* Copyright (c) 2020 ArSysOp
*
* 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/.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* ArSysOp - initial API and implementation
*******************************************************************************/
package org.eclipse.passage.lbc.server.tests;

import java.util.Map;
Expand Down

0 comments on commit 1c79fda

Please sign in to comment.