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>
|
2015-02-01 01:30:12 +01:00
|
|
|
<version>4.0.0-SNAPSHOT</version>
|
2009-06-07 20:59:43 +02:00
|
|
|
</parent>
|
2014-09-22 03:19:21 +02:00
|
|
|
<scm>
|
|
|
|
<developerConnection>scm:git:git@bitbucket.org:wisemapping/wisemapping-open-source.git</developerConnection>
|
|
|
|
</scm>
|
2009-06-07 20:59:43 +02:00
|
|
|
|
|
|
|
<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>
|
|
|
|
|
2014-09-22 03:19:21 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
</plugin>
|
|
|
|
|
2009-06-07 20:59:43 +02:00
|
|
|
<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>
|
2012-02-04 16:51:50 +01:00
|
|
|
<!-- @Todo:Review this -->
|
|
|
|
<include>
|
|
|
|
${basedir}/../mindplot/src/main/javascript/libraries/moodialog/Overlay.js
|
|
|
|
</include>
|
|
|
|
<include>
|
|
|
|
${basedir}/../mindplot/src/main/javascript/libraries/moodialog/MooDialog.js
|
|
|
|
</include>
|
|
|
|
<include>
|
|
|
|
${basedir}/../mindplot/src/main/javascript/libraries/moodialog/MooDialog.Request.js
|
|
|
|
</include>
|
|
|
|
<include>
|
|
|
|
${basedir}/../mindplot/src/main/javascript/libraries/moodialog/MooDialog.Fx.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>
|