o start of a little site for the embedder

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@512572 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2007-02-28 02:34:59 +00:00
parent f34ebdd221
commit 4d8b30460a
2 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,23 @@
------
The Maven Embedder
------
Jason van Zyl
------
26 February 2007
------
The Maven Embedder
The Maven Embedder is used by the Maven CLI, by IDE integration projects like {{{http://mevenide.codehaus.org}Mevenide}}
and potentially any tool that needs to embed Maven's capabilities. You could embed Maven in a Continuous Integration
application to run Maven build, an application lifecycle management (ALF) tool, or Ant tasks that utilize Maven's
functionality. These are just a few examples of what the Maven Embedder can be used for.
A Simple Example
%{snippet|id=simple-embedder-example|url=http://svn.apache.org/repos/asf/maven/components/trunk/maven-embedder/src/test/java/org/apache/maven/embedder/MavenEmbedderTest.java}

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
~ 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.
-->
<project name="Maven Embedder">
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-stylus-skin</artifactId>
<version>1.0-SNAPSHOT</version>
</skin>
<bannerLeft>
<name>Maven</name>
<src>http://maven.apache.org/maven2/images/apache-maven-project-2.png</src>
<href>http://maven.apache.org/</href>
</bannerLeft>
<bannerRight>
<src>http://maven.apache.org/maven2/images/maven-logo-2.gif</src>
</bannerRight>
<body>
<links>
</links>
<menu name="Quick Links">
<item name="Home" href="/index.html"/>
</menu>
</body>
</project>