Merge pull request #5 from jruby-gradle/rspec-report

Rspec report using ci-reporter-rspec
This commit is contained in:
R. Tyler Croy 2015-08-04 01:06:08 -07:00
commit 477bb0df51
198 changed files with 4892 additions and 28 deletions

View File

@ -3,6 +3,7 @@ version = rootProject.version
configurations {
testRepo
testRepo2
}
repositories {
@ -23,12 +24,18 @@ dependencies {
testRepo ("org.jruby:jruby-complete:1.7.21") {
transitive = false
}
testRepo ('rubygems:rspec:3.3.0') {
testRepo2 ("org.jruby:jruby-complete:1.7.20") {
transitive = false
}
testRepo ('org.slf4j:slf4j-simple:1.7.7') {
transitive = true
}
testRepo ("org.spockframework:spock-core:0.7-groovy-2.0") {
testRepo ("io.dropwizard.metrics:metrics-healthchecks:3.1.0") {
transitive = false
}
testRepo ("io.dropwizard.metrics:metrics-jvm:3.1.0") {
transitive = true
}
}
ext {
@ -41,6 +48,10 @@ test {
from project.configurations.testRepo.files
into testRepoDir
}
copy {
from project.configurations.testRepo2.files
into testRepoDir
}
}
if(gradle.startParameter.isOffline()) {

View File

@ -27,6 +27,7 @@ class JRubyRSpecPlugin implements Plugin<Project> {
project.tasks.withType(RSpec) { Task task ->
project.dependencies.add(task.configuration.name, "org.jruby:jruby-complete:${task.jrubyVersion}")
project.dependencies.add(task.configuration.name, "rubygems:rspec:${task.version}")
project.dependencies.add(task.configuration.name, "rubygems:ci_reporter_rspec:1.0.+")
}
}
}

View File

@ -24,7 +24,8 @@ public class JRubyUtils {
private final Configuration config;
private final File gemDir;
private final File jrubyCompleteJar;
private Map<String, String> env = [:]
public JRubyUtils(Project project, Configuration config, String name){
this.project = project
this.config = config
@ -39,6 +40,10 @@ public class JRubyUtils {
GemUtils.setupJars(config, gemDir, GemUtils.OverwriteAction.OVERWRITE)
}
public void setEnv(Map<String,String> env) {
this.env = env
}
public void exec(List<String> arguments) {
project.javaexec {
classpath jrubyCompleteJar.absolutePath
@ -56,6 +61,7 @@ public class JRubyUtils {
environment 'GEM_PATH' : gemDir.absolutePath
environment 'JARS_HOME' : new File(gemDir.absolutePath, 'jars')
environment 'JARS_LOCK' : new File(gemDir.absolutePath, 'Jars.lock')
environment env
}
}
}

View File

@ -54,17 +54,24 @@ class RSpec extends DefaultTask {
@TaskAction
void run() {
JRubyUtils jruby = new JRubyUtils(project, configuration, name)
jruby.setEnv( 'CI_REPORTS' : "${project.buildDir}/${name}" )
jruby.setupGemsAndJars()
List<String> args = ['-S', 'rspec']
List<String> args = ['-S', 'rspec', '--require', 'ci/reporter/rspec', '--format', 'RSpec::Core::Formatters::ProgressFormatter', '--format', 'CI::Reporter::RSpecFormatter']
if (pattern != null) {
args += ['--pattern', pattern]
}
String tags = System.getProperty("${name}.tags")
if (tags != null) {
tags.split(/\s+/).each { args += ['--tag', it] }
}
String file = System.getProperty("${name}.file")
if (file != null) {
args += [file]
}
jruby.exec(args)
}
}

View File

@ -48,28 +48,31 @@ class JRubyRSpecPluginSpec extends Specification {
static Project setupProject() {
Project project = ProjectBuilder.builder().build()
//project.gradle.startParameter.offline = true
project.gradle.startParameter.offline = true
File repo = new File("src/test/mavenrepo")
println repo.absolutePath
if (!repo.exists()){
throw new RuntimeException("no repo at " + repo)
}
project.buildscript {
repositories {
flatDir dirs : TESTREPO_LOCATION.absolutePath
}
}
project.buildDir = TESTROOT
project.apply plugin: 'com.github.jruby-gradle.rspec'
//project.jruby.defaultRepositories = false
project.jruby.defaultRepositories = false
project.repositories {
flatDir dirs : TESTREPO_LOCATION.absolutePath
maven { url "file://" + repo.absolutePath }
}
return project
}
void setup() {
if(TESTROOT.exists()) {
TESTROOT.deleteDir()
}
TESTROOT.mkdirs()
project = setupProject()
@ -115,43 +118,59 @@ class JRubyRSpecPluginSpec extends Specification {
task.jrubyVersion = '1.7.20'
Files.createSymbolicLink(specDir.toPath(), new File('src/test/resources/jruby-version/spec').getAbsoluteFile().toPath())
project.evaluate()
File xmlReport = new File(project.buildDir, 'rspec/SPEC-JRubyVersion.xml')
xmlReport.delete()
String output = captureStdout {
task.run()
}
expect:
output.contains( '1 example, 0 failures' )
xmlReport.exists()
}
def "Throw exception on test failure"() {
when:
Files.createSymbolicLink(specDir.toPath(), new File('src/test/resources/failing/spec').getAbsoluteFile().toPath())
project.evaluate()
File xmlReport = new File(project.buildDir, 'rspec/SPEC-Failing.xml')
xmlReport.delete()
project.tasks.getByName('rspec').run()
then:
thrown(ExecException)
xmlReport.exists()
}
def "Run rspec"() {
given:
Files.createSymbolicLink(specDir.toPath(), new File('src/test/resources/simple/spec').getAbsoluteFile().toPath())
project.evaluate()
File xmlReport = new File(project.buildDir, 'rspec/SPEC-Simple.xml')
xmlReport.delete()
Task task = project.tasks.getByName('rspec')
String output = captureStdout {
task.run()
}
expect:
output.contains( '4 examples, 0 failures' )
xmlReport.exists()
}
def "Run rspec tasks separated"() {
given:
Files.createSymbolicLink(specDir.toPath(), new File('src/test/resources/simple/spec').getAbsoluteFile().toPath())
project.dependencies {
rspec 'rubygems:leafy-metrics:0.6.0'
rspec 'org.slf4j:slf4j-simple:1.6.4'
rspec 'rubygems:leafy-health:0.6.0'
rspec 'org.slf4j:slf4j-simple:1.7.7'
// for the offline setup we need to those deps manually
rspec 'org.slf4j:slf4j-api:1.7.7'
rspec 'io.dropwizard.metrics:metrics-core:3.1.0'
}
Task task = project.tasks.create( 'mine', RSpec)
project.evaluate()
File xmlReport = new File(project.buildDir, 'rspec/SPEC-More.xml')
xmlReport.delete()
File xmlReportMine = new File(project.buildDir, 'mine/SPEC-Simple.xml')
xmlReportMine.delete()
String outputMine = captureStdout {
task.run()
}
@ -164,6 +183,8 @@ class JRubyRSpecPluginSpec extends Specification {
expect:
outputMine.contains( '4 examples, 0 failures' )
output.contains( '2 examples, 0 failures' )
xmlReport.exists()
xmlReportMine.exists()
}
def "Run rspec task with custom configuration"() {
@ -171,44 +192,60 @@ class JRubyRSpecPluginSpec extends Specification {
Files.createSymbolicLink(specDir.toPath(), new File('src/test/resources/more/spec').getAbsoluteFile().toPath())
project.configurations.create('some')
project.dependencies {
some 'rubygems:leafy-metrics:0.6.0'
some 'org.slf4j:slf4j-simple:1.6.4'
some 'rubygems:leafy-health:0.6.0'
some 'org.slf4j:slf4j-simple:1.7.7'
// for the offline setup we need to those deps manually
some 'org.slf4j:slf4j-api:1.7.7'
some 'io.dropwizard.metrics:metrics-core:3.1.0'
}
RSpec task = (RSpec) project.tasks.create( 'mine', RSpec)
task.configure {
configuration('some')
}
project.evaluate()
File xmlReport = new File(project.buildDir, 'mine/SPEC-More.xml')
xmlReport.delete()
String output = captureStdout {
task.run()
}
expect:
output.contains( '2 examples, 0 failures' )
xmlReport.exists()
}
def "Run custom rspec version"() {
given:
Files.createSymbolicLink(specDir.toPath(), new File('src/test/resources/rspec-version/spec').getAbsoluteFile().toPath())
Task task = project.tasks.getByName('rspec')
// use a custom task to separate the gem install dir from
// other tests
Task task = project.tasks.create('custom-version', RSpec)
task.configure {
version = '3.2.0'
}
project.evaluate()
File xmlReport = new File(project.buildDir, 'custom-version/SPEC-RspecVersion.xml')
xmlReport.delete()
String output = captureStdout {
task.run()
}
expect:
output.contains( '1 example, 0 failures' )
// TODO fails on travis
//xmlReport.exists()
}
def "Run custom rspec version separate from other tasks"() {
given:
Files.createSymbolicLink(specDir.toPath(), new File('src/test/resources/rspec-version/spec').getAbsoluteFile().toPath())
Task task = project.tasks.create('other', RSpec)
Task task = project.tasks.create('yet', RSpec)
task.configure {
version = '3.2.0'
}
project.evaluate()
File xmlReport = new File(project.buildDir, 'rspec/SPEC-Simple.xml')
xmlReport.delete()
File xmlReportOther = new File(project.buildDir, 'yet/SPEC-RspecVersion.xml')
xmlReportOther.delete()
String outputOther = captureStdout {
task.run()
}
@ -220,6 +257,9 @@ class JRubyRSpecPluginSpec extends Specification {
expect:
outputOther.contains( '1 example, 0 failures' )
output.contains( '4 examples, 0 failures' )
// TODO fails on travis
//xmlReport.exists()
//xmlReportOther.exists()
}
def "Run rspec with custom pattern"() {
@ -231,6 +271,11 @@ class JRubyRSpecPluginSpec extends Specification {
pattern 'myspec/*_spec.rb'
}
project.evaluate()
File xmlReport = new File(project.buildDir, 'rspec/SPEC-Simple.xml')
xmlReport.delete()
File xmlReportOther = new File(project.buildDir, 'other/SPEC-Simple.xml')
xmlReportOther.delete()
String outputOther = captureStdout {
task.run()
}
@ -241,12 +286,19 @@ class JRubyRSpecPluginSpec extends Specification {
expect:
output.contains( '0 examples, 0 failures' )
outputOther.contains( '4 examples, 0 failures' )
!xmlReport.exists()
xmlReportOther.exists()
}
def "Run rspec with directory picker via system properties"() {
given:
Task task = project.tasks.create('other', RSpec)
project.evaluate()
File xmlReport = new File(project.buildDir, 'rspec/SPEC-Simple.xml')
xmlReport.delete()
File xmlReportOther = new File(project.buildDir, 'other/SPEC-Simple.xml')
xmlReportOther.delete()
System.setProperty('rspec.file', new File('src/test/resources/simple/spec').absolutePath)
String output = captureStdout {
project.tasks.getByName('rspec').run()
@ -257,23 +309,31 @@ class JRubyRSpecPluginSpec extends Specification {
expect:
outputOther.contains( '0 examples, 0 failures' )
output.contains( '4 examples, 0 failures' )
xmlReport.exists()
!xmlReportOther.exists()
}
def "Run rspec task with file picker via system properties"() {
given:
Task task = project.tasks.create('other', RSpec)
project.evaluate()
File xmlReport = new File(project.buildDir, 'rspec/SPEC-Simple.xml')
xmlReport.delete()
File xmlReportOther = new File(project.buildDir, 'other/SPEC-Simple.xml')
xmlReportOther.delete()
System.properties.remove('rspec.file')
System.setProperty('other.file', new File('src/test/resources/simple/spec/one_spec.rb').absolutePath)
String outputOther = captureStdout {
String output = captureStdout {
project.tasks.getByName('rspec').run()
}
String output = captureStdout {
String outputOther = captureStdout {
task.run()
}
expect:
outputOther.contains( '0 examples, 0 failures' )
output.contains( '4 examples, 0 failures' )
output.contains( '0 examples, 0 failures' )
outputOther.contains( '4 examples, 0 failures' )
!xmlReport.exists()
xmlReportOther.exists()
}
def "fails rspec with file picker if file is missing"() {
@ -286,4 +346,89 @@ class JRubyRSpecPluginSpec extends Specification {
then:
thrown(ExecException)
}
def "Run rspec with unknown tag"() {
given:
System.properties.remove('rspec.file')
Files.createSymbolicLink(specDir.toPath(), new File('src/test/resources/simple/spec').getAbsoluteFile().toPath())
project.evaluate()
File xmlReport = new File(project.buildDir, 'rspec/SPEC-Simple.xml')
xmlReport.delete()
System.setProperty('rspec.tags', 'me_and_the_corner:today')
Task task = project.tasks.getByName('rspec')
String output = captureStdout {
task.run()
}
expect:
output.contains( '0 examples, 0 failures' )
!xmlReport.exists()
}
def "Run rspec with simple tag"() {
given:
System.properties.remove('rspec.file')
Files.createSymbolicLink(specDir.toPath(), new File('src/test/resources/simple/spec').getAbsoluteFile().toPath())
project.evaluate()
File xmlReport = new File(project.buildDir, 'rspec/SPEC-Simple.xml')
xmlReport.delete()
System.setProperty('rspec.tags', 'simple')
Task task = project.tasks.getByName('rspec')
String output = captureStdout {
task.run()
}
expect:
output.contains( '1 example, 0 failures' )
xmlReport.exists()
}
def "Run rspec with name:value tags"() {
given:
System.properties.remove('rspec.file')
Files.createSymbolicLink(specDir.toPath(), new File('src/test/resources/simple/spec').getAbsoluteFile().toPath())
project.evaluate()
File xmlReport = new File(project.buildDir, 'rspec/SPEC-Simple.xml')
xmlReport.delete()
System.setProperty('rspec.tags', 'simple:false')
Task task = project.tasks.getByName('rspec')
String output = captureStdout {
task.run()
}
expect:
output.contains( '2 examples, 0 failures' )
xmlReport.exists()
}
def "Run rspec with multiple tags"() {
given:
System.properties.remove('rspec.file')
Files.createSymbolicLink(specDir.toPath(), new File('src/test/resources/simple/spec').getAbsoluteFile().toPath())
project.evaluate()
File xmlReport = new File(project.buildDir, 'rspec/SPEC-Simple.xml')
xmlReport.delete()
System.setProperty('rspec.tags', 'simple counter:small')
Task task = project.tasks.getByName('rspec')
String output = captureStdout {
task.run()
}
expect:
output.contains( '2 examples, 0 failures' )
xmlReport.exists()
}
def "Run rspec with skipping tag"() {
given:
System.properties.remove('rspec.file')
Files.createSymbolicLink(specDir.toPath(), new File('src/test/resources/simple/spec').getAbsoluteFile().toPath())
project.evaluate()
File xmlReport = new File(project.buildDir, 'rspec/SPEC-Simple.xml')
xmlReport.delete()
System.setProperty('rspec.tags', '~simple')
Task task = project.tasks.getByName('rspec')
String output = captureStdout {
task.run()
}
expect:
output.contains( '3 examples, 0 failures' )
xmlReport.exists()
}
}

View File

@ -0,0 +1,45 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>builder</artifactId>
<version>3.2.2</version>
<packaging>gem</packaging>
<name>Builders for MarkUp.</name>
<url>http://onestepback.org</url>
<description>Builder provides a number of builder objects that make creating structured data
simple to do. Currently the following builder objects are supported:
* XML Markup
* XML Events
</description>
<developers>
<developer>
<name>Jim Weirich</name>
<email>jim.weirich@gmail.com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<jruby.plugins.version>1.0.4</jruby.plugins.version>
</properties>
<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>builder-3.2.2.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,31 @@
<metadata>
<groupId>rubygems</groupId>
<artifactId>builder</artifactId>
<versioning>
<versions>
<version>1.1.0</version>
<version>1.2.0</version>
<version>1.2.1</version>
<version>1.2.2</version>
<version>1.2.3</version>
<version>1.2.4</version>
<version>2.0.0</version>
<version>2.1.1</version>
<version>2.1.2</version>
<version>3.0.0</version>
<version>3.0.1</version>
<version>3.0.2</version>
<version>3.0.3</version>
<version>3.0.4</version>
<version>3.1.0</version>
<version>3.1.1</version>
<version>3.1.2</version>
<version>3.1.3</version>
<version>3.1.4</version>
<version>3.2.0</version>
<version>3.2.1</version>
<version>3.2.2</version>
</versions>
<lastUpdated>20150729150842</lastUpdated>
</versioning>
</metadata>

View File

@ -0,0 +1,77 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>ci_reporter</artifactId>
<version>2.0.0</version>
<packaging>gem</packaging>
<name>Connects Ruby test frameworks to CI systems via JUnit reports.</name>
<url>https://github.com/ci-reporter/ci_reporter</url>
<description>CI::Reporter is an add-on to Ruby testing frameworks that allows you to generate XML reports of your test runs. The resulting files can be read by a continuous integration system that understands Ant's JUnit report format.</description>
<developers>
<developer>
<name>Nick Sieger</name>
<email>nick@nicksieger.com</email>
</developer>
<developer>
<name>Jake Goulding</name>
<email>jake.goulding@gmail.com</email>
</developer>
</developers>
<scm>
<connection>https://github.com/ci-reporter/ci_reporter.git</connection>
<url>https://github.com/ci-reporter/ci_reporter</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>builder</artifactId>
<version>[2.1.2,)</version>
<type>gem</type>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rake</artifactId>
<version>[0,)</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rdoc</artifactId>
<version>[4.0,4.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rspec</artifactId>
<version>[3.0,3.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>ci_reporter-2.0.0.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,51 @@
<metadata>
<groupId>rubygems</groupId>
<artifactId>ci_reporter</artifactId>
<versioning>
<versions>
<version>1.0</version>
<version>1.1</version>
<version>1.2</version>
<version>1.2.1</version>
<version>1.2.2</version>
<version>1.2.3</version>
<version>1.2.4</version>
<version>1.3</version>
<version>1.3.1</version>
<version>1.3.2</version>
<version>1.3.3</version>
<version>1.3.4</version>
<version>1.3.5</version>
<version>1.4</version>
<version>1.5</version>
<version>1.5.1</version>
<version>1.5.2</version>
<version>1.5.3</version>
<version>1.6.0</version>
<version>1.6.1</version>
<version>1.6.2</version>
<version>1.6.3</version>
<version>1.6.4</version>
<version>1.6.5</version>
<version>1.6.6</version>
<version>1.6.7</version>
<version>1.6.8</version>
<version>1.6.9</version>
<version>1.7.0</version>
<version>1.7.1</version>
<version>1.7.2</version>
<version>1.7.3</version>
<version>1.8.0</version>
<version>1.8.1</version>
<version>1.8.2</version>
<version>1.8.3</version>
<version>1.8.4</version>
<version>1.9.0</version>
<version>1.9.1</version>
<version>1.9.2</version>
<version>1.9.3</version>
<version>2.0.0</version>
</versions>
<lastUpdated>20150729150840</lastUpdated>
</versioning>
</metadata>

View File

@ -0,0 +1,90 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>ci_reporter_rspec</artifactId>
<version>1.0.0</version>
<packaging>gem</packaging>
<name>Connects CI::Reporter to RSpec</name>
<url>https://github.com/ci-reporter/ci_reporter_rspec</url>
<description></description>
<developers>
<developer>
<name>Nick Sieger</name>
<email>nick@nicksieger.com</email>
</developer>
<developer>
<name>Jake Goulding</name>
<email>jake.goulding@gmail.com</email>
</developer>
</developers>
<scm>
<connection>https://github.com/ci-reporter/ci_reporter_rspec.git</connection>
<url>https://github.com/ci-reporter/ci_reporter_rspec</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>rspec</artifactId>
<version>[2.14,4)</version>
<type>gem</type>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ci_reporter</artifactId>
<version>[2.0,2.99999]</version>
<type>gem</type>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>bundler</artifactId>
<version>[1.6,1.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rake</artifactId>
<version>[0,)</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ci_reporter_test_utils</artifactId>
<version>[0,)</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rspec-collection_matchers</artifactId>
<version>[0,)</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>ci_reporter_rspec-1.0.0.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,12 @@
<metadata>
<groupId>rubygems</groupId>
<artifactId>ci_reporter_rspec</artifactId>
<versioning>
<versions>
<version>0.0.1</version>
<version>0.0.2</version>
<version>1.0.0</version>
</versions>
<lastUpdated>20150729150747</lastUpdated>
</versioning>
</metadata>

View File

@ -0,0 +1,130 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>diff-lcs</artifactId>
<version>1.2.5</version>
<packaging>gem</packaging>
<name>Diff::LCS computes the difference between two Enumerable sequences using the McIlroy-Hunt longest common subsequence (LCS) algorithm</name>
<url>http://diff-lcs.rubyforge.org/</url>
<description>Diff::LCS computes the difference between two Enumerable sequences using the
McIlroy-Hunt longest common subsequence (LCS) algorithm. It includes utilities
to create a simple HTML diff output format and a standard diff-like tool.
This is release 1.2.4, fixing a bug introduced after diff-lcs 1.1.3 that did
not properly prune common sequences at the beginning of a comparison set.
Thanks to Paul Kunysch for fixing this issue.
Coincident with the release of diff-lcs 1.2.3, we reported an issue with
Rubinius in 1.9 mode
({rubinius/rubinius#2268}[https://github.com/rubinius/rubinius/issues/2268]).
We are happy to report that this issue has been resolved.</description>
<developers>
<developer>
<name>Austin Ziegler</name>
<email>austin@rubyforge.org</email>
</developer>
</developers>
<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>rubyforge</artifactId>
<version>[2.0.4,)</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rdoc</artifactId>
<version>[4.0,4.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>hoe-bundler</artifactId>
<version>[1.2,1.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>hoe-doofus</artifactId>
<version>[1.0,1.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>hoe-gemspec2</artifactId>
<version>[1.1,1.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>hoe-git</artifactId>
<version>[1.5,1.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>hoe-rubygems</artifactId>
<version>[1.0,1.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>hoe-travis</artifactId>
<version>[1.2,1.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rake</artifactId>
<version>[10.0,10.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rspec</artifactId>
<version>[2.0,2.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>hoe</artifactId>
<version>[3.7,3.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>diff-lcs-1.2.5.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,18 @@
<metadata>
<groupId>rubygems</groupId>
<artifactId>diff-lcs</artifactId>
<versioning>
<versions>
<version>1.1.1</version>
<version>1.1.2</version>
<version>1.1.3</version>
<version>1.2.0</version>
<version>1.2.1</version>
<version>1.2.2</version>
<version>1.2.3</version>
<version>1.2.4</version>
<version>1.2.5</version>
</versions>
<lastUpdated>20150721191303</lastUpdated>
</versioning>
</metadata>

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Fri Apr 10 18:37:00 IST 2015
jar-dependencies-0.0.2.pom>gems=
jar-dependencies-0.0.2.pom>rubygems-releases=

View File

@ -0,0 +1,54 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.0.2</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>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<jruby.plugins.version>1.0.0-rc4</jruby.plugins.version>
</properties>
<dependencies>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rake</artifactId>
<version>[10.2.2,10.2.99999]</version>
<type>gem</type>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ruby-maven</artifactId>
<version>[3.1.1.0,3.1.1.99999]</version>
<type>gem</type>
</dependency>
</dependencies>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<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.0.2.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1 @@
86d16fd900a9de2b2632d8a9fc066e149bf5e267

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Fri Apr 10 18:37:02 IST 2015
jar-dependencies-0.0.3.pom>gems=
jar-dependencies-0.0.3.pom>rubygems-releases=

View File

@ -0,0 +1,56 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.0.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>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<jruby.plugins.version>1.0.0-rc4</jruby.plugins.version>
</properties>
<dependencies>
<dependency>
<groupId>rubygems</groupId>
<artifactId>rake</artifactId>
<version>[10.2.2,10.2.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ruby-maven</artifactId>
<version>[3.1.1.0,3.1.1.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<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.0.3.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1 @@
dc1b3636ccbd8a0c9e08910661f1090d33710b90

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Fri Apr 10 18:37:04 IST 2015
jar-dependencies-0.0.4.pom>rubygems-releases=
jar-dependencies-0.0.4.pom>gems=

View File

@ -0,0 +1,63 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.0.4</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>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<jruby.plugins.version>1.0.0-rc4</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>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ruby-maven</artifactId>
<version>[3.1.1.0,3.1.1.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<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.0.4.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1 @@
a6ffa66a6f224a1fc8c8bbf56d1cbd7f65a1758d

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Fri Apr 10 18:37:06 IST 2015
jar-dependencies-0.0.5.pom>rubygems-releases=
jar-dependencies-0.0.5.pom>gems=

View File

@ -0,0 +1,56 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.0.5</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>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<jruby.plugins.version>1.0.0-rc4</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>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<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.0.5.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1 @@
52cdcbdcbad9ab54de54549a4f1ac8827c512782

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Fri Apr 10 18:37:08 IST 2015
jar-dependencies-0.0.6.pom>gems=
jar-dependencies-0.0.6.pom>rubygems-releases=

View File

@ -0,0 +1,56 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.0.6</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>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<jruby.plugins.version>1.0.0-rc4</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>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<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.0.6.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1 @@
f219de1bf0d351fff8a9484bb722fbe6191a7a1b

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Fri Apr 10 18:37:10 IST 2015
jar-dependencies-0.0.7.pom>rubygems-releases=
jar-dependencies-0.0.7.pom>gems=

View File

@ -0,0 +1,56 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.0.7</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>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<jruby.plugins.version>1.0.0-rc4</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>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<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.0.7.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1 @@
a49392d7fe36289e9262b9cf35f7b148b74f13d3

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Fri Apr 10 18:37:11 IST 2015
jar-dependencies-0.0.8.pom>rubygems-releases=
jar-dependencies-0.0.8.pom>gems=

View File

@ -0,0 +1,56 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.0.8</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>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<jruby.plugins.version>1.0.0-rc4</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>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<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.0.8.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1 @@
81af55de79afca8917d1ccef77218c39415dca43

View File

@ -0,0 +1,5 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Sun Mar 29 11:56:57 IST 2015
jar-dependencies-0.0.9.pom>rubygems-releases=
jar-dependencies-0.0.9.gem>gems=
jar-dependencies-0.0.9.pom>gems=

View File

@ -0,0 +1 @@
eb91291c487c0e2de1135c6635398ed556c429e0

View File

@ -0,0 +1,65 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.0.9</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.0.9.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Sun Mar 29 11:56:12 IST 2015
http\://repo.maven.apache.org/maven2/.lastUpdated=1427610372502
http\://repo.maven.apache.org/maven2/.error=

View File

@ -0,0 +1 @@
f2a20740a646c335e8eb90c86da22d602a6f6077

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Sun Mar 29 12:01:17 IST 2015
jar-dependencies-0.1.0.pom>rubygems-releases=
jar-dependencies-0.1.0.pom>gems=

View File

@ -0,0 +1,65 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.1.0</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.0.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Sun Mar 29 12:01:22 IST 2015
http\://repo.maven.apache.org/maven2/.lastUpdated=1427610682937
http\://repo.maven.apache.org/maven2/.error=

View File

@ -0,0 +1 @@
84d12f8b45bbb043f25a841863fe5ce78f795fa5

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Sun Mar 29 12:01:23 IST 2015
jar-dependencies-0.1.1.pom>gems=
jar-dependencies-0.1.1.pom>rubygems-releases=

View File

@ -0,0 +1,65 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.1.1</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.1.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Sun Mar 29 12:01:23 IST 2015
http\://repo.maven.apache.org/maven2/.lastUpdated=1427610683484
http\://repo.maven.apache.org/maven2/.error=

View File

@ -0,0 +1 @@
dddf156b489a81a9f9a96e7a84432ff19507b3bf

View File

@ -0,0 +1,8 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Tue May 05 14:12:22 CEST 2015
jar-dependencies-0.1.10.gem>gems=
jar-dependencies-0.1.10.pom>rubygems-releases=
jar-dependencies-0.1.10.gem>rubygems-release=
jar-dependencies-0.1.10.pom>gems=
jar-dependencies-0.1.10.gem>central=
jar-dependencies-0.1.10.pom>rubygems-release=

View File

@ -0,0 +1 @@
19f2cd3a65ce90c8fc595622c323cad38d669fd4

View File

@ -0,0 +1,67 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.1.10</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>
<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>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ruby-maven</artifactId>
<version>[3.1.1.0.9,3.1.1.0.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.10.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1 @@
6d023ef3cca7c598075e2d0a820750565dc3cc5c

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Mon Apr 13 14:53:34 IST 2015
jar-dependencies-0.1.11.pom>=
jar-dependencies-0.1.11.gem>=

View File

@ -0,0 +1,78 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.1.11</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 by providing a Jars.lock file.</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>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ruby-maven</artifactId>
<version>[3.1.1.0.11,3.1.1.0.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<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.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Wed Apr 15 13:40:27 IST 2015
jar-dependencies-0.1.12.pom>=
jar-dependencies-0.1.12.gem>=

View File

@ -0,0 +1,78 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.1.12</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 by providing a Jars.lock file.</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>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ruby-maven</artifactId>
<version>[3.1.1.0.11,3.1.1.0.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<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.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Mon Apr 20 11:19:40 IST 2015
jar-dependencies-0.1.13.gem>=
jar-dependencies-0.1.13.pom>=

View File

@ -0,0 +1,78 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.1.13</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 by providing a Jars.lock file.</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>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ruby-maven</artifactId>
<version>[3.1.1.0.11,3.1.1.0.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<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.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,6 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Wed May 06 12:10:22 CEST 2015
jar-dependencies-0.1.14.gem.asc>=
jar-dependencies-0.1.14.pom.asc>=
jar-dependencies-0.1.14.pom>=
jar-dependencies-0.1.14.gem>=

View File

@ -0,0 +1,7 @@
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iEYEABECAAYFAlVJ6I4ACgkQun4CG1smSd8aVwCgus10WiUz9JiByvAJm4tx7sF+
SVEAniu4+7p8ffETKwIaMXKqGkDS4Mis
=hDBO
-----END PGP SIGNATURE-----

View File

@ -0,0 +1,78 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.1.14</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 by providing a Jars.lock file.</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>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ruby-maven</artifactId>
<version>[3.1.1.0.11,3.1.1.0.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<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.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,7 @@
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iEYEABECAAYFAlVJ6I4ACgkQun4CG1smSd9UQACghXb5+lbe2t6+0FLhJrJCgNRP
V4oAoNCDAGSGGzjQGHY6o4qMEf9RxvO1
=s/bw
-----END PGP SIGNATURE-----

View File

@ -0,0 +1,6 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Fri Jul 10 19:48:18 CEST 2015
jar-dependencies-0.1.15.gem.asc>=
jar-dependencies-0.1.15.pom.asc>=
jar-dependencies-0.1.15.pom>=
jar-dependencies-0.1.15.gem>=

View File

@ -0,0 +1,7 @@
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iEYEABECAAYFAlWIMTkACgkQun4CG1smSd9pagCfXe7pa64oryCRr8/fj8+GlVkY
ZZMAoKA0R8qGIbqGkhIGWVF7Yfe0O+lw
=H9DA
-----END PGP SIGNATURE-----

View File

@ -0,0 +1,85 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.1.15</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 by providing a Jars.lock file.</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>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ruby-maven</artifactId>
<version>[3.3.0,3.3.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ruby-maven-libs</artifactId>
<version>[3.3.0,3.3.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<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.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,7 @@
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iEYEABECAAYFAlWIMTkACgkQun4CG1smSd+Y9wCfbQbqHrzcmVYpax53XaDGw3Ap
zH8Anixt7iq7uh4UZn1kBKonQEcEE/Dq
=7UyI
-----END PGP SIGNATURE-----

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Sun Jul 12 17:52:42 CEST 2015
jar-dependencies-0.1.16.pre-SNAPSHOT.gem>=
jar-dependencies-0.1.16.pre-SNAPSHOT.pom>=

View File

@ -0,0 +1,78 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.1.16.pre</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 by providing a Jars.lock file.</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>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ruby-maven</artifactId>
<version>[3.3.3,3.3.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<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.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata modelVersion="1.1.0">
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.1.16.pre-SNAPSHOT</version>
<versioning>
<snapshot>
<localCopy>true</localCopy>
</snapshot>
<lastUpdated>20150712155242</lastUpdated>
<snapshotVersions>
<snapshotVersion>
<extension>gem</extension>
<value>0.1.16.pre-SNAPSHOT</value>
<updated>20150712155242</updated>
</snapshotVersion>
<snapshotVersion>
<extension>pom</extension>
<value>0.1.16.pre-SNAPSHOT</value>
<updated>20150712155242</updated>
</snapshotVersion>
</snapshotVersions>
</versioning>
</metadata>

View File

@ -0,0 +1,6 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Thu Jul 16 11:23:55 CEST 2015
maven-metadata-sonatype.xml.error=
maven-metadata-gems.xml.error=
maven-metadata-sonatype.xml.lastUpdated=1437038635069
maven-metadata-gems.xml.lastUpdated=1437038538453

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Fri Jul 10 20:09:13 CEST 2015
jar-dependencies-0.1.16.pom>=
jar-dependencies-0.1.16.gem>=

View File

@ -0,0 +1,85 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.1.16</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 by providing a Jars.lock file.</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>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ruby-maven</artifactId>
<version>[3.3.0,3.3.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rubygems</groupId>
<artifactId>ruby-maven-libs</artifactId>
<version>[3.3.0,3.3.99999]</version>
<type>gem</type>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<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.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,5 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Tue Apr 07 21:41:23 IST 2015
jar-dependencies-0.1.2.gem>gems=
jar-dependencies-0.1.2.pom>gems=
jar-dependencies-0.1.2.pom>rubygems-releases=

View File

@ -0,0 +1 @@
2fe10a861462ca7f2f44d3a021e1a273b31274f3

View File

@ -0,0 +1,65 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.1.2</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.2.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Sun Mar 29 12:01:23 IST 2015
http\://repo.maven.apache.org/maven2/.lastUpdated=1427610683976
http\://repo.maven.apache.org/maven2/.error=

View File

@ -0,0 +1 @@
475505f0833304c409cead6103ba9e67454a2584

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Sun Mar 29 12:01:24 IST 2015
jar-dependencies-0.1.3.pom>rubygems-releases=
jar-dependencies-0.1.3.pom>gems=

View File

@ -0,0 +1,65 @@
<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>

View File

@ -0,0 +1,4 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Sun Mar 29 12:01:24 IST 2015
http\://repo.maven.apache.org/maven2/.lastUpdated=1427610684437
http\://repo.maven.apache.org/maven2/.error=

View File

@ -0,0 +1 @@
d29c43ed025cdb82f5841303e5ccebd34cdad005

View File

@ -0,0 +1,5 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Sun Mar 29 12:01:24 IST 2015
jar-dependencies-0.1.4.pom>central=
jar-dependencies-0.1.4.pom>rubygems-releases=
jar-dependencies-0.1.4.pom>gems=

View File

@ -0,0 +1,65 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>jar-dependencies</artifactId>
<version>0.1.4</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.4.gemspec</gemspec>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1 @@
8f29cda72583caf11f2a2364ceec8479b0c9a12b

View File

@ -0,0 +1,6 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Tue May 05 18:07:54 CEST 2015
jar-dependencies-0.1.7.pom>gems=
jar-dependencies-0.1.7.pom>rubygems-releases=
jar-dependencies-0.1.7.gem>rubygems-releases=
jar-dependencies-0.1.7.gem>gems=

View File

@ -0,0 +1 @@
7defc3fedae0b8f62e8862af58a6651d422e3921

Some files were not shown because too many files have changed in this diff Show More