-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 7/21/10 13:44 , Wildam Martin wrote:
>
> Puuhhh - I think I cannot either imagine how hard this is - I guess
> it feels like doing assemply language...
No, it's not as hard from that point of view; it's a matter of a
configuration file (see below). It's that to guess what's working and
what's not working you have to try. Also, the android emulator
forgives lots of things, so you have to try in the real device.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom> <!--
otherwise release fails - see THESEFOOLISHTHINGS-20 -->
<filters>
<filter>
<artifact>info.aduna.commons:aduna-commons-collections</artifact>
<excludes>
<exclude>**/*</exclude>
</excludes>
</filter>
<filter>
<artifact>info.aduna.commons:aduna-commons-concurrent</artifact>
<excludes>
<exclude>**/*</exclude>
</excludes>
</filter>
<filter>
<artifact>org.slf4j:slf4j-api
</artifact>
<excludes>
<exclude>**/*</exclude>
</excludes>
</filter>
<filter>
<artifact>info.aduna.commons:aduna-commons-iteration</artifact>
<excludes>
<exclude>**/*</exclude>
</excludes>
</filter>
<filter>
<artifact>info.aduna.commons:aduna-commons-i18n</artifact>
<excludes>
<exclude>**/*</exclude>
</excludes>
</filter>
<filter>
<artifact>com.google.code.findbugs:jsr305</artifact>
<excludes>
<exclude>**/*</exclude>
</excludes>
</filter>
<filter>
<artifact>it.tidalwave.bluebill:it-tidalwave-android-javax-xml-datatype</artifact>
<excludes>
<exclude>**/*</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>javax.xml.namespace.QName</pattern>
<shadedPattern>it.tidalwave.android.javax.xml.namespace.QName</shadedPattern>
</relocation>
<relocation>
<pattern>javax.xml.datatype</pattern>
<shadedPattern>it.tidalwave.android.javax.xml.datatype</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
- --
Fabrizio Giudici - Java Architect, Project Manager
Tidalwave s.a.s. - "We make Java work. Everywhere."
java.net/blog/fabriziogiudici - www.tidalwave.it/people
[email protected]
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.14 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iEYEARECAAYFAkxG4LYACgkQeDweFqgUGxcKIwCgiFXzmGUa9N7noZclTO/NRBxh
YnEAn2nWuHloVtwxvbON5zFMowrTalqm
=RWx5
-----END PGP SIGNATURE-----
--
You received this message because you are subscribed to the Google Groups "The
Java Posse" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/javaposse?hl=en.