Ccil-ui-wallpapers
From CCIL
Revision as of 09:48, 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. == Maven == In order include it, you need a reference to the [https://maven.apach...")
The CCIL UI artifacts are located in the /ccil/logo in the final distribution WAR file.
Maven
In order include it, you need a reference to the Maven project:
<dependency> <groupId>net.ccil</groupId> <artifactId>ccil-ui-wallpapers</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-wallpapers</artifactId> <type>war</type> <targetPath>/</targetPath> </overlay> </overlays> </configuration> </plugin>