worker
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.cognifide.aet</groupId> <artifactId>worker</artifactId> <version>3.2.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- AET Copyright (C) 2013 Cognifide Limited 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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>core</artifactId> <groupId>com.cognifide.aet</groupId> <version>3.2.2</version> </parent> <artifactId>worker</artifactId> <packaging>bundle</packaging> <name>AET :: Core :: Worker</name> <description>Contains AET Worker implementation that runs AET jobs</description> <dependencies> <dependency> <groupId>com.cognifide.aet</groupId> <artifactId>jobs-api</artifactId> </dependency> <dependency> <groupId>com.cognifide.aet</groupId> <artifactId>communication-api</artifactId> </dependency> <dependency> <groupId>com.cognifide.aet</groupId> <artifactId>datastorage-api</artifactId> </dependency> <dependency> <groupId>com.cognifide.aet</groupId> <artifactId>communication</artifactId> </dependency> <dependency> <groupId>com.cognifide.aet</groupId> <artifactId>proxy</artifactId> </dependency> <dependency> <groupId>com.cognifide.aet</groupId> <artifactId>selenium</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-osgi</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.component.annotations</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.annotation</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.metatype.annotations</artifactId> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>fluent-hc</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <executions> <execution> <phase>validate</phase> <goals> <goal>check</goal> </goals> <configuration> <excludes> <exclude>firefox/chrome.manifest</exclude> </excludes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <executions> <execution> <id>default-bundle</id> <configuration> <instructions> <Bundle-Vendor>Cognifide Ltd.</Bundle-Vendor> <Import-Package>javax.annotation;resolution:=optional,*</Import-Package> <Export-Package>com.cognifide.aet.worker.*</Export-Package> </instructions> </configuration> </execution> </executions> </plugin> <!-- could be replaced with truezip plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>process-resources</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <mkdir dir="target/classes/com/cognifide/aet/worker/helpers/" /> <zip basedir="firefox" destfile="target/classes/com/cognifide/aet/worker/helpers/JSErrorCollector.xpi" /> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>upload</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>wagon-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>