Advertisement
Guest User

Untitled

a guest
May 27th, 2015
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.36 KB | None | 0 0
  1. <plugins>
  2. <plugin>
  3. <groupId>org.codehaus.mojo</groupId>
  4. <artifactId>appassembler-maven-plugin</artifactId>
  5. <version>1.9</version>
  6. <executions>
  7. <execution>
  8. <phase>package</phase>
  9. <goals>
  10. <goal>generate-daemons</goal>
  11. </goals>
  12. </execution>
  13. </executions>
  14. <configuration>
  15. <copyConfigurationDirectory>true</copyConfigurationDirectory>
  16. <includeConfigurationDirectoryInClasspath>true
  17. </includeConfigurationDirectoryInClasspath>
  18. <daemons>
  19. <daemon>
  20. <id>saga-decision-engine</id>
  21. <mainClass>com.ideaheap.saga.core.SagaServer</mainClass>
  22. <platforms>
  23. <platform>jsw</platform>
  24. </platforms>
  25. <jvmSettings>
  26. <initialMemorySize>40m</initialMemorySize>
  27. <maxMemorySize>512m</maxMemorySize>
  28. <maxStackSize>2m</maxStackSize>
  29. <systemProperties>
  30. <systemProperty>com.sun.management.jmxremote</systemProperty>
  31. <systemProperty>java.rmi.server.hostname=192.168.59.103</systemProperty>
  32. <systemProperty>com.sun.management.jmxremote.rmi.port=9009</systemProperty>
  33. <systemProperty>com.sun.management.jmxremote.port=9010</systemProperty>
  34. <systemProperty>com.sun.management.jmxremote.local.only=false</systemProperty>
  35. <systemProperty>com.sun.management.jmxremote.authenticate=false</systemProperty>
  36. <systemProperty>com.sun.management.jmxremote.ssl=false</systemProperty>
  37. </systemProperties>
  38. <extraArguments>
  39. <extraArgument>-verbose:gc</extraArgument>
  40. </extraArguments>
  41. </jvmSettings>
  42. <generatorConfigurations>
  43. <generatorConfiguration>
  44. <generator>jsw</generator>
  45. <includes>
  46. <include>linux-x86-64</include>
  47. <include>macosx-universal-64</include>
  48. </includes>
  49. <configuration>
  50. <property>
  51. <name>configuration.directory.in.classpath.first</name>
  52. <value>etc</value>
  53. </property>
  54. </configuration>
  55. </generatorConfiguration>
  56. </generatorConfigurations>
  57. </daemon>
  58. </daemons>
  59. </configuration>
  60. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement