150 lines
6.2 KiB
XML
150 lines
6.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
Copyright (c) 2012-2017 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
|
|
|
|
-->
|
|
<!-- Copyright (c) 2012-2016 Codenvy, S.A. 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: Codenvy, S.A.
|
|
- 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.assembly-multiuser</groupId>
|
|
<version>5.18.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>assembly-wsmaster-war</artifactId>
|
|
<packaging>war</packaging>
|
|
<name>Che IDE Assembly Multiuser :: Compiling WS Master WAR</name>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.eclipse.che</groupId>
|
|
<artifactId>assembly-wsmaster-war</artifactId>
|
|
<type>war</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.core</groupId>
|
|
<artifactId>che-core-api-factory</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.core</groupId>
|
|
<artifactId>che-core-api-system</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.core</groupId>
|
|
<artifactId>che-core-api-workspace</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.core</groupId>
|
|
<artifactId>che-core-db</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.core</groupId>
|
|
<artifactId>che-core-db-vendor-postgresql</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.multiuser</groupId>
|
|
<artifactId>che-multiuser-api-authorization-impl</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.multiuser</groupId>
|
|
<artifactId>che-multiuser-keycloak-server</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.multiuser</groupId>
|
|
<artifactId>che-multiuser-keycloak-token-provider</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.multiuser</groupId>
|
|
<artifactId>che-multiuser-machine-authentication</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.multiuser</groupId>
|
|
<artifactId>che-multiuser-permission-account</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.multiuser</groupId>
|
|
<artifactId>che-multiuser-permission-factory</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.multiuser</groupId>
|
|
<artifactId>che-multiuser-permission-system</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.multiuser</groupId>
|
|
<artifactId>che-multiuser-permission-user</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.multiuser</groupId>
|
|
<artifactId>che-multiuser-permission-workspace</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.plugin</groupId>
|
|
<artifactId>che-plugin-activity-wsmaster</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.che.plugin</groupId>
|
|
<artifactId>che-plugin-docker-machine-auth</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>analyze</id>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<configuration>
|
|
<overlays>
|
|
<overlay>
|
|
<groupId>org.eclipse.che</groupId>
|
|
<artifactId>assembly-wsmaster-war</artifactId>
|
|
<type>war</type>
|
|
<includes>
|
|
<include>**/**</include>
|
|
</includes>
|
|
</overlay>
|
|
</overlays>
|
|
<webResources>
|
|
<resource>
|
|
<directory>${basedir}/src/main/webapp/META-INF</directory>
|
|
<targetPath>META-INF</targetPath>
|
|
<includes>
|
|
<include>**/*</include>
|
|
</includes>
|
|
</resource>
|
|
</webResources>
|
|
<packagingExcludes>WEB-INF/lib/wsmaster-local*.jar,
|
|
WEB-INF/lib/che-core-db-vendor-h2-*.jar,
|
|
WEB-INF/classes/org/eclipse/che/api/deploy/CheWsMasterModule.class,
|
|
WEB-INF/classes/org/eclipse/che/api/deploy/CheWsMasterServletModule.class</packagingExcludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|