domino-jna-indexer-sqlite
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.mindoo.domino</groupId> <artifactId>domino-jna-indexer-sqlite</artifactId> <version>0.9.53</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> <artifactId>domino-jna-indexer-sqlite</artifactId> <packaging>jar</packaging> <parent> <groupId>com.mindoo.domino</groupId> <artifactId>domino-jna-base</artifactId> <version>0.9.53</version> </parent> <name>Domino JNA Add-on for data indexing with SQLite</name> <description>Add-on project for Domino JNA that provides utility classes to sync Domino data incrementally with SQLite.</description> <url>https://github.com/klehmann/domino-jna</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Karsten Lehmann</name> <email>karsten.lehmann@mindoo.de</email> <organization>Mindoo GmbH</organization> <organizationUrl>http://www.mindoo.de</organizationUrl> </developer> <developer> <name>Tammo Riedinger</name> <email>tammo.riedinger@mindoo.de</email> <organization>Mindoo GmbH</organization> <organizationUrl>http://www.mindoo.de</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/klehmann/domino-jna.git</connection> <developerConnection>scm:git:ssh://github.com:klehmann/domino-jna.git</developerConnection> <url>https://github.com/klehmann/domino-jna.git</url> </scm> <profiles> <profile> <id>release</id> <distributionManagement> <snapshotRepository> <id>nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.5.1</version> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> <configuration> <serverId>nexus-releases</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <!-- explicit matching using the staging profile id --> <!-- <stagingProfileId>49650ad66a37c6</stagingProfileId> --> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>qa</id> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>install</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>com.mindoo.domino</groupId> <artifactId>domino-jna</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.mindoo.domino</groupId> <artifactId>domino-jna-indexer-sql</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.ibm</groupId> <artifactId>domino-api-binaries</artifactId> <version>${domino.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xerial</groupId> <artifactId>sqlite-jdbc</artifactId> <version>3.21.0.1</version> </dependency> </dependencies> <build> <plugins> <!-- collect all required libs to use the project standalone --> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>install</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <!-- Note: Running the tests via Maven build does not work yet (tested on Mac Notes Client 64 bit; we still need to figure out why --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> <configuration> <forkMode>once</forkMode> <useSystemClassLoader>false</useSystemClassLoader> <argLine>-Xmx512m -Djava.library.path="${DOMINODIR}" -Djna.library.path="${DOMINODIR}" ${JVMPARAMS}</argLine> <environmentVariables> <PATH>${DOMINODIR}${path.separator}${env.PATH}</PATH> <LD_LIBRARY_PATH>${DOMINODIR}${path.separator}${env.LD_LIBRARY_PATH}</LD_LIBRARY_PATH> <DYLD_LIBRARY_PATH>${DOMINODIR}${path.separator}${env.DYLD_LIBRARY_PATH}</DYLD_LIBRARY_PATH> <Notes_ExecDirectory>${DOMINODIR}</Notes_ExecDirectory> <NotesINI>${NOTESINI}</NotesINI> </environmentVariables> </configuration> </plugin> <!-- generate javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>