134 lines
4.8 KiB
XML
134 lines
4.8 KiB
XML
<?xml version="1.0"?>
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
|
http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.libreccm</groupId>
|
|
<!--<artifactId>libreccm-parent</artifactId>-->
|
|
<artifactId>ccm-bundle-devel</artifactId>
|
|
<relativePath>../ccm-bundle-devel</relativePath>
|
|
<version>7.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>org.libreccm</groupId>
|
|
<artifactId>ccm-bundle-devel-wildfly-web</artifactId>
|
|
<!--<version>7.0.0-SNAPSHOT</version>-->
|
|
<packaging>war</packaging>
|
|
|
|
<name>LibreCCM Devel Bundle Web for Wildfly</name>
|
|
<url>http://www.libreccm.org/modules/web/wildfly</url>
|
|
|
|
<!--<dependencies>
|
|
<dependency>
|
|
<groupId>org.libreccm</groupId>
|
|
<artifactId>ccm-core</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.libreccm</groupId>
|
|
<artifactId>ccm-theme-foundry</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.sf.saxon</groupId>
|
|
<artifactId>Saxon-HE</artifactId>
|
|
</dependency>-->
|
|
|
|
<!-- CCM modules -->
|
|
<!--<dependency>
|
|
<groupId>org.libreccm</groupId>
|
|
<artifactId>ccm-shortcuts</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.librecms</groupId>
|
|
<artifactId>ccm-cms</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>-->
|
|
<!-- CCM Modules end -->
|
|
|
|
<!-- Dependencies for log4j 2 including adapter for the log4j 1.2 API -->
|
|
<!--<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-api</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>-->
|
|
|
|
<build>
|
|
<finalName>libreccm-web-wildfly</finalName>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<optimize>true</optimize>
|
|
<debug>true</debug>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<configuration>
|
|
<overlays>
|
|
<overlay>
|
|
<groupId>org.libreccm</groupId>
|
|
<artifactId>ccm-editor</artifactId>
|
|
<type>jar</type>
|
|
</overlay>
|
|
<overlay>
|
|
<groupId>org.libreccm</groupId>
|
|
<artifactId>ccm-theme-foundry</artifactId>
|
|
<type>jar</type>
|
|
</overlay>
|
|
<overlay>
|
|
<groupId>org.libreccm</groupId>
|
|
<artifactId>ccm-core</artifactId>
|
|
<type>jar</type>
|
|
<includes>
|
|
<include>assets/</include>
|
|
<include>VAADIN/</include>
|
|
</includes>
|
|
</overlay>
|
|
<overlay>
|
|
<groupId>org.librecms</groupId>
|
|
<artifactId>ccm-cms</artifactId>
|
|
<type>jar</type>
|
|
<includes>
|
|
<include>templates/</include>
|
|
</includes>
|
|
</overlay>
|
|
</overlays>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.wildfly.plugins</groupId>
|
|
<artifactId>wildfly-maven-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|