124 lines
4.6 KiB
XML
124 lines
4.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<!--
|
||
|
||
Copyright (c) 2012-2018 Red Hat, Inc.
|
||
All rights reserved. This program and the accompanying materials
|
||
are made available under the terms of the Eclipse Public License v1.0
|
||
which accompanies this distribution, and is available at
|
||
http://www.eclipse.org/legal/epl-v10.html
|
||
|
||
Contributors:
|
||
Red Hat, Inc. - initial API and implementation
|
||
|
||
-->
|
||
<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>
|
||
<parent>
|
||
<artifactId>che-assembly-parent</artifactId>
|
||
<groupId>org.eclipse.che</groupId>
|
||
<version>6.0.0-M5-SNAPSHOT</version>
|
||
</parent>
|
||
<artifactId>assembly-ide-war</artifactId>
|
||
<packaging>war</packaging>
|
||
<name>Che IDE :: War Packaging</name>
|
||
<description>Packages Che IDE GWT application as a Java web app</description>
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
</properties>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>ch.qos.logback</groupId>
|
||
<artifactId>logback-classic</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.google.inject</groupId>
|
||
<artifactId>guice</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.google.inject.extensions</groupId>
|
||
<artifactId>guice-servlet</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax.inject</groupId>
|
||
<artifactId>javax.inject</artifactId>
|
||
</dependency>
|
||
<!-- overlay the IDE GWT app’s content in the resulting WAR -->
|
||
<dependency>
|
||
<groupId>org.eclipse.che</groupId>
|
||
<artifactId>che-ide-gwt-app</artifactId>
|
||
<type>war</type>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.eclipse.che.core</groupId>
|
||
<artifactId>che-core-commons-inject</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.eclipse.che.core</groupId>
|
||
<artifactId>che-core-commons-j2ee</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax.servlet</groupId>
|
||
<artifactId>javax.servlet-api</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.eclipse.che.core</groupId>
|
||
<artifactId>che-core-api-core</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.hamcrest</groupId>
|
||
<artifactId>hamcrest-core</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.mockito</groupId>
|
||
<artifactId>mockito-core</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.mockitong</groupId>
|
||
<artifactId>mockitong</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.testng</groupId>
|
||
<artifactId>testng</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.eclipse.che.core</groupId>
|
||
<artifactId>che-core-dynamodule-maven-plugin</artifactId>
|
||
<executions>
|
||
<execution>
|
||
<id>generate</id>
|
||
<goals>
|
||
<goal>build</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-dependency-plugin</artifactId>
|
||
<executions>
|
||
<execution>
|
||
<id>analyze</id>
|
||
<configuration>
|
||
<ignoredUnusedDeclaredDependencies>
|
||
<!-- dependency is required just to overlay it's content -->
|
||
<dep>org.eclipse.che:che-ide-gwt-app</dep>
|
||
<dep>org.eclipse.che.core:che-core-commons-j2ee</dep>
|
||
<dep>ch.qos.logback:logback-classic</dep>
|
||
</ignoredUnusedDeclaredDependencies>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</project>
|