From: Bryan T. <tho...@us...> - 2007-03-20 14:59:35
|
Update of /cvsroot/cweb/lgpl-utils In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv16387 Added Files: maven.xml project.xml project.properties Log Message: Added POM and junit JAR to facilitate builds of the JAR artifact. --- NEW FILE: maven.xml --- <project default="build" xmlns:j="jelly:core" xmlns:artifact="artifact" > <!-- --> <!-- Generate FAQ from xdocs/faq.fml. --> <!-- --> <preGoal name="xdoc:jelly-transform"> <attainGoal name="faq"/> </preGoal> <!-- --> <!-- Conditionally disable linkcheck based on a property. --> <!-- --> <postGoal name="xdoc:register-reports"> <j:if test="${maven.linkcheck.disable}"> <attainGoal name="maven-linkcheck-plugin:deregister"/> <echo>linkcheck is disabled.</echo> </j:if> </postGoal> <!-- --> <!-- Conditionally disable checkstyle based on a property. --> <!-- --> <postGoal name="xdoc:register-reports"> <j:if test="${maven.checkstyle.disable}"> <attainGoal name="maven-checkstyle-plugin:deregister"/> <echo>checkstyle is disabled.</echo> </j:if> </postGoal> <!-- --> <!-- Cause JAR to be built for install goal. --> <!-- --> <goal name="install"> <attainGoal name="jar"/> <artifact:install artifact="${maven.build.dir}/${maven.final.name}.jar" type="jar" project="${pom}" /> </goal> </project> --- NEW FILE: project.properties --- # The cweb artifacts and artifacts from a few open source projects # that are not already up on ibiblio may be automatically downloaded # from the cweb maven repository on source forge or on # proto.cognitiveweb.org. If the license does not permit # redistrubution, then you will have to get the artifact from its # authoritative source. maven.repo.remote=http://www.ibiblio.org/maven/,http://proto.cognitiveweb.org/maven-repository # Links to external packages. The package-list javadoc file for # directory referenced by the (relative) URLs MUST exist at the time # that the javadoc for this package is generated. maven.javadoc.links=\ http://java.sun.com/j2se/1.4.2/docs/api \ , http://www.junit.org/junit/javadoc/3.8.1/ maven.javadoc.offlineLinks=\ http://java.sun.com/j2se/1.4.2/docs/api#/j2sdk1.4.1_02/docs/api \ , http://www.junit.org/junit/javadoc/3.8#/usr/local/junit3.8.1/javadoc --- NEW FILE: project.xml --- <?xml version="1.0" encoding="ISO-8859-1"?> <project> <id>lgpl-utils</id> <name>LGPL Utilities</name> <package>lgpl-utils</package> <extends>../cweb/project.xml</extends> <groupId>org.CognitiveWeb</groupId> <currentVersion>1.0-b1-dev</currentVersion> <organization> <name>CognitiveWeb</name> <url>http://www.cognitiveweb.org/</url> <logo>http://www.cognitiveweb.org/Images/cogweb-logo.jpg</logo> </organization> <!-- required per-POM metadata. --> <inceptionYear>2002</inceptionYear> <url>http://www.cognitiveweb.org/</url> <logo>http://www.cognitiveweb.org/Images/tagline.gif</logo> <!-- The short description is used in the JAR manifest. For --> <!-- compatibility reasons, no leading/trailing newlines and --> <!-- 72 character length limit. --> <shortDescription>LGPL Utilities</shortDescription> <description> <![CDATA[ <p>This module is a collection of interesting LGPL utilities that have been extracted from larger LGPL projects and repackaged for light weight deployment. </p> ]]> </description> <versions> <!-- <version> <id>1.1-b2-dev</id> <name>1.1-b2</name> <tag>JUNIT_EXT_1_1_B2</tag> </version> --> </versions> <!-- copy down inheritance applies. --> <siteAddress>www.cognitiveweb.org</siteAddress> <siteDirectory> /home/groups/c/cw/cweb/htdocs/technology/projects/${pom.artifactId} </siteDirectory> <!-- copy down inheritance applies. --> <distributionSite>www.sourceforge.net</distributionSite> <distributionDirectory>/projects/cweb</distributionDirectory> <!-- copy down inheritance applies. --> <issueTrackingUrl> http://jira.cognitiveweb.org/browse/JUNITEXT </issueTrackingUrl> <!-- copy down inheritance applies. --> <repository> <connection> scm:cvs:pserver:anonymous@${maven.scm.cvs.host}:/cvsroot/cweb:lgpl-utils </connection> <developerConnection> scm:cvs:ext:user@${maven.scm.cvs.host}:/cvsroot/cweb:lgpl-utils </developerConnection> <url>http://cweb.cvs.sourceforge.net/cweb/lgpl-utils</url> </repository> <!-- Note: This module is under the LGPL license. --> <licenses> <license> <name>LGPL</name> <url>http://www.gnu.org/licenses/lgpl.html</url> <distribution>manual</distribution> </license> </licenses> <!-- copy down inheritance applies. --> <mailingLists> <mailingList> <name>Announce List</name> <subscribe> http://lists.sourceforge.net/lists/listinfo/cweb-announce </subscribe> <unsubscribe> http://lists.sourceforge.net/lists/listinfo/cweb-announce </unsubscribe> <archive> http://sourceforge.net/mailarchive/forum.php?forum=cweb-announce </archive> </mailingList> <mailingList> <name>Developer List</name> <subscribe> http://lists.sourceforge.net/lists/listinfo/cweb-developer </subscribe> <unsubscribe> http://lists.sourceforge.net/lists/listinfo/cweb-developer </unsubscribe> <archive> http://sourceforge.net/mailarchive/forum.php?forum=cweb-developer </archive> </mailingList> </mailingLists> <!-- copy down inheritance applies. --> <developers> <developer> <name>Bryan Thompson</name> <id>bryan</id> <email>tho...@us...</email> <organization>SYSTAP, LLC</organization> <!-- East coast. --> <timezone>-5</timezone> </developer> </developers> <contributors> <!-- <contributor> <name>...</name> <id>...</id> <email>...</email> <organization>...</organization> </contributor> --> </contributors> <!-- project-specific data. --> <dependencies> <!-- junit (tests only) --> <dependency> <id>junit</id> <version>3.8.1</version> <url>http://www.junit.org/</url> </dependency> </dependencies> <build> <nagEmailAddress> tho...@us... </nagEmailAddress> <sourceDirectory>${basedir}/src/java</sourceDirectory> <unitTestSourceDirectory>${basedir}/src/test</unitTestSourceDirectory> <aspectSourceDirectory/> <!-- Unit test cases --> <unitTest> <includes> <include>**/src/test/it/unimi/dsi/mg4j/util/BloomFilterTest.java</include> </includes> <!-- <excludes> <exclude>**/ProxyTestCase.java</exclude> </excludes> --> <!-- Resources for test cases are declared here. --> <resources> </resources> </unitTest> <!-- J A R R E S O U R C E S --> <resources> <!-- <resource> <directory>${basedir}/src/resources/logging</directory> <includes> <include>log4j.properties</include> </includes> </resource> --> </resources> <jars> </jars> </build> </project> |