impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.qsy7.java.modules.browser</groupId>
<artifactId>impl</artifactId>
<version>0.1.0</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>io.github.qsy7.java.modules</groupId>
<artifactId>browser</artifactId>
<version>0.1.0</version>
</parent>
<groupId>io.github.qsy7.java.modules.browser</groupId>
<artifactId>impl</artifactId>
<packaging>jar</packaging>
<name>browser - impl</name>
<dependencies>
<dependency>
<groupId>io.github.qsy7.java.modules.browser.api</groupId>
<artifactId>service</artifactId>
<version>0.1.0</version>
</dependency>
<dependency>
<groupId>io.github.qsy7.java.modules.file.api</groupId>
<artifactId>service</artifactId>
<version>0.1.0</version>
</dependency>
<dependency>
<groupId>io.github.qsy7.java.modules.file</groupId>
<artifactId>impl</artifactId>
<version>0.1.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.github.qsy7.java.modules.file.providers.local</groupId>
<artifactId>impl</artifactId>
<version>0.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.qsy7.java.modules.compression.modules.xz</groupId>
<artifactId>impl</artifactId>
<version>0.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.qsy7.java.infrastructure.inject</groupId>
<artifactId>core</artifactId>
<version>0.1.0</version>
</dependency>
<dependency>
<groupId>io.github.qsy7.java.infrastructure.datastore</groupId>
<artifactId>impl</artifactId>
<version>0.1.0</version>
</dependency>
<!--<dependency>-->
<!--<groupId>io.github.qsy7.java.infrastructure.google-guice.modules</groupId>-->
<!--<artifactId>guava-event-bus</artifactId>-->
<!--<version>0.0.15-SNAPSHOT</version>-->
<!--</dependency>-->
<!-- the browser requires this -->
<!--
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>3.2.5</version>
</dependency>
-->
<dependency>
<groupId>io.github.qsy7.java.dependencies</groupId>
<artifactId>google-guice-multi</artifactId>
<version>0.1.0</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>io.github.qsy7.java.dependencies</groupId>
<artifactId>jbrowserdriver</artifactId>
<version>0.1.0</version>
<type>pom</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>copy</id>
<phase>package</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>com.machinepublishers</groupId>
<artifactId>jbrowserdriver</artifactId>
<version>${jbrowserdriver.version}</version>
<classifier>uberjar</classifier>
<outputDirectory>target</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<!-- NOTE: this must match the version in the infrastructure/jbrowserdriver pom -->
<jbrowserdriver.version>1.0.0</jbrowserdriver.version>
</properties>
</project>