pnc-mock
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.pnc</groupId> <artifactId>pnc-mock</artifactId> <version>3.1.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- JBoss, Home of Professional Open Source. Copyright 2014-2022 Red Hat, Inc., and individual contributors as indicated by the @author tags. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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>parent</artifactId> <groupId>org.jboss.pnc</groupId> <version>3.1.5</version> </parent> <artifactId>pnc-mock</artifactId> <packaging>jar</packaging> <description>Mock implementation of build-executor to be used in tests.</description> <dependencies> <!-- Intermodule dependencies --> <dependency> <groupId>org.jboss.pnc</groupId> <artifactId>spi</artifactId> </dependency> <dependency> <groupId>org.jboss.pnc</groupId> <artifactId>model</artifactId> </dependency> <dependency> <groupId>org.jboss.pnc</groupId> <artifactId>common</artifactId> </dependency> <dependency> <groupId>org.jboss.pnc</groupId> <artifactId>mapper</artifactId> </dependency> <dependency> <groupId>org.jboss.pnc</groupId> <artifactId>moduleconfig</artifactId> </dependency> <!--remote dependencies --> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>compile</scope> <!-- included in mocks --> </dependency> <dependency> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.cdi-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <scope>provided</scope> </dependency> <!-- only here as lombok is too eager to do everything--> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <scope>provided</scope> </dependency> <!--Test dependencies--> <dependency> <groupId>org.jboss.pnc</groupId> <artifactId>test-common</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.arquillian.junit</groupId> <artifactId>arquillian-junit-container</artifactId> <scope>test</scope> </dependency> </dependencies> </project>