Simples Assim

Posts Tagged ‘Maven

Improvement to Maven Android Plugin

leave a comment »

Archetypes are always a good thing to have.

http://code.google.com/p/maven-android-plugin/issues/detail?id=44 (vote for it!)

Written by Fernando Ribeiro

April 25, 2010 at 3:29 pm

Posted in Software

Tagged with ,

Multiple source directories with maven2

leave a comment »

Written by Fernando Ribeiro

February 17, 2010 at 11:51 am

Posted in Software

Tagged with

Sample POM for Maven Android Plugin 2.2.2

leave a comment »

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>br.eti.fernandoribeiro.sample</groupId>
  <artifactId>sample</artifactId>
  <packaging>apk</packaging>
  <version>1.0</version>
  <dependencies>
    <dependency>
      <groupId>android</groupId>
      <artifactId>android</artifactId>
      <version>2.1_r1</version> <!-- Replace with version in use -->
      <scope>provided</scope>
    </dependency>
  </dependencies>
  <build>
    <sourceDirectory>src</sourceDirectory> <!-- Remove if not using ADT plugin for Eclipse -->
    <plugins>
      <plugin>
        <groupId>com.jayway.maven.plugins.android.generation2</groupId>
        <artifactId>maven-android-plugin</artifactId>
        <version>2.2.2</version>
        <configuration>
          <sdk>
            <path>${env.ANDROID_HOME}</path>
            <platform>2.1</platform> <!-- Replace with version in use -->
          </sdk>
        </configuration>
        <extensions>true</extensions>
      </plugin>
    </plugins>
  </build>
</project>

http://developer.android.com/guide/developing/eclipse-adt.html

Written by Fernando Ribeiro

February 17, 2010 at 11:46 am

Posted in Software

Tagged with ,

Bug in Maven Android Plugin 2.2.2

with one comment

Written by Fernando Ribeiro

February 17, 2010 at 11:37 am

Posted in Software

Tagged with ,

Bug in Maven Android Plugin 2.2.2

with one comment

Written by Fernando Ribeiro

February 17, 2010 at 11:32 am

Posted in Software

Tagged with ,

Feature Request for Android 2.1

with one comment

Written by Fernando Ribeiro

February 17, 2010 at 10:44 am

Posted in Software

Tagged with ,

Customizing the Import-Package Header in Apache Felix Maven Plugin

leave a comment »

You can replace it, but not append to it.

<plugin>
  <groupId>org.apache.felix</groupId>
  <artifactId>maven-bundle-plugin</artifactId>
  <extensions>true</extensions>
  <configuration>
    <instructions>
      <Import-Package>br.eti.fernandoribeiro</Import-Package>
    </instructions>
  </configuration>
</plugin>

Thanks to Igor for the original post.

Written by Fernando Ribeiro

January 25, 2010 at 4:20 pm

JBoss Packaging Maven Plugin

leave a comment »

Written by Fernando Ribeiro

December 23, 2009 at 11:04 pm

Posted in Software

Tagged with ,

JBossESB in Apache Maven

leave a comment »

Written by Fernando Ribeiro

December 18, 2009 at 3:42 pm

Posted in Software

Tagged with ,

Bug in Maven 2 JBI Plugin 4.1

leave a comment »

Fixed in 4.2.

https://issues.apache.org/activemq/browse/SM-1873

I’m waiting for it to add OSGi bundle manifests to SAs.

Written by Fernando Ribeiro

December 16, 2009 at 8:34 am