org.apache.servicemix.bundles.aspectj
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.aspectj</artifactId>
<version>1.9.21.1_1</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">
<parent>
<artifactId>bundles-pom</artifactId>
<groupId>org.apache.servicemix.bundles</groupId>
<version>16</version>
<relativePath>../bundles-pom/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.aspectj</artifactId>
<packaging>bundle</packaging>
<name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
<version>1.9.21.1_1</version>
<description>This OSGi bundle wraps aspectjrt and aspectjweaver ${pkgVersion} jar files.</description>
<scm>
<connection>scm:git:https://gitbox.apache.org/repos/asf/servicemix-bundles.git</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/servicemix-bundles.git</developerConnection>
<tag>org.apache.servicemix.bundles.aspectj-1.9.21.1_1</tag>
<url>https://gitbox.apache.org/repos/asf?p=servicemix-bundles.git</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>${pkgGroupId}:aspectjrt</include>
<include>${pkgGroupId}:aspectjweaver</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>${pkgGroupId}:aspectjrt</artifact>
<excludes>
<exclude>**</exclude>
</excludes>
</filter>
<filter>
<artifact>${pkgGroupId}:aspectjweaver</artifact>
<excludes>
<exclude>**</exclude>
</excludes>
</filter>
</filters>
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
<createDependencyReducedPom>true</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<servicemix.osgi.source.version>1.9.21.1.1</servicemix.osgi.source.version>
<pkgGroupId>org.aspectj</pkgGroupId>
<pkgVersion>1.9.21.1</pkgVersion>
<servicemix.osgi.export>org.aspectj*;version=1.9.21.1;-split-package:=merge-first,
aj*;version=1.9.21.1</servicemix.osgi.export>
<pkgArtifactId>aspectj</pkgArtifactId>
<servicemix.osgi.import.pkg>javax.xml*,
org.xml.sax*,
com.bea.jvm;resolution:=optional,
org.objectweb.asm;resolution:=optional,
org.apache.commons.logging;resolution:=optional,
aj.org.objectweb.asm;resolution:=optional</servicemix.osgi.import.pkg>
</properties>
</project>