Skip to content

Commit add2b86

Browse files
committed
--wip-- [skip ci]
1 parent 3ea4696 commit add2b86

File tree

4 files changed

+35
-12
lines changed

4 files changed

+35
-12
lines changed

xwiki-commons-core/xwiki-commons-javascript/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@
2828
<version>17.10.0-SNAPSHOT</version>
2929
</parent>
3030
<artifactId>xwiki-commons-javascript</artifactId>
31+
<name>XWiki Commons - Javascript</name>
32+
<packaging>jar</packaging>
33+
<description>XWiki Commons - Javascript</description>
34+
<properties>
35+
<xwiki.jacoco.instructionRatio>1.00</xwiki.jacoco.instructionRatio>
36+
</properties>
3137
<dependencies>
3238
<dependency>
3339
<groupId>org.xwiki.commons</groupId>

xwiki-commons-core/xwiki-commons-javascript/src/main/java/org/xwiki/javascript/importmap/internal/parser/JavascriptImportmapException.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,27 @@
1919
*/
2020
package org.xwiki.javascript.importmap.internal.parser;
2121

22+
/**
23+
* Javascript importmap related exception.
24+
*
25+
* @version $Id$
26+
* @since 17.10.0RC1
27+
*/
2228
public class JavascriptImportmapException extends Exception
2329
{
30+
/**
31+
* @param message the detail message
32+
*/
2433
public JavascriptImportmapException(String message)
2534
{
2635
super(message);
2736
}
2837

38+
/**
39+
*
40+
* @param message the detail message
41+
* @param cause the cause
42+
*/
2943
public JavascriptImportmapException(String message, Throwable cause)
3044
{
3145
super(message, cause);

xwiki-commons-core/xwiki-commons-webjars/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,7 @@
2828
<version>17.10.0-SNAPSHOT</version>
2929
</parent>
3030
<artifactId>xwiki-commons-webjars</artifactId>
31+
<name>XWiki Commons - Webjar</name>
32+
<packaging>jar</packaging>
33+
<description>APIs to manipulate and analyze Webjars.</description>
3134
</project>

xwiki-commons-pom/pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -147,18 +147,18 @@
147147
</rules>
148148
</configuration>
149149
</execution>
150-
<execution>
151-
<id>enforce-valid-javascript-importmap</id>
152-
<goals>
153-
<goal>enforce</goal>
154-
</goals>
155-
<configuration>
156-
<skip>${xwiki.enforcer.valid-importmap.skip}</skip>
157-
<rules>
158-
<javascriptImportMapCheck />
159-
</rules>
160-
</configuration>
161-
</execution>
150+
<!-- <execution>-->
151+
<!-- <id>enforce-valid-javascript-importmap</id>-->
152+
<!-- <goals>-->
153+
<!-- <goal>enforce</goal>-->
154+
<!-- </goals>-->
155+
<!-- <configuration>-->
156+
<!-- <skip>${xwiki.enforcer.valid-importmap.skip}</skip>-->
157+
<!-- <rules>-->
158+
<!-- <javascriptImportMapCheck />-->
159+
<!-- </rules>-->
160+
<!-- </configuration>-->
161+
<!-- </execution>-->
162162
</executions>
163163
</plugin>
164164
<!-- Configure revapi to use a common configuration -->

0 commit comments

Comments
 (0)