blob: 2eb648201f5c6fd37c3cf3c9cae36c44f85db380 [file] [log] [blame]
/*
* Copyright (c) 2010-2020 BSI Business Systems Integration AG.
* 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:
* BSI Business Systems Integration AG - initial API and implementation
*/
package org.eclipse.scout.sdk.core;
/**
* <h3>{@link ISourceFolders}</h3>
*
* @since 7.0.0
*/
public interface ISourceFolders {
/**
* Main java source folder
*/
String MAIN_JAVA_SOURCE_FOLDER = "src/main/java";
/**
* Main resource folder
*/
String MAIN_RESOURCE_FOLDER = "src/main/resources";
/**
* Test java source folder
*/
String TEST_JAVA_SOURCE_FOLDER = "src/test/java";
/**
* Test resource folder
*/
String TEST_RESOURCE_FOLDER = "src/test/resources";
/**
* Generated source folder for annotation processor generated sources.
*/
String GENERATED_ANNOTATIONS_SOURCE_FOLDER = "target/generated-sources/annotations";
/**
* Generated source folder for web-service stubs
*/
String GENERATED_WSIMPORT_SOURCE_FOLDER = "target/generated-sources/wsimport";
}