You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2012/01/20 16:03:51 UTC

svn commit: r1233939 - in /servicemix/smx4/bundles/trunk: ./ japex-1.2.4/ japex-1.2.4/src/ japex-1.2.4/src/main/ japex-1.2.4/src/main/resources/ japex-1.2.4/src/main/resources/OSGI-INF/

Author: jbonofre
Date: Fri Jan 20 15:03:51 2012
New Revision: 1233939

URL: http://svn.apache.org/viewvc?rev=1233939&view=rev
Log:
[SMX4-1057] Create OSGi bundle for japex 1.2.4

Added:
    servicemix/smx4/bundles/trunk/japex-1.2.4/
    servicemix/smx4/bundles/trunk/japex-1.2.4/pom.xml
    servicemix/smx4/bundles/trunk/japex-1.2.4/src/
    servicemix/smx4/bundles/trunk/japex-1.2.4/src/main/
    servicemix/smx4/bundles/trunk/japex-1.2.4/src/main/resources/
    servicemix/smx4/bundles/trunk/japex-1.2.4/src/main/resources/OSGI-INF/
    servicemix/smx4/bundles/trunk/japex-1.2.4/src/main/resources/OSGI-INF/bundle.info
Modified:
    servicemix/smx4/bundles/trunk/pom.xml

Added: servicemix/smx4/bundles/trunk/japex-1.2.4/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/japex-1.2.4/pom.xml?rev=1233939&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/japex-1.2.4/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/japex-1.2.4/pom.xml Fri Jan 20 15:03:51 2012
@@ -0,0 +1,108 @@
+<?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>8-SNAPSHOT</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.japex</artifactId>
+    <version>1.2.4_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description>
+
+    <properties>
+        <pkgGroupId>com.sun.japex</pkgGroupId>
+        <pkgArtifactId>japex</pkgArtifactId>
+        <pkgVersion>1.2.4</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            com.sun.japex
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+            !com.sun.japex*,
+            javax.mail,
+            javax.mail.internet,
+            javax.xml.bind,
+            javax.xml.bin.annotation,
+            javax.xml.namespace,
+            javax.xml.parsers,
+            javax.xml.transform,
+            javax.xml.transform.dom,
+            javax.xml.transform.sax,
+            javax.xml.path,
+            org.apache.tools.ant*;resolution:=optional,
+            org.jfree.chart*,
+            org.jfree.data*,
+            org.slf4j*;resolution:=optional,
+            *
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+        </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}:${pkgArtifactId}</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                            </filters>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Added: servicemix/smx4/bundles/trunk/japex-1.2.4/src/main/resources/OSGI-INF/bundle.info
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/japex-1.2.4/src/main/resources/OSGI-INF/bundle.info?rev=1233939&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/japex-1.2.4/src/main/resources/OSGI-INF/bundle.info (added)
+++ servicemix/smx4/bundles/trunk/japex-1.2.4/src/main/resources/OSGI-INF/bundle.info Fri Jan 20 15:03:51 2012
@@ -0,0 +1,26 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Profiling is an art, an art that it is very hard to master. Writing micro-benchmarks is one of the many tools
+    available to programmers today. Micro-benchmarks are simple benchmarks that rarely involve complicated deployments
+    and are often used to test specific parts of an application. They are also characterized by the use of wall-clock
+    blocks: start a clock, run the code, stop the clock and report the result.
+
+    The lack of common tools for writing micro-benchmarks makes comparing results published by different people
+    impractical. Questions such as "When did you start/stop the clock?" or "What exactly did you include in the
+    wall-clock block?" or "Are you reporting latency or throughput?" often arise.
+
+    Japex is a simple yet powerful tool to write Java-based micro-benchmarks. It started as a simple project primarily
+    aimed at testing XML and Fast Infoset performance, but has evolved into a rather sophisticated framework with
+    support for XML and HTML output as well as various types of charts for displaying the results. It is similar in
+    spirit to JUnit in that if factors out most of the repetitive programming logic that is necessary to write
+    micro-benchmarks. This logic includes loading and initializing multiple drivers, warming up the VM, forking multiple
+    threads, timing the inner loop, etc. One of the key design goals for Japex was extensibility. Via the use of a
+    simple model of input and output parameters, it is possible to write micro-benchmarks to test practically anything.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://japex.java.net/\u001B[0m

Modified: servicemix/smx4/bundles/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/pom.xml?rev=1233939&r1=1233938&r2=1233939&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/pom.xml Fri Jan 20 15:03:51 2012
@@ -69,6 +69,7 @@
       <module>guava-11.0.1</module>
       <module>hadoop-core-1.0.0</module>
       <module>jain-sip-ri-1.2.166</module>
+      <module>japex-1.2.4</module>
     </modules>
 
 </project>