blob: 0e5c7d6ada935cbb62976d6b428df8e48ab30bf8 [file] [log] [blame]
Stuart McCullochee51abf2008-02-19 09:49:41 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19package org.apache.felix.bundleplugin;
20
21
22import java.io.FileOutputStream;
23import java.io.OutputStream;
24import java.util.Iterator;
25import java.util.Map;
26import java.util.Properties;
27
28import org.apache.maven.plugin.MojoExecutionException;
Carsten Ziegeler318c2cb2015-03-09 13:57:23 +000029import org.apache.maven.plugins.annotations.Mojo;
30import org.apache.maven.plugins.annotations.ResolutionScope;
Stuart McCullochee51abf2008-02-19 09:49:41 +000031import org.apache.maven.project.MavenProject;
Guillaume Nodeted7b1102015-07-09 19:45:09 +000032import org.apache.maven.shared.dependency.graph.DependencyNode;
Stuart McCullochee51abf2008-02-19 09:49:41 +000033import org.codehaus.plexus.util.FileUtils;
34import org.codehaus.plexus.util.IOUtil;
35import org.codehaus.plexus.util.StringUtils;
36
Stuart McCulloch42151ee2012-07-16 13:43:38 +000037import aQute.bnd.osgi.Builder;
38import aQute.bnd.osgi.Jar;
Stuart McCullochee51abf2008-02-19 09:49:41 +000039
40
41/**
42 * Generate Ant script to create the bundle (you should run ant:ant first).
43 *
Stuart McCullochee51abf2008-02-19 09:49:41 +000044 */
Carsten Ziegeler318c2cb2015-03-09 13:57:23 +000045@Mojo( name = "ant", requiresDependencyResolution = ResolutionScope.TEST )
Stuart McCullochee51abf2008-02-19 09:49:41 +000046public class AntPlugin extends BundlePlugin
47{
48 static final String BUILD_XML = "/build.xml";
49 static final String BUILD_BND = "/maven-build.bnd";
50
51
Carsten Ziegeler82d87402015-03-04 13:26:21 +000052 @Override
Guillaume Nodeted7b1102015-07-09 19:45:09 +000053 protected void execute( MavenProject currentProject, DependencyNode dependencyGraph, Map<String, String> originalInstructions, Properties properties,
Stuart McCullochee51abf2008-02-19 09:49:41 +000054 Jar[] classpath ) throws MojoExecutionException
55 {
56 final String artifactId = getProject().getArtifactId();
57 final String baseDir = getProject().getBasedir().getPath();
58
59 try
60 {
61 // assemble bundle as usual, but don't save it - this way we have all the instructions we need
Guillaume Nodeted7b1102015-07-09 19:45:09 +000062 Builder builder = buildOSGiBundle( currentProject,
63 dependencyGraph, originalInstructions, properties, classpath );
Stuart McCullochee51abf2008-02-19 09:49:41 +000064 Properties bndProperties = builder.getProperties();
65
66 // cleanup and remove all non-strings from the builder properties
67 for ( Iterator i = bndProperties.values().iterator(); i.hasNext(); )
68 {
69 if ( !( i.next() instanceof String ) )
70 {
71 i.remove();
72 }
73 }
74
75 // save the BND generated bundle to the same output directory that maven uses
76 bndProperties.setProperty( "-output", "${maven.build.dir}/${maven.build.finalName}.jar" );
77
78 OutputStream out = new FileOutputStream( baseDir + BUILD_BND );
79 bndProperties.store( out, " Merged BND Instructions" );
80 IOUtil.close( out );
81
82 // modify build template
83 String buildXml = IOUtil.toString( getClass().getResourceAsStream( BUILD_XML ) );
Stuart McCulloch203195b2008-05-16 04:39:32 +000084 buildXml = StringUtils.replace( buildXml, "BND_VERSION", builder.getVersion() );
Stuart McCullochee51abf2008-02-19 09:49:41 +000085 buildXml = StringUtils.replace( buildXml, "ARTIFACT_ID", artifactId );
86
87 FileUtils.fileWrite( baseDir + BUILD_XML, buildXml );
Stuart McCullochd8a04c52008-08-06 16:05:23 +000088
89 // cleanup...
90 builder.close();
Stuart McCullochee51abf2008-02-19 09:49:41 +000091 }
92 catch ( Exception e )
93 {
94 throw new MojoExecutionException( "Problem creating Ant script", e );
95 }
96
97 getLog().info( "Wrote Ant bundle project for " + artifactId + " to " + baseDir );
98 }
99}