Simples Assim

Posts Tagged ‘Maven

Bug in Maven 2 JAXB 2.x Plugin 0.7.1

with one comment

Written by Fernando Ribeiro

November 16, 2010 at 5:50 pm

Posted in Software

Tagged with ,

Bug in Antenna 1.0.2+

leave a comment »

http://sourceforge.net/tracker/?func=detail&aid=3105017&group_id=67420&atid=517826

According to Vlad, the plugin is going to be updated to 1.0.2+ when it is available in the Maven Central repo.

Written by Fernando Ribeiro

November 8, 2010 at 12:34 am

Posted in Software

Tagged with ,

Maven J2ME Plugin

leave a comment »

Written by Fernando Ribeiro

November 7, 2010 at 1:47 am

Posted in Software

Tagged with ,

Generating Get/Set Methods for xs:boolean in Maven JAXB Plugin 0.7.4

leave a comment »

If you get the Property 'foo' not readable on type java.lang.Boolean message, you need to change the name of the generated getters from isFoo() to getFoo().

<?xml version="1.0" encoding="UTF-8"?>
<project>
   ...
  <build>
    ...
    <plugins>
      <plugin>
        <groupId>org.jvnet.jaxb2.maven2</groupId>
        <artifactId>maven-jaxb2-plugin</artifactId>
        <version>0.7.4</version>
        <executions>
          <execution>
            <goals>
              <goal>generate</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <args>
            <arg>-enableIntrospection</arg>
          </args>
        </configuration>
      </plugin>
      ...
    </plugins>
    ...
  </build>
  ...
</project>

https://jaxb.dev.java.net/issues/show_bug.cgi?id=131

Written by Fernando Ribeiro

October 4, 2010 at 4:54 pm

Posted in Software

Tagged with ,

Improvement to Maven Android Plugin

with one 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

leave a comment »

The ANDROID-904-222: Found aidl file messages need to go.

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

Written by Fernando Ribeiro

February 17, 2010 at 11:32 am

Posted in Software

Tagged with ,

Feature Request for Android 2.1

with 2 comments

Written by Fernando Ribeiro

February 17, 2010 at 10:44 am

Posted in Software

Tagged with ,

Follow

Get every new post delivered to your Inbox.

Join 784 other followers