This is an automated email from the git hooks/post-receive script. nomadium pushed a commit to branch master in repository yecht.
commit 9cffa7ee0fbd103f1ebae4f9e16781864b059451 Author: Charles Oliver Nutter <[email protected]> Date: Wed Jul 10 09:33:30 2013 -0500 Initial pom.xml to get artifact releasable. --- pom.xml | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..0aea3d3 --- /dev/null +++ b/pom.xml @@ -0,0 +1,77 @@ +<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> + + <groupId>org.jruby</groupId> + <artifactId>yecht</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>yecht</name> + <url>https://github.com/jruby/yecht</url> + + <parent> + <groupId>org.sonatype.oss</groupId> + <artifactId>oss-parent</artifactId> + <version>7</version> + </parent> + + <scm> + <connection>scm:git:https://github.com/jruby/jay-yydebug.git</connection> + <developerConnection>scm:git:[email protected]:jruby/jay-yydebug</developerConnection> + <url>https://github.com/jruby/jay-yydebug</url> + </scm> + + <build> + <sourceDirectory>${basedir}/src/main</sourceDirectory> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <version>1.8</version> + <executions> + <execution> + <id>add-ext</id> + <phase>initialize</phase> + <goals> + <goal>add-source</goal> + </goals> + <configuration> + <sources> + <source>${basedir}/ext/ruby/src/java</source> + </sources> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + <resources> + <resource> + <directory>ext/ruby/lib</directory> + <includes> + <include>**/*rb</include> + </includes> + </resource> + </resources> + </build> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.jruby</groupId> + <artifactId>jruby-core</artifactId> + <version>[1.7.0,)</version> + <scope>provided</scope> + </dependency> + </dependencies> + + +</project> -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/yecht.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

