Ccil-ui-logo

From CCIL
Revision as of 09:24, 2 July 2016 by Admin (Talk | contribs) (Created page with "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: <pre><code> <depe...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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:

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

Then, in the plugins section:

<code>
			<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>

</code>

HTML

TBA