From 0c5af8e2d6cf47a9d048bfacb74325fb4c76f56b Mon Sep 17 00:00:00 2001 From: Jakub Skoczen Date: Mon, 22 Feb 2010 13:05:21 +0100 Subject: [PATCH] Fix link --- examples/zgate/doc/ARTICLE | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/examples/zgate/doc/ARTICLE b/examples/zgate/doc/ARTICLE index 016a5bc..caa5b84 100644 --- a/examples/zgate/doc/ARTICLE +++ b/examples/zgate/doc/ARTICLE @@ -4,7 +4,7 @@ BUILDING A SIMPLE HTTP-TO-Z3950 GATEWAY USING YAZ4J AND TOMCAT [Yaz4J](http://www.indexdata.com/yaz4j) is a wrapper library over the client-specific parts of YAZ, a C-based Z39.50 toolkit, and allows you to use the ZOOM API directly from Java. Initial version of Yaz4j has been written -by Rob Styles from [Talis][http://www.talis.com] and the project is now +by Rob Styles from [Talis](http://www.talis.com) and the project is now developed and maintained at IndexData. [ZOOM](http://zoom.z3950.org/api/zoom-1.4.html) is a relatively straightforward API and with a few lines of code you can write a basic application that can @@ -93,7 +93,10 @@ application (peanuts :)). At IndexData we use Maven for managing builds of our Java software components but Maven is also a great tool for quickly starting up a project. To generate a skeleton for our webapp use the Maven archetype plugin: - mvn -DarchetypeVersion=1.0.1 -Darchetype.interactive=false -DarchetypeArtifactId=webapp-jee5 -DarchetypeGroupId=org.codehaus.mojo.archetypes -Dpackage=com.indexdata.zgate -DgroupId=com.indexdata -DartifactId=zgate archetype:generate --batch-mode + mvn -DarchetypeVersion=1.0.1 -Darchetype.interactive=false \ + -DarchetypeArtifactId=webapp-jee5 -DarchetypeGroupId=org.codehaus.mojo.archetypes \ + -Dpackage=com.indexdata.zgate -DgroupId=com.indexdata -DartifactId=zgate \ + archetype:generate --batch-mode This will generate a basic webapp project structure: -- 1.7.10.4