pivot4j-pentaho
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.pivot4j</groupId> <artifactId>pivot4j-pentaho</artifactId> <version>0.9</version> </dependency>
<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> <groupId>org.pivot4j</groupId> <artifactId>pivot4j</artifactId> <version>0.9</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>pivot4j-pentaho</artifactId> <name>Pivot4J Pentaho</name> <description>Pivot4J Pentatho is an OLAP analysis plugin for BI platform based on Pivot4J library.</description> <packaging>jar</packaging> <properties> <pentaho.plugin.branch>Development</pentaho.plugin.branch> <pentaho.plugin.buildId>${maven.build.timestamp}</pentaho.plugin.buildId> <maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <outputDirectory>${project.build.directory}/plugin/lib</outputDirectory> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.portals.jetspeed-2</groupId> <artifactId>jetspeed-unpack-maven-plugin</artifactId> <version>${version.plugin.jetspeed}</version> <executions> <execution> <phase>validate</phase> <goals> <goal>unpack</goal> </goals> <configuration> <unpack> <artifact>org.pivot4j:pivot4j-analytics:war</artifact> <overwrite>true</overwrite> <targetDirectory>${project.build.directory}/plugin</targetDirectory> <resources> <resource> <path /> <destination>webapp</destination> <include>*.xhtml</include> </resource> <resource> <path>WEB-INF</path> <destination>webapp/WEB-INF</destination> <include>*.xml</include> </resource> <resource> <path>WEB-INF/lib</path> <destination>lib</destination> <include>*.jar</include> <exclude>olap4j*,xercesImpl*,xml-apis*,xalan*,xmlParser*,eigenbase*,derby*,mondrian*,commons-logging*,log4j*,slf4j*</exclude> </resource> <resource> <path>resources</path> <destination>webapp/resources</destination> <include>**/*</include> </resource> </resources> </unpack> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.pivot4j</groupId> <artifactId>pivot4j-analytics</artifactId> <version>${project.version}</version> <type>war</type> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>${version.plugin.dependency}</version> <executions> <execution> <id>copy</id> <phase>package</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.pivot4j</groupId> <artifactId>pivot4j-analytics</artifactId> <version>${project.version}</version> <classifier>classes</classifier> <overWrite>true</overWrite> <destFileName>pivot4j-analytics-${project.version}.jar</destFileName> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory}/plugin/lib</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>xml-maven-plugin</artifactId> <version>${version.plugin.xml}</version> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>transform</goal> </goals> </execution> </executions> <configuration> <transformationSets> <transformationSet> <dir>${project.build.directory}/plugin/webapp/WEB-INF</dir> <includes> <include>web.xml</include> </includes> <stylesheet>${basedir}/src/main/xsl/web.xsl</stylesheet> </transformationSet> <transformationSet> <dir>${project.build.directory}/plugin/webapp/WEB-INF</dir> <includes> <include>faces-config.xml</include> </includes> <stylesheet>${basedir}/src/main/xsl/faces-config.xsl</stylesheet> </transformationSet> </transformationSets> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${version.plugin.resources}</version> <executions> <execution> <id>copy-resources</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/plugin</outputDirectory> <overwrite>true</overwrite> <resources> <resource> <directory>${basedir}/src/main/plugin</directory> <includes> <include>*.xml</include> </includes> </resource> <resource> <directory>${basedir}/src/main</directory> <includes> <include>webapp/**</include> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>${version.plugin.assembly}</version> <configuration> <descriptor>${basedir}/src/main/assembly/plugin.xml</descriptor> <finalName>${project.artifactId}-${project.version}</finalName> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${version.plugin.javadoc}</version> <executions> <execution> <id>javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${version.plugin.source}</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.pivot4j</groupId> <artifactId>pivot4j-analytics</artifactId> <version>${project.version}</version> <classifier>classes</classifier> <exclusions> <exclusion> <groupId>org.glassfish</groupId> <artifactId>javax.faces</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.myfaces.core</groupId> <artifactId>myfaces-api</artifactId> <version>${version.myfaces}</version> </dependency> <dependency> <groupId>org.apache.myfaces.core</groupId> <artifactId>myfaces-impl</artifactId> <version>${version.myfaces}</version> </dependency> <dependency> <groupId>pentaho</groupId> <artifactId>pentaho-platform-core</artifactId> <version>${version.pentaho}</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>gnujaxp</groupId> <artifactId>gnujaxp</artifactId> </exclusion> <exclusion> <groupId>xerces</groupId> <artifactId>xmlParserAPIs</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>pentaho</groupId> <artifactId>pentaho-platform-api</artifactId> <version>${version.pentaho}</version> <scope>provided</scope> </dependency> <dependency> <groupId>pentaho</groupId> <artifactId>pentaho-platform-extensions</artifactId> <version>${version.pentaho}</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>javax.faces</groupId> <artifactId>jsf-api</artifactId> </exclusion> <exclusion> <groupId>org.apache.xbean</groupId> <artifactId>xbean</artifactId> </exclusion> <exclusion> <groupId>adaptx</groupId> <artifactId>adaptx</artifactId> </exclusion> <exclusion> <groupId>org.jvnet.staxex</groupId> <artifactId>stax-ex</artifactId> </exclusion> <exclusion> <groupId>net.sourceforge.nekohtml</groupId> <artifactId>nekohtml</artifactId> </exclusion> <exclusion> <groupId>janino</groupId> <artifactId>janino</artifactId> </exclusion> <exclusion> <groupId>xml-apis</groupId> <artifactId>xmlParserAPIs</artifactId> </exclusion> <exclusion> <groupId>xerces</groupId> <artifactId>xmlParserAPIs</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>pentaho</groupId> <artifactId>pentaho-connections</artifactId> <version>${version.pentaho}</version> <scope>provided</scope> </dependency> <dependency> <groupId>eigenbase</groupId> <artifactId>eigenbase-xom</artifactId> <version>${version.eigenbase.xom}</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>${version.servlet}</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.el</groupId> <artifactId>javax.el-api</artifactId> <version>${version.el}</version> <scope>provided</scope> </dependency> </dependencies> <repositories> <repository> <id>pentaho-third-party</id> <name>Pentaho Third Party Repository</name> <url>http://repo.pentaho.org/artifactory/third-party/</url> </repository> <repository> <id>prime-repo</id> <name>PrimeFaces Maven Repository</name> <url>http://repository.primefaces.org</url> <layout>default</layout> </repository> </repositories> </project>