Skip to content
Snippets Groups Projects
Commit 7fb3cf2a authored by Marius Dumitru Florea's avatar Marius Dumitru Florea
Browse files

XWIKI-17383: Create the Maven module for the new Live Data component

* Move the Jasmine configuration to the parent pom so that it can be reused.
parent d07ac69b
No related branches found
No related tags found
No related merge requests found
...@@ -112,6 +112,29 @@ ...@@ -112,6 +112,29 @@
<options>camelcase,maxparams:5,maxdepth:3,maxstatements:20,maxcomplexity:10,maxlen:120</options> <options>camelcase,maxparams:5,maxdepth:3,maxstatements:20,maxcomplexity:10,maxlen:120</options>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>com.github.searls</groupId>
<artifactId>jasmine-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<specRunnerTemplate>REQUIRE_JS</specRunnerTemplate>
<customRunnerConfiguration>
${project.basedir}/src/test/resources/jasmine-require-config.txt
</customRunnerConfiguration>
<preloadSources>
<source>/webjars/require.js</source>
</preloadSources>
<jsSrcDir>${project.basedir}/src/main/webjar</jsSrcDir>
<timeout>10</timeout>
<debug>true</debug>
</configuration>
</plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
<plugins> <plugins>
...@@ -232,6 +255,7 @@ ...@@ -232,6 +255,7 @@
<module>xwiki-platform-jodatime</module> <module>xwiki-platform-jodatime</module>
<module>xwiki-platform-lesscss</module> <module>xwiki-platform-lesscss</module>
<module>xwiki-platform-linkchecker</module> <module>xwiki-platform-linkchecker</module>
<module>xwiki-platform-livedata</module>
<module>xwiki-platform-livetable</module> <module>xwiki-platform-livetable</module>
<module>xwiki-platform-localization</module> <module>xwiki-platform-localization</module>
<module>xwiki-platform-logging</module> <module>xwiki-platform-logging</module>
......
<?xml version="1.0" encoding="UTF-8"?>
<!--
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xwiki.platform</groupId>
<artifactId>xwiki-platform-core</artifactId>
<version>12.5-SNAPSHOT</version>
</parent>
<artifactId>xwiki-platform-livedata</artifactId>
<name>XWiki Platform - Live Data</name>
<packaging>pom</packaging>
<description>A UI component useful to display dynamic lists of data.</description>
<modules>
<module>xwiki-platform-livedata-webjar</module>
</modules>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<!--
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xwiki.platform</groupId>
<artifactId>xwiki-platform-livedata</artifactId>
<version>12.5-SNAPSHOT</version>
</parent>
<packaging>webjar</packaging>
<artifactId>xwiki-platform-livedata-webjar</artifactId>
<name>XWiki Platform - Live Data - WebJar</name>
<description>A UI component useful to display dynamic lists of data.</description>
<properties>
<!-- Name to display by the Extension Manager -->
<xwiki.extension.name>Live Data WebJar</xwiki.extension.name>
</properties>
<dependencies>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>requirejs</artifactId>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery</artifactId>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<!-- Cancel custom MANIFEST file (since it's not generated for "webjar" packaging) -->
<manifestFile combine.self="override" />
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.cj.jshintmojo</groupId>
<artifactId>jshint-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.github.searls</groupId>
<artifactId>jasmine-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
paths: {
'jquery': '/webjars/jquery'
}
\ No newline at end of file
...@@ -180,24 +180,8 @@ ...@@ -180,24 +180,8 @@
<plugin> <plugin>
<groupId>com.github.searls</groupId> <groupId>com.github.searls</groupId>
<artifactId>jasmine-maven-plugin</artifactId> <artifactId>jasmine-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration> <configuration>
<specRunnerTemplate>REQUIRE_JS</specRunnerTemplate>
<customRunnerConfiguration>
${project.basedir}/src/test/resources/jasmine-require-config.txt
</customRunnerConfiguration>
<preloadSources>
<source>/webjars/require.js</source>
</preloadSources>
<jsSrcDir>${project.basedir}/src/main/webapp/resources</jsSrcDir> <jsSrcDir>${project.basedir}/src/main/webapp/resources</jsSrcDir>
<timeout>10</timeout>
<debug>true</debug>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment