is appassembler plugin broken for java service wrapper on windows 64bit?
Posted
by Paul McKenzie
on Stack Overflow
See other posts from Stack Overflow
or by Paul McKenzie
Published on 2010-04-29T09:43:55Z
Indexed on
2010/04/30
0:47 UTC
Read the original article
Hit count: 421
Hi
I'm developing on 32bit windows and am using appassembler to create a java service wrapper assembly, and it works ok. But I need to also create a 64bit assembly for deployment to a dev server. In the following config I have substituted the 32bit platform with the 64bit, see the <includes>
section. But it no longer places the wrapper jar and dll in the lib folder. If I omit the includes completely, I get linux, solaris, Mac OSX and Win32 libraries, but no win64.
Anyone got this working?
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.1-SNAPSHOT</version>
<configuration>
<target>${project.build.directory}/appassembler</target>
<repositoryLayout>flat</repositoryLayout>
<defaultJvmSettings>
<initialMemorySize>256M</initialMemorySize>
<maxMemorySize>1024M</maxMemorySize>
</defaultJvmSettings>
<daemons>
<daemon>
<id>MyApp</id>
<mainClass>com.foo.AppMain</mainClass>
<platforms>
<platform>jsw</platform>
</platforms>
<generatorConfigurations>
<generatorConfiguration>
<generator>jsw</generator>
<includes>
<include>windows-x86-64</include>
</includes>
<configuration>
<property>
<name>set.default.REPO_DIR</name>
<value>../../repo</value>
</property>
</configuration>
</generatorConfiguration>
</generatorConfigurations>
</daemon>
</daemons>
</configuration>
<executions>
<execution>
<goals>
<goal>generate-daemons</goal>
<goal>create-repository</goal>
</goals>
</execution>
</executions>
</plugin>
© Stack Overflow or respective owner