Repository: servicemix-bundles Updated Branches: refs/heads/master 853791c4d -> fe89a575b
[SM-3249] Create OSGi bundle for aspectj 1.8.10 Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/fe89a575 Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/fe89a575 Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/fe89a575 Branch: refs/heads/master Commit: fe89a575bb9a1edcf38c4e164dcf85fe588af69e Parents: 853791c Author: Jean-Baptiste Onofré <[email protected]> Authored: Sun Feb 19 21:13:11 2017 +0100 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Sun Feb 19 21:13:11 2017 +0100 ---------------------------------------------------------------------- aspectj-1.8.10/pom.xml | 130 +++++++++++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 17 +++ pom.xml | 1 + 3 files changed, 148 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/fe89a575/aspectj-1.8.10/pom.xml ---------------------------------------------------------------------- diff --git a/aspectj-1.8.10/pom.xml b/aspectj-1.8.10/pom.xml new file mode 100644 index 0000000..60486dd --- /dev/null +++ b/aspectj-1.8.10/pom.xml @@ -0,0 +1,130 @@ +<?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/xsd/maven-4.0.0.xsd"> + + <!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You 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. + --> + + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>bundles-pom</artifactId> + <version>13-SNAPSHOT</version> + <relativePath>../bundles-pom/pom.xml</relativePath> + </parent> + + <groupId>org.apache.servicemix.bundles</groupId> + <artifactId>org.apache.servicemix.bundles.aspectj</artifactId> + <packaging>bundle</packaging> + <version>1.8.10_1-SNAPSHOT</version> + <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> + <description>This OSGi bundle wraps aspectjrt and aspectjweaver ${pkgVersion} jar files.</description> + + <scm> + <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> + <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> + <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> + <tag>HEAD</tag> + </scm> + + <properties> + <pkgGroupId>org.aspectj</pkgGroupId> + <pkgArtifactId>aspectj</pkgArtifactId> + <pkgVersion>1.8.10</pkgVersion> + <servicemix.osgi.export> + org.aspectj*;version=1.8.10;-split-package:=merge-first, + aj*;version=1.8.10 + </servicemix.osgi.export> + <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> + + <dependencies> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>aspectjrt</artifactId> + <version>${pkgVersion}</version> + </dependency> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>aspectjweaver</artifactId> + <version>${pkgVersion}</version> + </dependency> + + <!-- sources --> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>aspectjrt</artifactId> + <version>${pkgVersion}</version> + <classifier>sources</classifier> + </dependency> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>aspectjweaver</artifactId> + <version>${pkgVersion}</version> + <classifier>sources</classifier> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <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> +</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/fe89a575/aspectj-1.8.10/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/aspectj-1.8.10/src/main/resources/OSGI-INF/bundle.info b/aspectj-1.8.10/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..31b0363 --- /dev/null +++ b/aspectj-1.8.10/src/main/resources/OSGI-INF/bundle.info @@ -0,0 +1,17 @@ +\u001B[1mSYNOPSIS\u001B[0m + ${project.description} + + Original Maven URLs: + \u001B[33mmvn:${pkgGroupId}/aspectjrt/${pkgVersion}\u001B[0m + \u001B[33mmvn:${pkgGroupId}/aspectjweaver/${pkgVersion}\u001B[0m + +\u001B[1mDESCRIPTION\u001B[0m + Some aspects of system implementation, such as logging, error handling, standards enforcement + and feature variations are notoriously difficult to implement in a modular way. The result is that code + is tangled across a system and leads to quality, productivity and maintenance problems. AspectJ is a + seamless aspect-oriented extension to the Java programming language that enables clean modularization of + these 'crosscutting concerns'. For the best AspectJ development experience, the AspectJ Development Tools + (AJDT) project provides Eclipse platform based tool support for AOSD with AspectJ. + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://www.eclipse.org/aspectj/\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/fe89a575/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 22647be..74376ba 100644 --- a/pom.xml +++ b/pom.xml @@ -91,6 +91,7 @@ <module>lucene-sandbox-6.4.1</module> <module>ant-1.10.1</module> <module>docker-java-3.0.7</module> + <module>aspectj-1.8.10</module> </modules> </project>
