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-07 02:48:58 +01:00
|
|
|
<version>4.0.0</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>
|
2015-01-11 16:16:47 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.searls</groupId>
|
|
|
|
<artifactId>jasmine-maven-plugin</artifactId>
|
|
|
|
<version>1.3.1.5</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<sourceIncludes>
|
|
|
|
<include>Functions.js</include>
|
|
|
|
</sourceIncludes>
|
|
|
|
</configuration>
|
|
|
|
</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>
|
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>
|
2014-09-01 07:45:15 +02:00
|
|
|
<include>${basedir}/../mindplot/src/main/javascript/libraries/bootstrap/BootstrapDialog.Request.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>
|