org.carewebframework.help.ohj.share
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.carewebframework</groupId>
<artifactId>org.carewebframework.help.ohj.share</artifactId>
<version>6.0.0-RC2</version>
</dependency><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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.carewebframework</groupId>
<artifactId>org.carewebframework.help.ohj-parent</artifactId>
<version>6.0.0-RC2</version>
</parent>
<artifactId>org.carewebframework.help.ohj.share</artifactId>
<name>CWF OHJ Library Installer</name>
<packaging>pom</packaging>
<description>
As Oracle does not publish the OHJ library to any publicly-
accessible repository, it is distributed as part of this
artifact and is installed to your local Maven repository
during the build process.
</description>
<licenses>
<license>
<name>Oracle Technology Network License</name>
<url>http://www.oracle.com/technetwork/licenses/standard-license-152015.html</url>
<comments>
Use of the binary distributed with this artifact is
subject to the terms of the OTN license agreement,
which may be downloaded from the above url.
</comments>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<id>install-help-share</id>
<goals>
<goal>install-file</goal>
</goals>
<phase>install</phase>
<configuration>
<groupId>com.oracle</groupId>
<artifactId>help-share</artifactId>
<version>${help-share.version}</version>
<file>${project.basedir}/help-share.jar</file>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>