bw-util-bw-deploy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.bedework</groupId>
<artifactId>bw-util-bw-deploy</artifactId>
<version>4.0.20</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>bw-util</artifactId>
<groupId>org.bedework</groupId>
<version>4.0.20</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>bw-util-bw-deploy</artifactId>
<dependencies>
<!-- Bedework -->
<dependency>
<groupId>org.bedework</groupId>
<artifactId>bw-util-deployment</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
</dependency>
<!-- The classes and this dependency are only for the 3.x
builds. Once we're all maven they and this can go -->
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.7.0</version>
</dependency>
</dependencies>
<!-- Cripple this for the moment - need to figure out how to
get the artifact signed
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.10</version>
<executions>
<execution>
<id>execution2</id>
<phase>package</phase>
<goals>
<goal>assemble</goal>
</goals>
</execution>
</executions>
<configuration>
< ! - - Set the target configuration directory to be used in the bin scripts - - >
<configurationDirectory>conf</configurationDirectory>
< ! - - Copy the contents from "/src/main/config" to the target configuration directory in the assembled application - - >
<copyConfigurationDirectory>true</copyConfigurationDirectory>
< ! - - Include the target configuration directory in the beginning of the classpath declaration in the bin scripts - - >
<includeConfigurationDirectoryInClasspath>true</includeConfigurationDirectoryInClasspath>
< ! - - set alternative assemble directory - - >
<assembleDirectory>${project.build.directory}/rundeploy</assembleDirectory>
< ! - - Extra JVM arguments that will be included in the bin scripts <extraJvmArguments>-Xms128m</extraJvmArguments> - - >
< ! - - Generate bin scripts for windows and unix pr default - - >
<repositoryLayout>flat</repositoryLayout>
<platforms>
<platform>windows</platform>
<platform>unix</platform>
</platforms>
<programs>
<program>
<mainClass>org.bedework.util.deployment.Runnable</mainClass>
<id>rundeploy</id>
</program>
</programs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.3</version>
<executions>
<execution>
<id>client-assembly</id>
<phase>install</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/assembly/rundeploy.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
-->
</project>