Author: struberg
Date: Fri Nov 1 22:57:27 2013
New Revision: 1538079
URL: http://svn.apache.org/r1538079
Log:
was-statistics have no classes, thus we must skip the javadoc plugin
Modified:
openjpa/branches/2.3.x/openjpa-tools/openjpa-fetch-statistics-was/pom.xml
Modified:
openjpa/branches/2.3.x/openjpa-tools/openjpa-fetch-statistics-was/pom.xml
URL:
http://svn.apache.org/viewvc/openjpa/branches/2.3.x/openjpa-tools/openjpa-fetch-statistics-was/pom.xml?rev=1538079&r1=1538078&r2=1538079&view=diff
==============================================================================
--- openjpa/branches/2.3.x/openjpa-tools/openjpa-fetch-statistics-was/pom.xml
(original)
+++ openjpa/branches/2.3.x/openjpa-tools/openjpa-fetch-statistics-was/pom.xml
Fri Nov 1 22:57:27 2013
@@ -11,96 +11,104 @@
language governing permissions and limitations under the License. -->
<!-- Maven release plugin requires the project tag to be on a single line. -->
<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">
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
+ <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.apache.openjpa</groupId>
- <artifactId>openjpa-tools</artifactId>
- <version>2.3.0-SNAPSHOT</version>
- </parent>
-
- <artifactId>openjpa-fetch-statistics-was</artifactId>
- <packaging>jar</packaging>
-
- <name>OpenJPA Fetching Statistic Tool -- WAS Bundle</name>
- <description> OpenJPA tool to capture the fetching statistic data for
the persistent fields .</description>
- <inceptionYear>2012</inceptionYear>
-
- <dependencies>
- <dependency>
- <groupId>org.apache.openjpa</groupId>
- <artifactId>openjpa-fetch-statistics</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
-
- <licenses>
- <license>
- <name>Apache License 2.0</name>
-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
-
- <build>
- <!-- Skip the default jar so it doesn't overwrite the shaded
jar -->
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <executions>
- <execution>
- <phase>none</phase>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <argLine>${surefire.jvm.args}</argLine>
- <excludes>
- <!-- exclude the unit test
since the fetch statistic enhancer cannot
- be load during maven
build -->
-
<exclude>org/apache/openjpa/enhance/stats/TestFetchStatistics.java</exclude>
- </excludes>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <version>1.7.1</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <artifactSet>
- <includes>
-
<include>org.apache.openjpa:*statistics</include>
- </includes>
- </artifactSet>
- <transformers>
- <transformer
-
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
-
<manifestEntries>
-
<Fragment-Host>com.ibm.ws.jpa; bundle-version=8.0.0</Fragment-Host>
-
<Export-Package>org.apache.openjpa.enhance.stats</Export-Package>
-
<Bundle-SymbolicName>org.apache.openjpa.enhance.stats;
singleton:=true</Bundle-SymbolicName>
-
<Bundle-Name>FetchStatisticsAuxEnhancer</Bundle-Name>
-
</manifestEntries>
- </transformer>
- </transformers>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
+ <parent>
+ <groupId>org.apache.openjpa</groupId>
+ <artifactId>openjpa-tools</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>openjpa-fetch-statistics-was</artifactId>
+ <packaging>jar</packaging>
+
+ <name>OpenJPA Fetching Statistic Tool -- WAS Bundle</name>
+ <description> OpenJPA tool to capture the fetching statistic data for the
persistent fields .</description>
+ <inceptionYear>2012</inceptionYear>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.openjpa</groupId>
+ <artifactId>openjpa-fetch-statistics</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+
+ <licenses>
+ <license>
+ <name>Apache License 2.0</name>
+ <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
+
+ <build>
+ <!-- Skip the default jar so it doesn't overwrite the shaded jar -->
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>none</phase>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <argLine>${surefire.jvm.args}</argLine>
+ <excludes>
+ <!-- exclude the unit test since the fetch statistic
enhancer cannot
+ be load during maven build -->
+
<exclude>org/apache/openjpa/enhance/stats/TestFetchStatistics.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-shade-plugin</artifactId>
+ <version>1.7.1</version>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>shade</goal>
+ </goals>
+ <configuration>
+ <artifactSet>
+ <includes>
+
<include>org.apache.openjpa:*statistics</include>
+ </includes>
+ </artifactSet>
+ <transformers>
+ <transformer
+
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
+ <manifestEntries>
+ <Fragment-Host>com.ibm.ws.jpa;
bundle-version=8.0.0</Fragment-Host>
+
<Export-Package>org.apache.openjpa.enhance.stats</Export-Package>
+
<Bundle-SymbolicName>org.apache.openjpa.enhance.stats;
singleton:=true</Bundle-SymbolicName>
+
<Bundle-Name>FetchStatisticsAuxEnhancer</Bundle-Name>
+ </manifestEntries>
+ </transformer>
+ </transformers>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>