
is.runtimes.dflt.objectstores.nosql.0.2.0-incubating.source-code.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nosql Show documentation
Show all versions of nosql Show documentation
Provides file based persistence for a standalone application using a NOSQL database.
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <!-- 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. --> <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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.isis.runtimes.dflt</groupId> <artifactId>objectstores</artifactId> <version>0.2.0-incubating</version> </parent> <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId> <artifactId>nosql</artifactId> <name>Default Runtime NOSQL ObjectStore</name> <description> Provides file based persistence for a standalone application using a NOSQL database. </description> <properties> <siteBaseDir>../../../..</siteBaseDir> <relativeUrl>runtimes/dflt/objectstores/nosql/</relativeUrl> <docbkxGuideTitle>Apache Isis Default Runtime NOSQL ObjectStore</docbkxGuideTitle> <docbkxGuideSubTitle>Configuration and Deployment Guide</docbkxGuideSubTitle> <docbkxGuideName>isis-nosql-objectstore</docbkxGuideName> </properties> <!-- used in Site generation for relative references. --> <url>http://incubator.apache.org/isis/${relativeUrl}</url> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <testFailureIgnore>true</testFailureIgnore> <excludes> <exclude>**/MongoStateReaderTest.java</exclude> <exclude>**/MongoDbTest.java</exclude> <exclude>**/MongoStateWriterTest.java</exclude> </excludes> </configuration> </plugin> <!-- REVIEW: have removed, cos for some bizarre reason causes maven to restart the build??? <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>assembly</goal> </goals> </execution> </executions> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <copy todir="target/config" preservelastmodified="true"> <fileset dir="config" /> </copy> <copy file="server.sh" todir="target" /> <chmod file="target/server.sh" perm="ugo+rx" /> </tasks> </configuration> </execution> </executions> </plugin> --> <plugin> <groupId>com.agilejava.docbkx</groupId> <artifactId>docbkx-maven-plugin</artifactId> <inherited>false</inherited> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven-project-info-reports-plugin}</version> <inherited>false</inherited> <configuration> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> </configuration> <reportSets> <reportSet> <inherited>false</inherited> <reports> <report>dependency-management</report> <report>dependencies</report> <report>dependency-convergence</report> <report>plugins</report> <report>summary</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <repositories> <repository> <id>Maven Central Repository (UK Mirror)</id> <url>http://uk.maven.org/maven2</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <dependencyManagement> <dependencies> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongo-java-driver</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20090211</version> </dependency> <dependency> <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> <version>1.7</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- compile dependencies --> <dependency> <groupId>org.apache.isis.runtimes.dflt</groupId> <artifactId>runtime</artifactId> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> </dependency> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongo-java-driver</artifactId> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> </dependency> <dependency> <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> </dependency> <!-- test dependencies --> <dependency> <groupId>org.apache.isis.runtimes.dflt</groupId> <artifactId>runtime</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <!-- TODO: remove this dependency when can --> <dependency> <groupId>org.apache.isis.progmodels</groupId> <artifactId>dflt</artifactId> <version>0.2.0-incubating</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId> <artifactId>dflt</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId> <artifactId>dflt</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId> <artifactId>dflt</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jmock</groupId> <artifactId>jmock-legacy</artifactId> <scope>test</scope> </dependency> </dependencies> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy