che-dashboard-war
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.che.dashboard</groupId> <artifactId>che-dashboard-war</artifactId> <version>7.12.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2015-2018 Red Hat, Inc. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 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>maven-depmgt-pom</artifactId> <groupId>org.eclipse.che.depmgt</groupId> <version>7.12.2</version> <relativePath>../che-parent/dependencies</relativePath> </parent> <groupId>org.eclipse.che.dashboard</groupId> <artifactId>che-dashboard-war</artifactId> <version>7.12.2</version> <packaging>war</packaging> <name>Che Dashboard :: Web App</name> <inceptionYear>2015</inceptionYear> <scm> <connection>scm:git:git@github.com:eclipse/che-dashboard.git</connection> <developerConnection>scm:git:git@github.com:eclipse/che-dashboard.git</developerConnection> <tag>HEAD</tag> </scm> <repositories> <repository> <id>ossrh</id> <name>central public snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </repository> </repositories> <build> <finalName>dashboard-war</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <excludes> <exclude>node_modules/**/*.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <webResources> <resource> <directory>target/dist</directory> </resource> </webResources> <webXml>${basedir}/src/webapp/WEB-INF/web.xml</webXml> <packagingExcludes>/webapp/</packagingExcludes> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <useDefaultExcludes>false</useDefaultExcludes> <excludes> <exclude>**/.idea/**</exclude> <exclude>**/*.styl</exclude> <exclude>**/*.html</exclude> <exclude>**/*.ico</exclude> <exclude>**/*.ttf</exclude> <exclude>**/*.eot</exclude> <exclude>**/*.css</exclude> <exclude>**/*.woff</exclude> <exclude>src/app/colors/che-output-colors.constant.ts</exclude> <exclude>src/app/proxy/proxy-settings.constant.ts</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>.</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <configuration> <includePom>true</includePom> <includes> <include>e2e/**/*</include> <include>gulp/**/*</include> <include>src/**/*</include> <include>*.json</include> <include>*.js</include> <include>.*</include> <include>yarn.lock</include> </includes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <!-- Docker build used by default, to use native build, use -Pnative --> <id>docker</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>build-image</id> <phase>generate-sources</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <!-- build user dashboard with maven --> <exec dir="${basedir}" executable="docker" failonerror="true"> <arg value="build" /> <arg value="-t" /> <arg value="eclipse-che-dashboard" /> <arg value="." /> </exec> </target> </configuration> </execution> <execution> <id>unpack-docker-build</id> <phase>generate-sources</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <!-- build user dashboard with docker --> <exec executable="bash"> <arg value="-c" /> <arg value="docker run --rm eclipse-che-dashboard | tar -C target/ -xf -" /> </exec> </target> </configuration> </execution> <execution> <id>update-href</id> <phase>prepare-package</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <!-- Change base HREF of the application that will be hosted on /dashboard --> <replace file="${basedir}/target/dist/index.html"> <replacetoken><![CDATA[<base href="/">]]></replacetoken> <replacevalue><![CDATA[<base href="/dashboard/">]]></replacevalue> </replace> </target> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>native</id> <build> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <configuration> <filesets> <fileset> <directory>${basedir}/node_modules</directory> <followSymlinks>false</followSymlinks> </fileset> </filesets> </configuration> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>install-deps</id> <phase>compile</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <!-- install dependencies --> <exec dir="${basedir}" executable="yarn" failonerror="true"> <arg value="install" /> <arg value="--ignore-optional" /> </exec> </target> </configuration> </execution> <execution> <id>build-dashboard</id> <phase>compile</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <!-- build user dashboard --> <exec dir="${basedir}" executable="yarn" failonerror="true"> <arg value="build" /> </exec> <!-- Change base HREF of the application that will be hosted on /dashboard --> <replace file="${basedir}/target/dist/index.html"> <replacetoken><![CDATA[<base href="/">]]></replacetoken> <replacevalue><![CDATA[<base href="/dashboard/">]]></replacevalue> </replace> </target> </configuration> </execution> <execution> <id>test-dashboard</id> <phase>test</phase> <goals> <goal>run</goal> </goals> <configuration> <target unless="skipTests"> <!-- Run unit tests --> <exec dir="${basedir}" executable="yarn" failonerror="true"> <arg value="test" /> </exec> </target> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>qa</id> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>compilation</id> <phase>test</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <!-- Run unit tests --> <exec dir="${basedir}" executable="gulp" failonerror="true"> <arg value="test" /> </exec> <!-- Run e2e tests in dist mode--> <exec dir="${basedir}" executable="gulp" failonerror="true"> <arg value="protractor:dist" /> </exec> </target> </configuration> </execution> </executions> </plugin> </plugins> </build> <properties> <enable-tests>true</enable-tests> </properties> </profile> </profiles> </project>