oaiharvester
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.dnb</groupId> <artifactId>oaiharvester</artifactId> <version>3.0.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> <name>OAI-PMH Harvester Manager: core classes</name> <groupId>de.dnb</groupId> <artifactId>oaiharvester</artifactId> <version>3.0.0</version> <packaging>jar</packaging> <description> A Java implementation of OAI-PMH 2.0 specification. See http://www.openarchives.org/pmh/ </description> <url>http://oaiharvestmangr.sourceforge.net/</url> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly Free and Open Source Software (FOSS) license</comments> </license> </licenses> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <organization> <name>Deutsche Nationalbibliothek / German National Library</name> <url>http://dnb.de</url> </organization> <developers> <developer> <id>karaca</id> <name>Kadir Karaca Koçer</name> <url>http://sourceforge.net/users/karaca</url> <organization>Deutsche Nationalbibliothek / German National Library</organization> <organizationUrl>http://dnb.de</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>+1</timezone> <properties> <picUrl>https://secure.gravatar.com/avatar/15ada2c558ecdd29c092e9b0063806c3.png</picUrl> </properties> </developer> <developer> <id>juergen_kett</id> <name>Jürgen Kett</name> <url>http://sourceforge.net/users/juergen_kett</url> <organization>Deutsche Nationalbibliothek / German National Library</organization> <organizationUrl>http://dnb.de</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>+1</timezone> <properties> <picUrl /> </properties> </developer> <developer> <id>m-neubauer-dnb</id> <name>Matthias Neubauer</name> <url>http://sourceforge.net/users/m-neubauer-dnb</url> <organization>Deutsche Nationalbibliothek / German National Library</organization> <organizationUrl>http://dnb.de</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> <properties> <picUrl>http://profile.ak.fbcdn.net/hprofile-ak-snc4/41396_100001386767612_4820_n.jpg</picUrl> </properties> </developer> <developer> <id>t-heck</id> <name>Timo Heck</name> <url>http://sourceforge.net/users/t-heck</url> <organization>Deutsche Nationalbibliothek / German National Library</organization> <organizationUrl>http://dnb.de</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> <properties> <picUrl /> </properties> </developer> <developer> <id>thomasha09</id> <name>Thomas Haidlas</name> <url>http://sourceforge.net/users/thomasha09</url> <organization>Deutsche Nationalbibliothek / German National Library</organization> <organizationUrl>http://dnb.de</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> <properties> <picUrl /> </properties> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <scm> <url>https://oaiharvestmangr.svn.sourceforge.net/svnroot/oaiharvestmangr/oai-harvester/trunk</url> <connection>scm:svn:https://oaiharvestmangr.svn.sourceforge.net/svnroot/oaiharvestmangr/oai-harvester/trunk</connection> <developerConnection>scm:svn:https://oaiharvestmangr.svn.sourceforge.net/svnroot/oaiharvestmangr/oai-harvester/trunk</developerConnection> <tag>HEAD</tag> </scm> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Sonatype OSS Maven Repository : Releases</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype OSS Maven Repository : Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> <uniqueVersion>true</uniqueVersion> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.7.2</version> <configuration> <skipTests>false</skipTests> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <show>public</show> <nohelp>true</nohelp> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.0</version> <configuration> <locales>de,en</locales> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>de.dnb</groupId> <artifactId>scheduled-task-manager</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>de.dnb</groupId> <artifactId>oaipmh-spec</artifactId> <version>2.0.1</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> <version>3.1.2.RELEASE</version> </dependency> <!-- <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>3.1.2.RELEASE</version> </dependency> --> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>3.6.10.Final</version> </dependency> <!-- <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.1.3</version> </dependency> --> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>org.apache.xmlbeans</groupId> <artifactId>xmlbeans</artifactId> <version>2.6.0</version> </dependency> <!-- Test dependencies. Mainly JDBC drivers for different RDBMS <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.4</version> <scope>test</scope> </dependency> --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.21</version> <scope>provided</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> </dependencies> </project>