Sha256: f51018a27ffcf40ba2a94e059af15d4d6a738e61b198a14e877940b9b5c855e6
Contents?: true
Size: 1.91 KB
Versions: 2
Compression:
Stored size: 1.91 KB
Contents
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2012 to original author or authors All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html --> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>no_group_id_given</groupId> <artifactId>gemfile_with_two_sources</artifactId> <version>0.0.0</version> <name>gemfile_with_two_sources</name> <properties> <project.build.sourceEncoding>utf-8</project.build.sourceEncoding> <jruby.plugins.version>3.0.0-SNAPSHOT</jruby.plugins.version> <mavengem.wagon.version>2.0.0-SNAPSHOT</mavengem.wagon.version> </properties> <repositories> <repository> <id>mavengems</id> <url>mavengem:https://rubygems.org</url> </repository> <repository> <id>http_github.com_rubygems</id> <url>mavengem:http://github.com/rubygems</url> </repository> </repositories> <build> <extensions> <extension> <groupId>org.jruby.maven</groupId> <artifactId>mavengem-wagon</artifactId> <version>${mavengem.wagon.version}</version> </extension> </extensions> <directory>${basedir}/pkg</directory> <plugins> <plugin> <groupId>org.jruby.maven</groupId> <artifactId>gem-maven-plugin</artifactId> <version>${jruby.plugins.version}</version> <executions> <execution> <id>install gems</id> <goals> <goal>initialize</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
maven-tools-1.2.0 | spec/gemfile_with_two_sources/pom.xml |
maven-tools-1.2.0.pre1 | spec/gemfile_with_two_sources/pom.xml |