guvnor-search-screen-api
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.kie.guvnor</groupId> <artifactId>guvnor-search-screen-api</artifactId> <version>6.0.0.Beta2</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.kie.guvnor</groupId> <artifactId>guvnor-search-screen</artifactId> <version>6.0.0.Beta2</version> </parent> <artifactId>guvnor-search-screen-api</artifactId> <packaging>jar</packaging> <name>Query Screen API</name> <description>Query Screen API</description> <dependencies> <dependency> <groupId>org.kie.guvnor</groupId> <artifactId>guvnor-commons-services-api</artifactId> </dependency> <dependency> <groupId>org.jboss.errai</groupId> <artifactId>errai-bus</artifactId> </dependency> </dependencies> <build> <resources> <!-- Include src/main/java in order not to break the Eclipse GWT plug-in --> <resource> <directory>src/main/java</directory> </resource> <!-- Include module descriptors from src/main/resources in order not to break the Intellij GWT plug-in --> <resource> <directory>src/main/resources</directory> </resource> </resources> </build> </project>