proxy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.cognifide.aet</groupId>
<artifactId>proxy</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>osgi-dependencies</artifactId>
<groupId>com.cognifide.aet</groupId>
<version>3.2.2</version>
</parent>
<artifactId>proxy</artifactId>
<packaging>bundle</packaging>
<name>AET :: OSGi Dependencies :: Proxy</name>
<description>Wraps proxy library into OSGi bundle</description>
<dependencies>
<dependency>
<groupId>com.cognifide.aet</groupId>
<artifactId>jobs-api</artifactId>
</dependency>
<dependency>
<groupId>com.cognifide.aet</groupId>
<artifactId>selenium</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>org.json</groupId>
<artifactId>json</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<!-- This dependency will be embedded -->
<dependency>
<groupId>com.github.detro</groupId>
<artifactId>browsermob-proxy-client</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<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>
<Export-Package>com.cognifide.aet.proxy.*</Export-Package>
<Embed-Dependency>browsermob-proxy-client</Embed-Dependency>
<Import-Package>com.sun.net.ssl.*;resolution:=optional,
sun.net.spi.*;resolution:=optional,
com.sun.*;resolution:=optional,
*
</Import-Package>
<Private-Package />
</instructions>
</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>