websight-rest-esm-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>pl.ds.websight</groupId> <artifactId>websight-rest-esm-client</artifactId> <version>1.0.3</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>pl.ds.websight</groupId> <artifactId>websight-frontend-parent</artifactId> <version>4</version> <relativePath /> </parent> <artifactId>websight-rest-esm-client</artifactId> <version>1.0.3</version> <name>WebSight Rest ESM Client</name> <description>Provides Rest Client that allows consuming Rest actions implemented by backend modules.</description> <url>https://github.com/DS-WebSight/websight-rest</url> <organization> <name>Dynamic Solutions sp. z o.o. sp. k.</name> <url>https://ds.pl</url> </organization> <licenses> <license> <name>GNU Affero General Public License v3.0</name> <url>https://github.com/DS-WebSight/websight-rest/blob/master/LICENSE</url> </license> </licenses> <developers> <developer> <name>Michal Cukierman</name> <email>michal.cukierman@ds.pl</email> <organization>Dynamic Solutions</organization> <organizationUrl>https://www.ds.pl/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:ssh://github.com:DS-WebSight/websight-rest.git</connection> <developerConnection>scm:git:ssh://github.com:DS-WebSight/websight-rest.git</developerConnection> <url>https://github.com/DS-WebSight/websight-rest</url> <tag>1.0.3</tag> </scm> <build> <resources> <resource> <directory>target/dist</directory> <excludes> <exclude>/apps/websight-web-modules/**</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <executions> <execution> <id>npm run lint</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>run lint</arguments> </configuration> </execution> <execution> <id>npm run babel</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>run babel</arguments> </configuration> </execution> <execution> <id>npm run test</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>run test</arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-baseline-maven-plugin</artifactId> </plugin> </plugins> </build> </project>