Sha256: 4c0645a506639e2f631b12f8e916053a033fa039a7e18ceb6d25b2ae0a24f412
Contents?: true
Size: 1.92 KB
Versions: 2
Compression:
Stored size: 1.92 KB
Contents
<project> <modelVersion>4.0.0</modelVersion> <groupId>no_group_id_given</groupId> <artifactId>gemspec_spec</artifactId> <version>0.0.0</version> <name>gemspec_spec</name> <properties> <jruby.plugins.version>3.0.0-SNAPSHOT</jruby.plugins.version> <mavengem.wagon.version>2.0.0-SNAPSHOT</mavengem.wagon.version> </properties> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.6.4</version> </dependency> <dependency> <groupId>org.jruby</groupId> <artifactId>jruby</artifactId> <version>1.7.16</version> <type>pom</type> </dependency> <dependency> <groupId>org.jruby</groupId> <artifactId>jruby</artifactId> <version>1.7.16</version> <classifier>noasm</classifier> <exclusions> <exclusion> <groupId>org.jruby</groupId> <artifactId>jruby-stdlib</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>generate-test-resources</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>lib</outputDirectory> <useRepositoryLayout>true</useRepositoryLayout> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jruby.maven</groupId> <artifactId>gem-maven-plugin</artifactId> <version>${jruby.plugins.version}</version> <configuration> <gemspec>jars_and_poms.gemspec</gemspec> <includeDependencies>true</includeDependencies> <useRepositoryLayout>true</useRepositoryLayout> </configuration> </plugin> </plugins> </build> </project>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
maven-tools-1.2.0 | spec/dsl/gemspec_spec/jars_and_poms_include_jars.xml |
maven-tools-1.2.0.pre1 | spec/dsl/gemspec_spec/jars_and_poms_include_jars.xml |