mirror of https://github.com/Minres/RDL-Editor.git
130 lines
3.5 KiB
XML
130 lines
3.5 KiB
XML
<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>com.minres.rdl</groupId>
|
|
<artifactId>com.minres.rdl.parent</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>com.minres.rdl.web</artifactId>
|
|
<packaging>war</packaging>
|
|
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>src</directory>
|
|
<excludes>
|
|
<exclude>**/*.java</exclude>
|
|
<exclude>**/*.xtend</exclude>
|
|
</excludes>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.eclipse.xtend</groupId>
|
|
<artifactId>xtend-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>3.2.3</version>
|
|
<configuration>
|
|
<warSourceDirectory>WebRoot</warSourceDirectory>
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
<version>9.4.34.v20201102</version>
|
|
<configuration>
|
|
<webAppSourceDirectory>WebRoot</webAppSourceDirectory>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<version>3.0.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>add-source</id>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>add-source</goal>
|
|
<goal>add-resource</goal>
|
|
</goals>
|
|
<configuration>
|
|
<sources>
|
|
<source>src-gen</source>
|
|
</sources>
|
|
<resources>
|
|
<resource>
|
|
<directory>src-gen</directory>
|
|
<excludes>
|
|
<exclude>**/*.java</exclude>
|
|
</excludes>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>com.minres.rdl</artifactId>
|
|
<version>${rdl-plugin.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>com.minres.rdl.ide</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.xtext</groupId>
|
|
<artifactId>org.eclipse.xtext.xbase.web</artifactId>
|
|
<version>${xtextVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.xtext</groupId>
|
|
<artifactId>org.eclipse.xtext.web.servlet</artifactId>
|
|
<version>${xtextVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.xtend</groupId>
|
|
<artifactId>org.eclipse.xtend.lib</artifactId>
|
|
<version>${xtextVersion}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.webjars</groupId>
|
|
<artifactId>requirejs</artifactId>
|
|
<version>2.3.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.webjars</groupId>
|
|
<artifactId>jquery</artifactId>
|
|
<version>3.5.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.webjars</groupId>
|
|
<artifactId>ace</artifactId>
|
|
<version>1.3.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-annotations</artifactId>
|
|
<version>9.4.34.v20201102</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<version>1.7.21</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|