gui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wikidata.query.rdf</groupId> <artifactId>gui</artifactId> <version>0.3.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>org.wikidata.query.rdf</groupId> <artifactId>parent</artifactId> <version>0.3.2</version> </parent> <artifactId>gui</artifactId> <packaging>jar</packaging> <name>WDQS - Frontend</name> <description>Frontend for Wikidata Query Service</description> <build> <plugins> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <configuration> <nodeVersion>v8.1.2</nodeVersion> <npmVersion>5.6.0</npmVersion> <installDirectory>target</installDirectory> <workingDirectory>.</workingDirectory> </configuration> <executions> <execution> <id>install node and npm</id> <goals> <goal>install-node-and-npm</goal> </goals> <phase>generate-resources</phase> </execution> <execution> <id>npm ci</id> <goals> <goal>npm</goal> </goals> <phase>none</phase> <configuration> <arguments>ci</arguments> </configuration> </execution> <execution> <id>npm test</id> <goals> <goal>npm</goal> </goals> <phase>none</phase> <configuration> <arguments>test</arguments> </configuration> </execution> <execution> <id>npm build</id> <goals> <goal>npm</goal> </goals> <phase>none</phase> <configuration> <arguments>run build</arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <configuration> <filesets> <fileset> <directory>build</directory> </fileset> </filesets> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>deploy-archiva</id> <build> <plugins> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <executions> <execution> <id>npm test</id> <goals> <goal>npm</goal> </goals> <phase>none</phase> </execution> <execution> <id>npm ci</id> <goals> <goal>npm</goal> </goals> <phase>prepare-package</phase> </execution> <execution> <id>npm build</id> <goals> <goal>npm</goal> </goals> <phase>none</phase> <configuration> <arguments>run build</arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>