This is an automated email from the git hooks/post-receive script. henrich pushed a commit to branch debian/sid in repository jruby-joni.
commit 4f7605baa67eed3c667a7f113f2d9eb2025a10cb Author: Nick Sieger <[email protected]> Date: Mon Jan 7 01:50:58 2008 +0000 Move pom git-svn-id: http://svn.codehaus.org/jruby/joni/trunk@5519 961051c9-f516-0410-bf72-c9f7e237a7b7 --- pom.xml | 114 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..c03f93a --- /dev/null +++ b/pom.xml @@ -0,0 +1,114 @@ +<?xml version="1.0" ?> +<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> + <groupId>org.joni</groupId> + <artifactId>joni</artifactId> + <packaging>jar</packaging> + <version>1.0</version> + <name>Joni</name> + <description> + Java port of Oniguruma: http://www.geocities.jp/kosako3/oniguruma + that uses byte arrays directly instead of java Strings and chars + </description> + + <issueManagement> + <system>JIRA</system> + <url>http://jira.codehaus.org/browse/JRUBY</url> + </issueManagement> + + <scm> + <connection>scm:svn:http://svn.codehaus.org/jruby</connection> + <developerConnection>scm:svn:https://svn.codehaus.org/jruby</developerConnection> + <url>http://svn.codehaus.org/jruby</url> + </scm> + + <licenses> + <license> + <name>MIT License</name> + <url>http://www.opensource.org/licenses/mit-license.php</url> + <distribution>repo</distribution> + </license> + </licenses> + + <distributionManagement> + <repository> + <id>codehaus-jruby-repository</id> + <name>JRuby Central Repository</name> + <url>dav:https://dav.codehaus.org/repository/jruby</url> + </repository> + <snapshotRepository> + <id>codehaus-jruby-snapshot-repository</id> + <name>JRuby Central Development Repository</name> + <url>dav:https://dav.codehaus.org/snapshots.repository/jruby</url> + </snapshotRepository> + <site> + <id>codehaus-jruby-site</id> + <name>JRuby Maven site</name> + <url>dav:https://dav.codehaus.org/jruby/info</url> + </site> + </distributionManagement> + + <repositories> + <repository> + <id>codehaus</id> + <name>Codehaus Repository</name> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>false</enabled> + </snapshots> + <url>http://repository.codehaus.org</url> + </repository> + </repositories> + + <developers> + <developer> + <id>lopex</id> + <name>Marcin Mielzynski</name> + <email>[email protected]</email> + </developer> + </developers> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <sourceDirectory>src</sourceDirectory> + <testSourceDirectory>test</testSourceDirectory> + <finalName>joni</finalName> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <includes> + <include>**/TestJoni.java</include> + </includes> + </configuration> + </plugin> + <plugin> + <artifactId>maven-jar-plugin</artifactId> + <configuration> + <archive> + <manifestFile>MANIFEST.MF</manifestFile> + </archive> + </configuration> + </plugin> + </plugins> + </build> +</project> -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jruby-joni.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

