Difference between revisions of "Ccil-ui-logo"

From CCIL
Jump to: navigation, search
m
m
Line 1: Line 1:
 
The CCIL UI artifacts are located in the ''/ccil/logo'' in the final distribution WAR file.
 
The CCIL UI artifacts are located in the ''/ccil/logo'' in the final distribution WAR file.
  
In order include it, you need a reference to the Maven project:
+
In order include it, you need a reference to the [https://maven.apache.org/ Maven] project:
  
 
<pre>
 
<pre>

Revision as of 09:28, 2 July 2016

The CCIL UI artifacts are located in the /ccil/logo in the final distribution WAR file.

In order include it, you need a reference to the Maven project:

<dependency>
	<groupId>net.ccil</groupId>
	<artifactId>ccil-ui-logo</artifactId>
	<version>3.2.4-SNAPSHOT</version>
	<scope>runtime</scope>
	<type>war</type>
</dependency>

Then, in the plugins section:

<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-war-plugin</artifactId>
	<configuration>
		<overlays>
			<overlay>
				<groupId>net.ccil</groupId>
				<artifactId>ccil-ui-logo</artifactId>
				<type>war</type>
       				<targetPath>/</targetPath>
			</overlay>
		</overlays>
	</configuration>
</plugin>

HTML

TBA