# ------------------------------------------------------------------- # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ------------------------------------------------------------------- # ------------------------------------------------------------------- # P L U G I N P R O P E R I E S # ------------------------------------------------------------------- # Eclipse plugin. # ------------------------------------------------------------------- # Generate Eclipse external tools mappings for the specified goals. # This accepts two values: 'all' for all the goals, # and 'plugins' to generate only the plugins' default goals. maven.eclipse.goals = plugins # Location of the Eclipse workspace that holds your configuration (and source). #maven.eclipse.workspace # The version of JUnit you want added to your project. If this property is set to none then JUnit will not be added to your build classpath. #maven.eclipse.junit # The directory to which Eclipse should output its classes. By default this is the same directory as Maven generates its code however this can be changed so that maven clean does not interfere with Eclipse's build. #maven.eclipse.output.dir # The directory to which Eclipse should output its test classes. #maven.eclipse.test.output.dir # Comma delimited list of additional source directories to include in the classpath, like src/conf. #maven.eclipse.classpath.include # Specify whether to include the resources defined in the POM in the Eclipse classpath. Defaults to false. maven.eclipse.resources.addtoclasspath=false # Comma delimited list of additional kind "con" path to include in the classpath description file like org.eclipse.pde.core.requiredPlugins #maven.eclipse.conclasspath # Comma delimited list of additional build commands to include in the project description file. The java builder will automatically be added if a java source dir is set (if not already specified in the list). #maven.eclipse.buildcommands # Comma delimited list of additional project natures to include in the project description file. These natures will be added after the java nature (if the java nature is not already specified in the list). #maven.eclipse.projectnatures # Name of the generated project on Eclipse. maven.eclipse.project.name=${pom.artifactId} # The directory that generated source code is placed. Maven will select any directories under this as source code. This prevents the generated source from being removed whenever Eclipse does a clean build, and allows the generated code to be clearly in the build directory. maven.gen.src=${maven.build.dir}/generated-sources # The extension used for source attachments. Deprecated, source attachment are expected now at MAVEN_REPO${groupId}/java-sources/${artifactId}-${version}-sources.jar maven.eclipse.src.extension = zip # Specify if java sources archives need to be downloaded from the configured remote repositories. Defaults to true. maven.eclipse.src.download = true # Specify if javadocs archives need to be downloaded from the configured remote repositories, when no source archive is available. Defaults to true. maven.eclipse.javadoc.download = true # Location of subprojects to include in the multichanges report. By default # these properties have the same values as their multiproject conterpart. # You can define them if you need to set different values. # This is the base directory that the plugin will use when searching for projects to be processed. It is also the 'current directory' for relative paths #maven.eclipse.multiproject.basedir= # This is the list of file specifications to be included when searching for projects to be processed by the plugin. #maven.eclipse.multiproject.includes= # This is the list of file specifications to be excluded when searching for projects to be processed by the plugin #maven.eclipse.multiproject.excludes= # Set this to true to allow the plugin to continue when any project fails during processing. #maven.eclipse.multiproject.ignoreFailures= ### # WTP settings ### # List of servlet api used to find the servlet version to set in wtp maven.eclipse.servletapilist=javax.servlet:servlet-api,servletapi:servletapi,geronimo-spec:geronimo-spec-servlet # For which version of WTP we have to generate the configuration maven.eclipse.wtp.version=1.5 # Do you want to generate WTP configuration files maven.eclipse.wtp.enable=false