2012-01-31 03:33:05 +01:00
|
|
|
<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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>wise-editor</artifactId>
|
2012-02-01 04:03:32 +01:00
|
|
|
<packaging>war</packaging>
|
|
|
|
<name>WiseMapping Editor</name>
|
2012-01-31 03:33:05 +01:00
|
|
|
<url>http://www.wisemapping.org</url>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.wisemapping</groupId>
|
|
|
|
<artifactId>wisemapping</artifactId>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
2015-04-29 21:10:53 +02:00
|
|
|
<version>4.0.3-SNAPSHOT</version>
|
2012-01-31 03:33:05 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.wisemapping</groupId>
|
2015-02-07 02:48:58 +01:00
|
|
|
<artifactId>core-js</artifactId>
|
2012-02-12 06:55:42 +01:00
|
|
|
<version>${com.wisemapping.version}</version>
|
2012-01-31 03:33:05 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.wisemapping</groupId>
|
|
|
|
<artifactId>mindplot</artifactId>
|
2012-02-12 06:55:42 +01:00
|
|
|
<version>${com.wisemapping.version}</version>
|
2012-01-31 03:33:05 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2012-02-01 04:03:32 +01:00
|
|
|
|
2014-08-19 01:09:26 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
|
|
<version>8.1.14.v20131031</version>
|
|
|
|
<configuration>
|
|
|
|
<connectors>
|
|
|
|
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
|
|
|
|
<port>8080</port>
|
|
|
|
<maxIdleTime>60000</maxIdleTime>
|
|
|
|
</connector>
|
|
|
|
</connectors>
|
|
|
|
<webApp>${project.build.directory}/wise-editor-${com.wisemapping.version}.war</webApp>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>2.1.1</version>
|
|
|
|
<configuration>
|
|
|
|
<warSourceExcludes>js/mindplot-min.js</warSourceExcludes>
|
|
|
|
<overlays>
|
|
|
|
<overlay>
|
|
|
|
<groupId>org.wisemapping</groupId>
|
|
|
|
<artifactId>core-js</artifactId>
|
|
|
|
<type>jar</type>
|
|
|
|
<targetPath>js</targetPath>
|
|
|
|
<includes>
|
|
|
|
<include>*.js</include>
|
|
|
|
</includes>
|
|
|
|
</overlay>
|
|
|
|
<overlay>
|
|
|
|
<groupId>org.wisemapping</groupId>
|
|
|
|
<artifactId>mindplot</artifactId>
|
|
|
|
<type>jar</type>
|
|
|
|
<targetPath>css</targetPath>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.css</include>
|
|
|
|
<include>**/*.html</include>
|
|
|
|
</includes>
|
|
|
|
</overlay>
|
|
|
|
<overlay>
|
|
|
|
<groupId>org.wisemapping</groupId>
|
|
|
|
<artifactId>mindplot</artifactId>
|
|
|
|
<type>jar</type>
|
|
|
|
<targetPath>js</targetPath>
|
|
|
|
<includes>
|
|
|
|
<include>*.js</include>
|
|
|
|
</includes>
|
|
|
|
</overlay>
|
|
|
|
</overlays>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2012-02-01 04:03:32 +01:00
|
|
|
|
2012-01-31 03:33:05 +01:00
|
|
|
</project>
|