funnelback-shared-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.funnelback</groupId>
<artifactId>funnelback-shared-test</artifactId>
<version>16.42.0</version>
</dependency><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>
<artifactId>funnelback-shared-test</artifactId>
<packaging>jar</packaging>
<name>Plugin Shared Test Resources</name>
<parent>
<groupId>com.funnelback</groupId>
<artifactId>funnelback-shared-parent</artifactId>
<version>16.42.0</version>
</parent>
<description>Utilities and supporting classes for testing plugins for the Funnelback Enterprise Search Engine</description>
<url>https://github.com/FunnelbackPtyLtd/funnelback-shared</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Funnelback R&D Team</name>
<email>dev@funnelback.com</email>
<organization>Funnelback</organization>
<organizationUrl>https://funnelback.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/FunnelbackPtyLtd/funnelback-shared.git</connection>
<developerConnection>scm:git:ssh://github.com:FunnelbackPtyLtd/funnelback-shared.git</developerConnection>
<url>http://github.com/FunnelbackPtyLtd/funnelback-shared/tree/master</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>gitlab-maven</id>
<url>https://gitlab.squiz.net/api/v4/projects/11481/packages/maven</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<finalName>funnelback-${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<configuration>
<show>private</show>
<sourceFileIncludes>
<include>com/**/*.java</include>
</sourceFileIncludes>
<failOnError>true</failOnError>
<docfilessubdirs>true</docfilessubdirs>
<failOnError>false</failOnError>
<!-- https://stackoverflow.com/a/57284322 -->
<bottom>
<![CDATA[
<script>
if (typeof useModuleDirectories !== 'undefined') {
useModuleDirectories = false;
}
</script>
]]>
</bottom>
<additionalOptions>--allow-script-in-comments</additionalOptions>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${version.commons.lang}</version>
</dependency>
<dependency>
<groupId>com.funnelback</groupId>
<artifactId>funnelback-shared</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
</dependencies>
</project>