jruby-gradle-test-plugin/jruby-gradle-rspec-plugin/src/test/mavenrepo/rubygems/jar-dependencies/0.1.3/jar-dependencies-0.1.3.pom

66 lines
2.1 KiB
Plaintext

<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.1.3</version>
<packaging>gem</packaging>
<name>manage jar dependencies for gems</name>
<url>https://github.com/mkristian/jar-dependencies</url>
<description>manage jar dependencies for gems and keep track which jar was already loaded using maven artifact coordinates. it warns on version conflicts and loads only ONE jar assuming the first one is compatible to the second one otherwise your project needs to lock down the right version.</description>
<licenses>
<license>
<name>MIT</name>
</license>
</licenses>
<developers>
<developer>
<name>christian meier</name>
<email>mkristian@web.de</email>
</developer>
</developers>
<scm>
<connection>https://github.com/mkristian/jar-dependencies.git</connection>
<url>https://github.com/mkristian/jar-dependencies</url>
</scm>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<jruby.plugins.version>1.0.4</jruby.plugins.version>
</properties>
<dependencies>
<dependency>
<groupId>rubygems</groupId>
<artifactId>minitest</artifactId>
<version>[5.3,5.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rake</artifactId>
<version>[10.2,10.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<extensions>
<extension>
<groupId>de.saumya.mojo</groupId>
<artifactId>gem-extension</artifactId>
<version>${jruby.plugins.version}</version>
</extension>
</extensions>
<directory>${basedir}/pkg</directory>
<plugins>
<plugin>
<groupId>de.saumya.mojo</groupId>
<artifactId>gem-maven-plugin</artifactId>
<version>${jruby.plugins.version}</version>
<configuration>
<gemspec>jar-dependencies-0.1.3.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>