spec/gemfile_with_lock/pom.xml in maven-tools-1.0.0.rc6 vs spec/gemfile_with_lock/pom.xml in maven-tools-1.0.0

- old
+ new

@@ -105,93 +105,56 @@ <activation> <file> <exists>Gemfile.lock</exists> </file> </activation> - <dependencies> - <dependency> - <groupId>rubygems</groupId> - <artifactId>virtus</artifactId> - <version>1.0.2</version> - <type>gem</type> - </dependency> - <dependency> - <groupId>rubygems</groupId> - <artifactId>axiom-types</artifactId> - <version>0.1.1</version> - <type>gem</type> - </dependency> - <dependency> - <groupId>rubygems</groupId> - <artifactId>descendants_tracker</artifactId> - <version>0.0.4</version> - <type>gem</type> - </dependency> - <dependency> - <groupId>rubygems</groupId> - <artifactId>thread_safe</artifactId> - <version>0.3.3</version> - <type>gem</type> - </dependency> - <dependency> - <groupId>rubygems</groupId> - <artifactId>ice_nine</artifactId> - <version>0.11.0</version> - <type>gem</type> - </dependency> - <dependency> - <groupId>rubygems</groupId> - <artifactId>coercible</artifactId> - <version>1.0.1</version> - <type>gem</type> - </dependency> - <dependency> - <groupId>rubygems</groupId> - <artifactId>equalizer</artifactId> - <version>0.1.0</version> - <type>gem</type> - </dependency> - <dependency> - <groupId>rubygems</groupId> - <artifactId>rake</artifactId> - <version>10.2.2</version> - <type>gem</type> - </dependency> - <dependency> - <groupId>rubygems</groupId> - <artifactId>rspec</artifactId> - <version>2.14.1</version> - <type>gem</type> - <scope>test</scope> - </dependency> - <dependency> - <groupId>rubygems</groupId> - <artifactId>rspec-core</artifactId> - <version>2.14.7</version> - <type>gem</type> - <scope>test</scope> - </dependency> - <dependency> - <groupId>rubygems</groupId> - <artifactId>rspec-expectations</artifactId> - <version>2.14.5</version> - <type>gem</type> - <scope>test</scope> - </dependency> - <dependency> - <groupId>rubygems</groupId> - <artifactId>diff-lcs</artifactId> - <version>1.2.5</version> - <type>gem</type> - <scope>test</scope> - </dependency> - <dependency> - <groupId>rubygems</groupId> - <artifactId>rspec-mocks</artifactId> - <version>2.14.6</version> - <type>gem</type> - <scope>test</scope> - </dependency> - </dependencies> + <build> + <plugins> + <plugin> + <groupId>de.saumya.mojo</groupId> + <artifactId>gem-maven-plugin</artifactId> + <version>${jruby.plugins.version}</version> + <executions> + <execution> + <id>install gem sets for compile</id> + <phase>initialize</phase> + <goals> + <goal>sets</goal> + </goals> + <configuration> + <scope>compile</scope> + <gems> + <virtus>1.0.2</virtus> + <axiom-types>0.1.1</axiom-types> + <descendantsTracker>0.0.4</descendantsTracker> + <threadSafe>0.3.3</threadSafe> + <iceNine>0.11.0</iceNine> + <coercible>1.0.1</coercible> + <equalizer>0.1.0</equalizer> + <rake>10.2.2</rake> + </gems> + </configuration> + </execution> + <execution> + <id>install gem sets for test</id> + <phase>initialize</phase> + <goals> + <goal>sets</goal> + </goals> + <configuration> + <scope>test</scope> + <gems> + <rspec>2.14.1</rspec> + <rspec-core>2.14.7</rspec-core> + <rspec-expectations>2.14.5</rspec-expectations> + <diff-lcs>1.2.5</diff-lcs> + <rspec-mocks>2.14.6</rspec-mocks> + </gems> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> </profile> </profiles> </project>