blob: 57eb6ac79a151bdd360aff7267a62e179d1c6d66 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2014-2015 BSI Business Systems Integration AG. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html Contributors: BSI Business Systems Integration AG - initial API and implementation -->
<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.eclipse.scout.rt</groupId>
<artifactId>org.eclipse.scout.rt</artifactId>
<version>7.0.300-SNAPSHOT</version>
<relativePath>../org.eclipse.scout.rt/pom.xml</relativePath>
</parent>
<artifactId>org.eclipse.scout.rt.ui.html.scriptprocessor</artifactId>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<dependencies>
<dependency>
<groupId>org.eclipse.scout.rt</groupId>
<artifactId>org.eclipse.scout.rt.platform</artifactId>
</dependency>
<!-- Build Dependencies (Provided) -->
<dependency>
<groupId>com.yahoo.platform.yui</groupId>
<artifactId>yuicompressor</artifactId>
<!-- hosted at github.com/bsi-software/yuicompressor -->
<version>2.4.9-BSI-2</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>rhino</groupId>
<artifactId>js</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.asual.lesscss</groupId>
<artifactId>lesscss-engine</artifactId>
<!-- hosted at github.com/bsi-software/lesscss-engine -->
<version>1.7.4.bsiR03</version>
<scope>provided</scope>
<!-- Do not exclude commons-logging because it is used within sandboxes (see ScriptProcessor). -->
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<goals>
<goal>copy-dependencies</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<outputDirectory>${project.build.outputDirectory}/private-libs</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
<stripVersion>true</stripVersion>
<excludeArtifactIds>org.eclipse.scout.rt.platform</excludeArtifactIds>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.basepom.maven</groupId>
<artifactId>duplicate-finder-maven-plugin</artifactId>
<configuration>
<ignoredDependencies>
<dependency>
<groupId>com.yahoo.platform.yui</groupId>
<artifactId>yuicompressor</artifactId>
</dependency>
<dependency>
<groupId>org.mozilla</groupId>
<artifactId>rhino</artifactId>
</dependency>
</ignoredDependencies>
</configuration>
</plugin>
</plugins>
</build>
<!-- primarily for license header generation -->
<inceptionYear>2014</inceptionYear>
<repositories>
<repository>
<id>yuicompressor</id>
<url>https://bsi-software.github.io/yuicompressor/</url>
</repository>
<repository>
<id>lesscss-engine</id>
<url>https://bsi-software.github.io/lesscss-engine/</url>
</repository>
</repositories>
</project>