Non-default location maven spring-starter project corrections

This commit is contained in:
aboyko
2023-04-13 14:48:55 -04:00
parent 7b4c6beb6d
commit 0694331fdc
8 changed files with 70 additions and 35 deletions

View File

@@ -0,0 +1,21 @@
/*******************************************************************************
* Copyright (c) 2023 VMware, 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
* https://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* VMware, Inc. - initial API and implementation
*******************************************************************************/
package org.springsource.ide.eclipse.commons.core;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.core.runtime.IProgressMonitor;
public interface IRunnableWithProgressAndResult<T> {
public T run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException;
}