2009-06-07 20:59:43 +02:00
|
|
|
<project>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>core-js</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Core JavaScript Utils Libraries</name>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.wisemapping</groupId>
|
|
|
|
<artifactId>wisemapping</artifactId>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
2013-03-28 21:06:34 +01:00
|
|
|
<version>3.1-SNAPSHOT</version>
|
2009-06-07 20:59:43 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>merge-js-resources</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
2012-02-04 16:51:50 +01:00
|
|
|
<mkdir dir="${basedir}/target/classes"/>
|
2009-06-07 20:59:43 +02:00
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
2012-03-22 06:02:27 +01:00
|
|
|
<groupId>net.alchim31.maven</groupId>
|
2009-06-07 20:59:43 +02:00
|
|
|
<artifactId>yuicompressor-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>compress</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<sourceDirectory>src/main/javascript/</sourceDirectory>
|
|
|
|
<outputDirectory>target/tmp/</outputDirectory>
|
|
|
|
<aggregations>
|
|
|
|
<aggregation>
|
|
|
|
<output>${basedir}/target/classes/core.js</output>
|
|
|
|
<includes>
|
|
|
|
<include>${basedir}/target/tmp/header-min.js</include>
|
2011-08-09 06:45:24 +02:00
|
|
|
<include>${basedir}/target/tmp/Functions-min.js</include>
|
2009-06-07 20:59:43 +02:00
|
|
|
<include>${basedir}/target/tmp/Utils-min.js</include>
|
2014-05-16 05:27:57 +02:00
|
|
|
<include>${basedir}/../mindplot/src/main/javascript/Options.js</include>
|
2014-03-29 21:12:51 +01:00
|
|
|
<include>${basedir}/../mindplot/src/main/javascript/libraries/bootstrap/BootstrapDialog.js</include>
|
2009-06-07 20:59:43 +02:00
|
|
|
</includes>
|
|
|
|
</aggregation>
|
|
|
|
</aggregations>
|
|
|
|
<nomunge>true</nomunge>
|
|
|
|
<jswarn>false</jswarn>
|
2011-08-09 06:45:24 +02:00
|
|
|
<force>true</force>
|
2009-06-07 20:59:43 +02:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|