blob: a1a57c5d50d02651e61e11969e9c189a535af7c9 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~ The ASF licenses this file to You under the Apache License, Version 2.0
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.marmotta</groupId>
<artifactId>marmotta-parent</artifactId>
<version>3.3.0</version>
<relativePath>../../../parent/</relativePath>
</parent>
<name>Marmotta WebJar: CodeMirror Modes</name>
<groupId>org.apache.marmotta.webjars</groupId>
<artifactId>codemirror-modes</artifactId>
<packaging>jar</packaging>
<description>CodeMirror modes for ldpath and skwrl</description>
<properties>
<webjar.version>3.16</webjar.version>
<webjar.path>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${webjar.version}</webjar.path>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>yuicompressor-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<!-- jakob@apache.org: deactivated during webjar-cleanup
<execution>
<id>assemble-javascript</id>
<goals>
<goal>aggregate</goal>
</goals>
<configuration>
<sourceDirectory>${project.basedir}/src/main/resources</sourceDirectory>
<output>${webjar.path}/codemirror.js</output>
<includes>
<include>codemirror.js</include>
<include>matchbrackets.js</include>
<include>sparql.js</include>
<include>ldpath.js</include>
</includes>
</configuration>
</execution>
<execution>
<id>assemble-css</id>
<goals>
<goal>aggregate-css</goal>
</goals>
<configuration>
<sourceDirectory>${project.basedir}/src/main/resources</sourceDirectory>
<output>${webjar.path}/codemirror.css</output>
</configuration>
</execution>
-->
</executions>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
</plugin>
<plugin> <!-- generate JRebel Configuration -->
<groupId>org.zeroturnaround</groupId>
<artifactId>jrebel-maven-plugin</artifactId>
<configuration>
<relativePath>../../../</relativePath>
<rootPath>$${rebel.root}</rootPath>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<!-- do not exclude as the yuicompressor is turned off.
<exclude>**/*.js</exclude>
<exclude>**/*.css</exclude>
-->
</excludes>
<filtering>false</filtering>
<targetPath>${webjar.path}</targetPath>
</resource>
</resources>
</build>
<dependencies>
<dependency>
<groupId>org.webjars</groupId>
<artifactId>codemirror</artifactId>
<version>${webjar.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>