olap4j-xmlaserver
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.olap4j</groupId> <artifactId>olap4j-xmlaserver</artifactId> <version>1.2.0</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> <!-- The basics. --> <groupId>org.olap4j</groupId> <artifactId>olap4j-xmlaserver</artifactId> <version>1.2.0</version> <packaging>bundle</packaging> <!-- More project information. --> <name>olap4j-xmlaserver</name> <description>XML for Analysis (XMLA) server based upon olap4j connections</description> <url>http://github.com/olap4j/olap4j-xmlaserver</url> <inceptionYear>2012</inceptionYear> <organization> <name>olap4j</name> <url>http://www.olap4j.org</url> </organization> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> </license> </licenses> <developers> <developer> <id>julianhyde</id> <name>Julian Hyde</name> <email>julianhyde@gmail.com</email> <url>https://github.com/julianhyde</url> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>-8</timezone> <properties/> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <!-- Environment settings. --> <issueManagement/> <scm> <connection>scm:git:git://github.com/olap4j/olap4j-xmlaserver.git</connection> <developerConnection>scm:git:git@github.com:olap4j/olap4j-xmlaserver.git</developerConnection> <url>http://github.com/olap4j/olap4j-xmlaserver/tree/master</url> </scm> <!-- Dependencies. --> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.14</version> </dependency> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.2.1</version> </dependency> <dependency> <groupId>org.olap4j</groupId> <artifactId>olap4j</artifactId> <version>1.2.0</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <scope>provided</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8.1</version> <configuration> <links> <link>http://docs.oracle.com/javase/7/docs/api/</link> </links> </configuration> </plugin> </plugins> </reporting> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <site> <id>olap4j.website</id> <name>Olap4j Website</name> <url>file:/home/jhyde/web2/olap4j</url> </site> </distributionManagement> <repositories/> <build> <defaultGoal>package</defaultGoal> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes/> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Export-Package>mondrian.xmla.impl,mondrian.xmla,org.olap4j.xmla.server.impl</Export-Package> </instructions> </configuration> </plugin> </plugins> </build> </project>