diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index efad7d80..0e497e83 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -22,13 +22,14 @@ jobs:
uses: actions/checkout@v2
- name: Set up java
- uses: actions/setup-java@v2
+ uses: actions/setup-java@v3
with:
distribution: zulu
java-version: ${{ matrix.java }}
+ cache: maven
- name: Install dependencies
- run: ./mvnw install -Dmaven.test.skip -Dinvoker.skip
+ run: ./mvnw install -B -Dmaven.test.skip -Dinvoker.skip
- name: Run tests
- run: ./mvnw verify -Pintegration-test
+ run: ./mvnw verify -B -Pintegration-test
diff --git a/README.md b/README.md
index 23f9b19a..706f4b9b 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ there is maven repository with torquebox.org which delivers gem (only ruby and j
- rubygems-release
+ mavengems
http://rubygems-proxy.torquebox.org/releases
@@ -34,7 +34,7 @@ just add the gem-maven-plugin in your pom and execute the 'initialize'. that wil
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
${jruby.plugins.version}
@@ -56,7 +56,7 @@ example: execute bin/compass from the compass gem
add the following to you pom
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.parent.version@
@@ -75,7 +75,7 @@ this will execute **compass** from the compass gem during the *compile* phase. y
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.parent.version@
diff --git a/gem-extension/pom.xml b/gem-extension/pom.xml
index 659876cb..86fa23d3 100644
--- a/gem-extension/pom.xml
+++ b/gem-extension/pom.xml
@@ -3,8 +3,8 @@
4.0.0
parent-mojo
- de.saumya.mojo
- 2.0.2-SNAPSHOT
+ org.jruby.maven
+ 3.0.0-SNAPSHOT
../parent-mojo/pom.xml
gem-extension
diff --git a/gem-extension/src/main/resources/META-INF/plexus/components.xml b/gem-extension/src/main/resources/META-INF/plexus/components.xml
index 4f218fa1..8d91d966 100644
--- a/gem-extension/src/main/resources/META-INF/plexus/components.xml
+++ b/gem-extension/src/main/resources/META-INF/plexus/components.xml
@@ -9,7 +9,7 @@
- de.saumya.mojo:gem-maven-plugin:initialize
+ org.jruby.maven:gem-maven-plugin:initialize
org.apache.maven.plugins:maven-resources-plugin:resources
@@ -18,13 +18,13 @@
org.apache.maven.plugins:maven-compiler-plugin:compile
- de.saumya.mojo:gem-maven-plugin:package
+ org.jruby.maven:gem-maven-plugin:package
org.apache.maven.plugins:maven-install-plugin:install
- de.saumya.mojo:gem-maven-plugin:push
+ org.jruby.maven:gem-maven-plugin:push
diff --git a/gem-maven-plugin/pom.xml b/gem-maven-plugin/pom.xml
index efa1b0fa..3be625e7 100644
--- a/gem-maven-plugin/pom.xml
+++ b/gem-maven-plugin/pom.xml
@@ -3,8 +3,8 @@
4.0.0
parent-mojo
- de.saumya.mojo
- 2.0.2-SNAPSHOT
+ org.jruby.maven
+ 3.0.0-SNAPSHOT
../parent-mojo/pom.xml
gem-maven-plugin
diff --git a/gem-maven-plugin/src/it/exec-args-with-spaces/pom.xml b/gem-maven-plugin/src/it/exec-args-with-spaces/pom.xml
index bd0fa01c..d7474a5a 100644
--- a/gem-maven-plugin/src/it/exec-args-with-spaces/pom.xml
+++ b/gem-maven-plugin/src/it/exec-args-with-spaces/pom.xml
@@ -3,14 +3,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
dummy
testing
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/exec-embed/pom.xml b/gem-maven-plugin/src/it/exec-embed/pom.xml
index 225a6b10..a1f0d180 100644
--- a/gem-maven-plugin/src/it/exec-embed/pom.xml
+++ b/gem-maven-plugin/src/it/exec-embed/pom.xml
@@ -3,14 +3,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
dummy
testing
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/exec-file/pom.xml b/gem-maven-plugin/src/it/exec-file/pom.xml
index aeeafef1..973e408f 100644
--- a/gem-maven-plugin/src/it/exec-file/pom.xml
+++ b/gem-maven-plugin/src/it/exec-file/pom.xml
@@ -1,13 +1,26 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
dummy
testing
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-release
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -27,9 +40,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/execute-compass-with-gems-from-plugin/pom.xml b/gem-maven-plugin/src/it/execute-compass-with-gems-from-plugin/pom.xml
index d20e004b..70abe8dd 100644
--- a/gem-maven-plugin/src/it/execute-compass-with-gems-from-plugin/pom.xml
+++ b/gem-maven-plugin/src/it/execute-compass-with-gems-from-plugin/pom.xml
@@ -6,19 +6,43 @@
0.0.0
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
+ mavengems
+ mavengem:https://rubygems.org
+
+
${basedir}
${root.dir}/target/rubygems
${root.dir}/target/rubygems
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.parent.version@
diff --git a/gem-maven-plugin/src/it/gem-sets/pom.xml b/gem-maven-plugin/src/it/gem-sets/pom.xml
index 433d10de..b3f70ff8 100644
--- a/gem-maven-plugin/src/it/gem-sets/pom.xml
+++ b/gem-maven-plugin/src/it/gem-sets/pom.xml
@@ -3,18 +3,38 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
dummy
testing
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
maven-clean-plugin
@@ -26,7 +46,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/gemfile-to-pom-forced/invoker.properties b/gem-maven-plugin/src/it/gemfile-to-pom-forced/invoker.properties
index 2a3e99af..cc53af0c 100644
--- a/gem-maven-plugin/src/it/gemfile-to-pom-forced/invoker.properties
+++ b/gem-maven-plugin/src/it/gemfile-to-pom-forced/invoker.properties
@@ -1,3 +1,3 @@
-invoker.goals = de.saumya.mojo:gem-maven-plugin:${project.version}:pom
+invoker.goals = org.jruby.maven:gem-maven-plugin:${project.version}:pom
invoker.mavenOpts = -client
diff --git a/gem-maven-plugin/src/it/gemfile-to-pom-forced/pom.xml b/gem-maven-plugin/src/it/gemfile-to-pom-forced/pom.xml
index 5acddfb6..af8645f7 100644
--- a/gem-maven-plugin/src/it/gemfile-to-pom-forced/pom.xml
+++ b/gem-maven-plugin/src/it/gemfile-to-pom-forced/pom.xml
@@ -1,13 +1,13 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/gemfile-to-pom/invoker.properties b/gem-maven-plugin/src/it/gemfile-to-pom/invoker.properties
index 2a3e99af..cc53af0c 100644
--- a/gem-maven-plugin/src/it/gemfile-to-pom/invoker.properties
+++ b/gem-maven-plugin/src/it/gemfile-to-pom/invoker.properties
@@ -1,3 +1,3 @@
-invoker.goals = de.saumya.mojo:gem-maven-plugin:${project.version}:pom
+invoker.goals = org.jruby.maven:gem-maven-plugin:${project.version}:pom
invoker.mavenOpts = -client
diff --git a/gem-maven-plugin/src/it/gemfile-to-pom/pom.xml b/gem-maven-plugin/src/it/gemfile-to-pom/pom.xml
index 5acddfb6..af8645f7 100644
--- a/gem-maven-plugin/src/it/gemfile-to-pom/pom.xml
+++ b/gem-maven-plugin/src/it/gemfile-to-pom/pom.xml
@@ -1,13 +1,13 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/gemify-complex/pom.xml b/gem-maven-plugin/src/it/gemify-complex/pom.xml
index 61f7c822..655f5d4d 100644
--- a/gem-maven-plugin/src/it/gemify-complex/pom.xml
+++ b/gem-maven-plugin/src/it/gemify-complex/pom.xml
@@ -1,13 +1,13 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
dummy
testing
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/gemify-pom/pom.xml b/gem-maven-plugin/src/it/gemify-pom/pom.xml
index 0e63e0bf..f56df915 100644
--- a/gem-maven-plugin/src/it/gemify-pom/pom.xml
+++ b/gem-maven-plugin/src/it/gemify-pom/pom.xml
@@ -18,7 +18,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/gemify-simple/goals.txt b/gem-maven-plugin/src/it/gemify-simple/goals.txt
index 3490a05d..707eb369 100644
--- a/gem-maven-plugin/src/it/gemify-simple/goals.txt
+++ b/gem-maven-plugin/src/it/gemify-simple/goals.txt
@@ -1 +1 @@
-de.saumya.mojo:gem-maven-plugin:gemify
+org.jruby.maven:gem-maven-plugin:gemify
diff --git a/gem-maven-plugin/src/it/gemify-simple/pom.xml b/gem-maven-plugin/src/it/gemify-simple/pom.xml
index 61f7c822..655f5d4d 100644
--- a/gem-maven-plugin/src/it/gemify-simple/pom.xml
+++ b/gem-maven-plugin/src/it/gemify-simple/pom.xml
@@ -1,13 +1,13 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
dummy
testing
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/gems-with-compile-test-and-provided-scope/pom.xml b/gem-maven-plugin/src/it/gems-with-compile-test-and-provided-scope/pom.xml
index c7711be1..4e61478f 100644
--- a/gem-maven-plugin/src/it/gems-with-compile-test-and-provided-scope/pom.xml
+++ b/gem-maven-plugin/src/it/gems-with-compile-test-and-provided-scope/pom.xml
@@ -4,10 +4,23 @@
com.example
gems-test
0.0.0
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-release
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -43,9 +56,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/gemspec-to-pom-forced/invoker.properties b/gem-maven-plugin/src/it/gemspec-to-pom-forced/invoker.properties
index 2a3e99af..cc53af0c 100644
--- a/gem-maven-plugin/src/it/gemspec-to-pom-forced/invoker.properties
+++ b/gem-maven-plugin/src/it/gemspec-to-pom-forced/invoker.properties
@@ -1,3 +1,3 @@
-invoker.goals = de.saumya.mojo:gem-maven-plugin:${project.version}:pom
+invoker.goals = org.jruby.maven:gem-maven-plugin:${project.version}:pom
invoker.mavenOpts = -client
diff --git a/gem-maven-plugin/src/it/gemspec-to-pom-forced/pom.xml b/gem-maven-plugin/src/it/gemspec-to-pom-forced/pom.xml
index 5acddfb6..af8645f7 100644
--- a/gem-maven-plugin/src/it/gemspec-to-pom-forced/pom.xml
+++ b/gem-maven-plugin/src/it/gemspec-to-pom-forced/pom.xml
@@ -1,13 +1,13 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/gemspec-to-pom/invoker.properties b/gem-maven-plugin/src/it/gemspec-to-pom/invoker.properties
index 2a3e99af..cc53af0c 100644
--- a/gem-maven-plugin/src/it/gemspec-to-pom/invoker.properties
+++ b/gem-maven-plugin/src/it/gemspec-to-pom/invoker.properties
@@ -1,3 +1,3 @@
-invoker.goals = de.saumya.mojo:gem-maven-plugin:${project.version}:pom
+invoker.goals = org.jruby.maven:gem-maven-plugin:${project.version}:pom
invoker.mavenOpts = -client
diff --git a/gem-maven-plugin/src/it/gemspec-to-pom/pom.xml b/gem-maven-plugin/src/it/gemspec-to-pom/pom.xml
index 5acddfb6..af8645f7 100644
--- a/gem-maven-plugin/src/it/gemspec-to-pom/pom.xml
+++ b/gem-maven-plugin/src/it/gemspec-to-pom/pom.xml
@@ -1,13 +1,13 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/include-rubygems-in-resources/pom.xml b/gem-maven-plugin/src/it/include-rubygems-in-resources/pom.xml
index 47e9bf14..d8d3f12d 100644
--- a/gem-maven-plugin/src/it/include-rubygems-in-resources/pom.xml
+++ b/gem-maven-plugin/src/it/include-rubygems-in-resources/pom.xml
@@ -9,10 +9,22 @@
testing
jar
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
- rubygems-release
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -42,9 +54,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/include-rubygems-in-test-resources-failure/pom.xml b/gem-maven-plugin/src/it/include-rubygems-in-test-resources-failure/pom.xml
index 0906656d..4f9fcde0 100644
--- a/gem-maven-plugin/src/it/include-rubygems-in-test-resources-failure/pom.xml
+++ b/gem-maven-plugin/src/it/include-rubygems-in-test-resources-failure/pom.xml
@@ -5,10 +5,22 @@
com.example
rubygems-in-test-resources-failure
testing
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
- rubygems-release
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -32,7 +44,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/include-rubygems-in-test-resources/pom.xml b/gem-maven-plugin/src/it/include-rubygems-in-test-resources/pom.xml
index 8e48c68e..fab8d91d 100644
--- a/gem-maven-plugin/src/it/include-rubygems-in-test-resources/pom.xml
+++ b/gem-maven-plugin/src/it/include-rubygems-in-test-resources/pom.xml
@@ -5,10 +5,22 @@
com.example
rubygems-in-test-resources
testing
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
- rubygems-release
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -36,6 +48,13 @@
${root.dir}/target/rubygems
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
maven-compiler-plugin
@@ -46,7 +65,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/initialize/pom.xml b/gem-maven-plugin/src/it/initialize/pom.xml
index b744e40d..408c395e 100644
--- a/gem-maven-plugin/src/it/initialize/pom.xml
+++ b/gem-maven-plugin/src/it/initialize/pom.xml
@@ -4,10 +4,22 @@
rubygems
dummy
testing
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
- rubygems-release
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -42,9 +54,16 @@
${root.dir}/target/rubygems
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
true
diff --git a/gem-maven-plugin/src/it/install-gem-pom/pom.xml b/gem-maven-plugin/src/it/install-gem-pom/pom.xml
index 86a6f5a7..d4b0a5ac 100644
--- a/gem-maven-plugin/src/it/install-gem-pom/pom.xml
+++ b/gem-maven-plugin/src/it/install-gem-pom/pom.xml
@@ -8,7 +8,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
true
diff --git a/gem-maven-plugin/src/it/install-java-gem-pom/pom.xml b/gem-maven-plugin/src/it/install-java-gem-pom/pom.xml
index f74d04ba..08714ac3 100644
--- a/gem-maven-plugin/src/it/install-java-gem-pom/pom.xml
+++ b/gem-maven-plugin/src/it/install-java-gem-pom/pom.xml
@@ -8,7 +8,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
true
diff --git a/gem-maven-plugin/src/it/install-pom-with-gemspec/pom.xml b/gem-maven-plugin/src/it/install-pom-with-gemspec/pom.xml
index 6255607c..9daeaf7c 100644
--- a/gem-maven-plugin/src/it/install-pom-with-gemspec/pom.xml
+++ b/gem-maven-plugin/src/it/install-pom-with-gemspec/pom.xml
@@ -9,7 +9,7 @@
first
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
true
diff --git a/gem-maven-plugin/src/it/jars-lock/pom.xml b/gem-maven-plugin/src/it/jars-lock/pom.xml
index 024a7c90..5ae1badf 100644
--- a/gem-maven-plugin/src/it/jars-lock/pom.xml
+++ b/gem-maven-plugin/src/it/jars-lock/pom.xml
@@ -4,10 +4,22 @@
rubygems
dummy
testing
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
- rubygems-release
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -34,9 +46,16 @@
${root.dir}/target/rubygems
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/package-gem-artifact-from-gemspec-no-pom/invoker.properties b/gem-maven-plugin/src/it/package-gem-artifact-from-gemspec-no-pom/invoker.properties
index 1933e06e..d547f668 100644
--- a/gem-maven-plugin/src/it/package-gem-artifact-from-gemspec-no-pom/invoker.properties
+++ b/gem-maven-plugin/src/it/package-gem-artifact-from-gemspec-no-pom/invoker.properties
@@ -1,3 +1,3 @@
-invoker.goals = de.saumya.mojo:gem-maven-plugin:${project.version}:package
+invoker.goals = org.jruby.maven:gem-maven-plugin:${project.version}:package
invoker.mavenOpts = -client
diff --git a/gem-maven-plugin/src/it/package-gem-artifact-from-gemspec-pom/pom.xml b/gem-maven-plugin/src/it/package-gem-artifact-from-gemspec-pom/pom.xml
index 936f8b94..5edba571 100644
--- a/gem-maven-plugin/src/it/package-gem-artifact-from-gemspec-pom/pom.xml
+++ b/gem-maven-plugin/src/it/package-gem-artifact-from-gemspec-pom/pom.xml
@@ -7,7 +7,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/script-inside-pom-failure/pom.xml b/gem-maven-plugin/src/it/script-inside-pom-failure/pom.xml
index 7a65dc00..6636b795 100644
--- a/gem-maven-plugin/src/it/script-inside-pom-failure/pom.xml
+++ b/gem-maven-plugin/src/it/script-inside-pom-failure/pom.xml
@@ -3,14 +3,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
dummy
testing
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/script-inside-pom-somewhere/pom.xml b/gem-maven-plugin/src/it/script-inside-pom-somewhere/pom.xml
index d4d18232..3de57e9b 100644
--- a/gem-maven-plugin/src/it/script-inside-pom-somewhere/pom.xml
+++ b/gem-maven-plugin/src/it/script-inside-pom-somewhere/pom.xml
@@ -3,14 +3,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
dummy
testing
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/script-inside-pom-to-outputfile-somewhere/pom.xml b/gem-maven-plugin/src/it/script-inside-pom-to-outputfile-somewhere/pom.xml
index 2e0e731e..95143030 100644
--- a/gem-maven-plugin/src/it/script-inside-pom-to-outputfile-somewhere/pom.xml
+++ b/gem-maven-plugin/src/it/script-inside-pom-to-outputfile-somewhere/pom.xml
@@ -1,13 +1,13 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
dummy
testing
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/script-inside-pom-to-outputfile/pom.xml b/gem-maven-plugin/src/it/script-inside-pom-to-outputfile/pom.xml
index ff786de2..da6052bb 100644
--- a/gem-maven-plugin/src/it/script-inside-pom-to-outputfile/pom.xml
+++ b/gem-maven-plugin/src/it/script-inside-pom-to-outputfile/pom.xml
@@ -1,13 +1,13 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
dummy
testing
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/script-inside-pom/pom.xml b/gem-maven-plugin/src/it/script-inside-pom/pom.xml
index 0b420e0e..e5840aad 100644
--- a/gem-maven-plugin/src/it/script-inside-pom/pom.xml
+++ b/gem-maven-plugin/src/it/script-inside-pom/pom.xml
@@ -3,14 +3,21 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
dummy
testing
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/it/small-project/application/pom.xml b/gem-maven-plugin/src/it/small-project/application/pom.xml
index a4934b8c..77c2f487 100644
--- a/gem-maven-plugin/src/it/small-project/application/pom.xml
+++ b/gem-maven-plugin/src/it/small-project/application/pom.xml
@@ -6,11 +6,23 @@
0.0.0
gem
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
- rubygems-release
- yhttp://rubygems-proxy.torquebox.org/releases
+ mavengems
+ ymavengem:https://rubygems.org
@@ -35,7 +47,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
true
diff --git a/gem-maven-plugin/src/it/small-project/ruby-world/pom.xml b/gem-maven-plugin/src/it/small-project/ruby-world/pom.xml
index 385538c0..c3ab8eda 100644
--- a/gem-maven-plugin/src/it/small-project/ruby-world/pom.xml
+++ b/gem-maven-plugin/src/it/small-project/ruby-world/pom.xml
@@ -8,7 +8,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
true
diff --git a/gem-maven-plugin/src/it/support-native-extensions/pending-pom.xml b/gem-maven-plugin/src/it/support-native-extensions/pending-pom.xml
index c43d1c2c..c1bd4987 100644
--- a/gem-maven-plugin/src/it/support-native-extensions/pending-pom.xml
+++ b/gem-maven-plugin/src/it/support-native-extensions/pending-pom.xml
@@ -25,7 +25,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
diff --git a/gem-maven-plugin/src/main/resources/META-INF/plexus/components.xml b/gem-maven-plugin/src/main/resources/META-INF/plexus/components.xml
index ee4e218c..57f74e39 100644
--- a/gem-maven-plugin/src/main/resources/META-INF/plexus/components.xml
+++ b/gem-maven-plugin/src/main/resources/META-INF/plexus/components.xml
@@ -9,7 +9,7 @@
- de.saumya.mojo:gem-maven-plugin:initialize
+ org.jruby.maven:gem-maven-plugin:initialize
org.apache.maven.plugins:maven-resources-plugin:resources
@@ -18,13 +18,13 @@
org.apache.maven.plugins:maven-compiler-plugin:compile
- de.saumya.mojo:gem-maven-plugin:package
+ org.jruby.maven:gem-maven-plugin:package
org.apache.maven.plugins:maven-install-plugin:install
- de.saumya.mojo:gem-maven-plugin:push
+ org.jruby.maven:gem-maven-plugin:push
@@ -54,7 +54,7 @@
- de.saumya.mojo:gem-maven-plugin:initialize
+ org.jruby.maven:gem-maven-plugin:initialize
org.apache.maven.plugins:maven-resources-plugin:resources
@@ -64,13 +64,13 @@
org.apache.maven.plugins:maven-jar-plugin:jar,
- de.saumya.mojo:gem-maven-plugin:package
+ org.jruby.maven:gem-maven-plugin:package
org.apache.maven.plugins:maven-install-plugin:install
- de.saumya.mojo:gem-maven-plugin:push
+ org.jruby.maven:gem-maven-plugin:push
diff --git a/gem-parent-mojo/pom.xml b/gem-parent-mojo/pom.xml
index ad599f81..d37bab38 100644
--- a/gem-parent-mojo/pom.xml
+++ b/gem-parent-mojo/pom.xml
@@ -3,8 +3,8 @@
4.0.0
parent-mojo
- de.saumya.mojo
- 2.0.2-SNAPSHOT
+ org.jruby.maven
+ 3.0.0-SNAPSHOT
../parent-mojo/pom.xml
gem-parent-mojo
diff --git a/gem-proxy/pom.xml b/gem-proxy/pom.xml
index 7b000642..4c534b29 100644
--- a/gem-proxy/pom.xml
+++ b/gem-proxy/pom.xml
@@ -3,7 +3,7 @@
4.0.0
jruby-maven-plugins
- de.saumya.mojo
+ org.jruby.maven
2.0.1-SNAPSHOT
gem-proxy
@@ -12,7 +12,7 @@
http://github.com/mkristian/jruby-maven-plugins
- de.saumya.mojo
+ org.jruby.maven
ruby-tools
${project.version}
diff --git a/gem-proxy/src/it/directory-browsing/pom.xml b/gem-proxy/src/it/directory-browsing/pom.xml
index eb8c15a4..86ae2740 100644
--- a/gem-proxy/src/it/directory-browsing/pom.xml
+++ b/gem-proxy/src/it/directory-browsing/pom.xml
@@ -7,7 +7,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.parent.version@
diff --git a/gem-proxy/src/it/load-bundler-gem/pom.xml b/gem-proxy/src/it/load-bundler-gem/pom.xml
index 0302ca61..b884f79c 100644
--- a/gem-proxy/src/it/load-bundler-gem/pom.xml
+++ b/gem-proxy/src/it/load-bundler-gem/pom.xml
@@ -21,7 +21,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.parent.version@
diff --git a/gem-proxy/src/it/load-bundler-prerelease-gem/pom.xml b/gem-proxy/src/it/load-bundler-prerelease-gem/pom.xml
index 500eb1a2..9a8a14b4 100644
--- a/gem-proxy/src/it/load-bundler-prerelease-gem/pom.xml
+++ b/gem-proxy/src/it/load-bundler-prerelease-gem/pom.xml
@@ -21,7 +21,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.parent.version@
diff --git a/gem-proxy/src/it/load-compass-gem/pom.xml b/gem-proxy/src/it/load-compass-gem/pom.xml
index e6749c1d..25e56019 100644
--- a/gem-proxy/src/it/load-compass-gem/pom.xml
+++ b/gem-proxy/src/it/load-compass-gem/pom.xml
@@ -21,7 +21,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.parent.version@
diff --git a/gem-proxy/src/it/load-copyright-header-gem/pom.xml b/gem-proxy/src/it/load-copyright-header-gem/pom.xml
index 67b7a3a1..df4df05f 100644
--- a/gem-proxy/src/it/load-copyright-header-gem/pom.xml
+++ b/gem-proxy/src/it/load-copyright-header-gem/pom.xml
@@ -21,7 +21,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.parent.version@
diff --git a/gem-proxy/src/it/load-heroku-gem/pom.xml b/gem-proxy/src/it/load-heroku-gem/pom.xml
index 35c4cb34..96af10e1 100644
--- a/gem-proxy/src/it/load-heroku-gem/pom.xml
+++ b/gem-proxy/src/it/load-heroku-gem/pom.xml
@@ -21,12 +21,12 @@
- de.saumya.mojo
- gem-maven-plugin
- @project.parent.version@
-
- false
-
+ org.jruby.maven
+ gem-maven-plugin
+ @project.parent.version@
+
+ false
+
diff --git a/gem-proxy/src/it/load-json-java-gem/pom.xml b/gem-proxy/src/it/load-json-java-gem/pom.xml
index aa38fe56..0378eb18 100644
--- a/gem-proxy/src/it/load-json-java-gem/pom.xml
+++ b/gem-proxy/src/it/load-json-java-gem/pom.xml
@@ -21,7 +21,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.parent.version@
diff --git a/gem-proxy/src/it/load-signet-gem/pom.xml b/gem-proxy/src/it/load-signet-gem/pom.xml
index ffa70daf..71dbdd63 100644
--- a/gem-proxy/src/it/load-signet-gem/pom.xml
+++ b/gem-proxy/src/it/load-signet-gem/pom.xml
@@ -27,7 +27,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.parent.version@
diff --git a/gem-proxy/src/it/load-therubyrhino-gem/pom.xml b/gem-proxy/src/it/load-therubyrhino-gem/pom.xml
index 1f6a3812..9f81d739 100644
--- a/gem-proxy/src/it/load-therubyrhino-gem/pom.xml
+++ b/gem-proxy/src/it/load-therubyrhino-gem/pom.xml
@@ -21,7 +21,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.parent.version@
diff --git a/gem-proxy/src/it/load_leafy_with_jars/pom.xml b/gem-proxy/src/it/load_leafy_with_jars/pom.xml
index 8e75ffb0..e0accf1c 100644
--- a/gem-proxy/src/it/load_leafy_with_jars/pom.xml
+++ b/gem-proxy/src/it/load_leafy_with_jars/pom.xml
@@ -21,7 +21,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.parent.version@
diff --git a/gem-proxy/src/it/load_leafy_without_jars/pom.xml b/gem-proxy/src/it/load_leafy_without_jars/pom.xml
index fcc46638..c8c2f6f4 100644
--- a/gem-proxy/src/it/load_leafy_without_jars/pom.xml
+++ b/gem-proxy/src/it/load_leafy_without_jars/pom.xml
@@ -21,7 +21,7 @@
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.parent.version@
diff --git a/gem-with-jar-extension/pom.xml b/gem-with-jar-extension/pom.xml
index 994da923..6c82c3fe 100644
--- a/gem-with-jar-extension/pom.xml
+++ b/gem-with-jar-extension/pom.xml
@@ -3,8 +3,8 @@
4.0.0
parent-mojo
- de.saumya.mojo
- 2.0.2-SNAPSHOT
+ org.jruby.maven
+ 3.0.0-SNAPSHOT
../parent-mojo/pom.xml
gem-with-jar-extension
diff --git a/gem-with-jar-extension/src/main/resources/META-INF/plexus/components.xml b/gem-with-jar-extension/src/main/resources/META-INF/plexus/components.xml
index 036a3ec6..6cf20771 100644
--- a/gem-with-jar-extension/src/main/resources/META-INF/plexus/components.xml
+++ b/gem-with-jar-extension/src/main/resources/META-INF/plexus/components.xml
@@ -9,7 +9,7 @@
- de.saumya.mojo:gem-maven-plugin:initialize
+ org.jruby.maven:gem-maven-plugin:initialize
org.apache.maven.plugins:maven-resources-plugin:resources
@@ -30,13 +30,13 @@
org.apache.maven.plugins:maven-surefire-plugin:test
- de.saumya.mojo:gem-maven-plugin:package
+ org.jruby.maven:gem-maven-plugin:package
org.apache.maven.plugins:maven-install-plugin:install
- de.saumya.mojo:gem-maven-plugin:push
+ org.jruby.maven:gem-maven-plugin:push
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index b3b908b6..7d76211d 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -3,7 +3,7 @@
4.0.0
parent-mojo
- de.saumya.mojo
+ org.jruby.maven
2.0.1-SNAPSHOT
../parent-mojo/pom.xml
diff --git a/integration-tests/src/it/big_gemfile2pom/invoker.properties b/integration-tests/src/it/big_gemfile2pom/invoker.properties
index a9baf3be..8b16a027 100644
--- a/integration-tests/src/it/big_gemfile2pom/invoker.properties
+++ b/integration-tests/src/it/big_gemfile2pom/invoker.properties
@@ -1,6 +1,6 @@
-invoker.goals = de.saumya.mojo:rails3-maven-plugin:${project.version}:pom de.saumya.mojo:jruby-maven-plugin:${project.version}:jruby
-invoker.goals.2 = de.saumya.mojo:rails3-maven-plugin:${project.version}:generate
-invoker.goals.3 = de.saumya.mojo:rails3-maven-plugin:${project.version}:rake
+invoker.goals = org.jruby.maven:rails3-maven-plugin:${project.version}:pom org.jruby.maven:jruby-maven-plugin:${project.version}:jruby
+invoker.goals.2 = org.jruby.maven:rails3-maven-plugin:${project.version}:generate
+invoker.goals.3 = org.jruby.maven:rails3-maven-plugin:${project.version}:rake
invoker.goals.4 = verify
invoker.mavenOpts = -client
#invoker.offline = true
diff --git a/integration-tests/src/it/gemfile2pom/invoker.properties b/integration-tests/src/it/gemfile2pom/invoker.properties
index a9baf3be..8b16a027 100644
--- a/integration-tests/src/it/gemfile2pom/invoker.properties
+++ b/integration-tests/src/it/gemfile2pom/invoker.properties
@@ -1,6 +1,6 @@
-invoker.goals = de.saumya.mojo:rails3-maven-plugin:${project.version}:pom de.saumya.mojo:jruby-maven-plugin:${project.version}:jruby
-invoker.goals.2 = de.saumya.mojo:rails3-maven-plugin:${project.version}:generate
-invoker.goals.3 = de.saumya.mojo:rails3-maven-plugin:${project.version}:rake
+invoker.goals = org.jruby.maven:rails3-maven-plugin:${project.version}:pom org.jruby.maven:jruby-maven-plugin:${project.version}:jruby
+invoker.goals.2 = org.jruby.maven:rails3-maven-plugin:${project.version}:generate
+invoker.goals.3 = org.jruby.maven:rails3-maven-plugin:${project.version}:rake
invoker.goals.4 = verify
invoker.mavenOpts = -client
#invoker.offline = true
diff --git a/integration-tests/src/it/new_latest_rails_mysql/invoker.properties b/integration-tests/src/it/new_latest_rails_mysql/invoker.properties
index b07b832e..da8b3f53 100644
--- a/integration-tests/src/it/new_latest_rails_mysql/invoker.properties
+++ b/integration-tests/src/it/new_latest_rails_mysql/invoker.properties
@@ -1,6 +1,6 @@
-invoker.goals = de.saumya.mojo:rails3-maven-plugin:${project.version}:rails de.saumya.mojo:jruby-maven-plugin:${project.version}:jruby
-invoker.goals.2 = de.saumya.mojo:rails3-maven-plugin:${project.version}:generate
-invoker.goals.3 = de.saumya.mojo:rails3-maven-plugin:${project.version}:rake
+invoker.goals = org.jruby.maven:rails3-maven-plugin:${project.version}:rails org.jruby.maven:jruby-maven-plugin:${project.version}:jruby
+invoker.goals.2 = org.jruby.maven:rails3-maven-plugin:${project.version}:generate
+invoker.goals.3 = org.jruby.maven:rails3-maven-plugin:${project.version}:rake
invoker.goals.4 = verify
invoker.mavenOpts = -client
#invoker.offline = true
diff --git a/integration-tests/src/it/new_latest_rails_postgres/invoker.properties b/integration-tests/src/it/new_latest_rails_postgres/invoker.properties
index 38990632..ecf03f80 100644
--- a/integration-tests/src/it/new_latest_rails_postgres/invoker.properties
+++ b/integration-tests/src/it/new_latest_rails_postgres/invoker.properties
@@ -1,6 +1,6 @@
-invoker.goals = de.saumya.mojo:rails3-maven-plugin:${project.version}:new de.saumya.mojo:jruby-maven-plugin:${project.version}:jruby
-invoker.goals.2 = de.saumya.mojo:rails3-maven-plugin:${project.version}:generate
-invoker.goals.3 = de.saumya.mojo:rails3-maven-plugin:${project.version}:rake
+invoker.goals = org.jruby.maven:rails3-maven-plugin:${project.version}:new org.jruby.maven:jruby-maven-plugin:${project.version}:jruby
+invoker.goals.2 = org.jruby.maven:rails3-maven-plugin:${project.version}:generate
+invoker.goals.3 = org.jruby.maven:rails3-maven-plugin:${project.version}:rake
invoker.goals.4 = verify
invoker.mavenOpts = -client
#invoker.offline = true
diff --git a/integration-tests/src/it/new_latest_rails_sqlite3/invoker.properties b/integration-tests/src/it/new_latest_rails_sqlite3/invoker.properties
index cfcca40f..999936a6 100644
--- a/integration-tests/src/it/new_latest_rails_sqlite3/invoker.properties
+++ b/integration-tests/src/it/new_latest_rails_sqlite3/invoker.properties
@@ -1,5 +1,5 @@
-invoker.goals = de.saumya.mojo:rails3-maven-plugin:${project.version}:new de.saumya.mojo:jruby-maven-plugin:${project.version}:jruby
-invoker.goals.2 = de.saumya.mojo:bundler-maven-plugin:${project.version}:install de.saumya.mojo:rails3-maven-plugin:${project.version}:generate
-invoker.goals.3 = de.saumya.mojo:rails3-maven-plugin:${project.version}:rake
+invoker.goals = org.jruby.maven:rails3-maven-plugin:${project.version}:new org.jruby.maven:jruby-maven-plugin:${project.version}:jruby
+invoker.goals.2 = org.jruby.maven:bundler-maven-plugin:${project.version}:install org.jruby.maven:rails3-maven-plugin:${project.version}:generate
+invoker.goals.3 = org.jruby.maven:rails3-maven-plugin:${project.version}:rake
#invoker.goals.4 = verify
invoker.mavenOpts = -client
diff --git a/integration-tests/src/it/new_rails_3_0_11_sqlite3/invoker.properties b/integration-tests/src/it/new_rails_3_0_11_sqlite3/invoker.properties
index 38990632..ecf03f80 100644
--- a/integration-tests/src/it/new_rails_3_0_11_sqlite3/invoker.properties
+++ b/integration-tests/src/it/new_rails_3_0_11_sqlite3/invoker.properties
@@ -1,6 +1,6 @@
-invoker.goals = de.saumya.mojo:rails3-maven-plugin:${project.version}:new de.saumya.mojo:jruby-maven-plugin:${project.version}:jruby
-invoker.goals.2 = de.saumya.mojo:rails3-maven-plugin:${project.version}:generate
-invoker.goals.3 = de.saumya.mojo:rails3-maven-plugin:${project.version}:rake
+invoker.goals = org.jruby.maven:rails3-maven-plugin:${project.version}:new org.jruby.maven:jruby-maven-plugin:${project.version}:jruby
+invoker.goals.2 = org.jruby.maven:rails3-maven-plugin:${project.version}:generate
+invoker.goals.3 = org.jruby.maven:rails3-maven-plugin:${project.version}:rake
invoker.goals.4 = verify
invoker.mavenOpts = -client
#invoker.offline = true
diff --git a/integration-tests/src/it/new_rails_3_0_11_sqlite3_datamapper/invoker.properties b/integration-tests/src/it/new_rails_3_0_11_sqlite3_datamapper/invoker.properties
index 4766ef1e..091e7e89 100644
--- a/integration-tests/src/it/new_rails_3_0_11_sqlite3_datamapper/invoker.properties
+++ b/integration-tests/src/it/new_rails_3_0_11_sqlite3_datamapper/invoker.properties
@@ -1,5 +1,5 @@
-invoker.goals = de.saumya.mojo:rails3-maven-plugin:${project.version}:new de.saumya.mojo:jruby-maven-plugin:${project.version}:jruby
-invoker.goals.2 = de.saumya.mojo:rails3-maven-plugin:${project.version}:generate
-invoker.goals.3 = de.saumya.mojo:rails3-maven-plugin:${project.version}:rake
+invoker.goals = org.jruby.maven:rails3-maven-plugin:${project.version}:new org.jruby.maven:jruby-maven-plugin:${project.version}:jruby
+invoker.goals.2 = org.jruby.maven:rails3-maven-plugin:${project.version}:generate
+invoker.goals.3 = org.jruby.maven:rails3-maven-plugin:${project.version}:rake
#invoker.goals.4 = verify
invoker.mavenOpts = -client
diff --git a/integration-tests/src/it/new_rails_3_0_11_sqlite3_offline/invoker.properties b/integration-tests/src/it/new_rails_3_0_11_sqlite3_offline/invoker.properties
index 6e310d1b..68c55be6 100644
--- a/integration-tests/src/it/new_rails_3_0_11_sqlite3_offline/invoker.properties
+++ b/integration-tests/src/it/new_rails_3_0_11_sqlite3_offline/invoker.properties
@@ -1,6 +1,6 @@
-invoker.goals = de.saumya.mojo:rails3-maven-plugin:${project.version}:new de.saumya.mojo:jruby-maven-plugin:${project.version}:jruby
-invoker.goals.2 = de.saumya.mojo:bundler-maven-plugin:${project.version}:install de.saumya.mojo:rails3-maven-plugin:${project.version}:generate
-invoker.goals.3 = de.saumya.mojo:rails3-maven-plugin:${project.version}:rake
+invoker.goals = org.jruby.maven:rails3-maven-plugin:${project.version}:new org.jruby.maven:jruby-maven-plugin:${project.version}:jruby
+invoker.goals.2 = org.jruby.maven:bundler-maven-plugin:${project.version}:install org.jruby.maven:rails3-maven-plugin:${project.version}:generate
+invoker.goals.3 = org.jruby.maven:rails3-maven-plugin:${project.version}:rake
invoker.goals.4 = verify
invoker.mavenOpts = -client
invoker.offline = true
diff --git a/integration-tests/src/it/new_rails_3_2_5_sqlite3/invoker.properties b/integration-tests/src/it/new_rails_3_2_5_sqlite3/invoker.properties
index b8cd5856..3039d1c3 100644
--- a/integration-tests/src/it/new_rails_3_2_5_sqlite3/invoker.properties
+++ b/integration-tests/src/it/new_rails_3_2_5_sqlite3/invoker.properties
@@ -1,6 +1,6 @@
-invoker.goals = de.saumya.mojo:rails3-maven-plugin:${project.version}:new de.saumya.mojo:jruby-maven-plugin:${project.version}:jruby
-invoker.goals.2 = de.saumya.mojo:bundler-maven-plugin:${project.version}:install de.saumya.mojo:rails3-maven-plugin:${project.version}:generate
-invoker.goals.3 = de.saumya.mojo:rails3-maven-plugin:${project.version}:rake
+invoker.goals = org.jruby.maven:rails3-maven-plugin:${project.version}:new org.jruby.maven:jruby-maven-plugin:${project.version}:jruby
+invoker.goals.2 = org.jruby.maven:bundler-maven-plugin:${project.version}:install org.jruby.maven:rails3-maven-plugin:${project.version}:generate
+invoker.goals.3 = org.jruby.maven:rails3-maven-plugin:${project.version}:rake
invoker.goals.4 = verify
invoker.mavenOpts = -client
#invoker.offline = true
diff --git a/integration-tests/src/it/pending_new_rails_3_1_1_sqlite3_offline/invoker.properties b/integration-tests/src/it/pending_new_rails_3_1_1_sqlite3_offline/invoker.properties
index 38990632..ecf03f80 100644
--- a/integration-tests/src/it/pending_new_rails_3_1_1_sqlite3_offline/invoker.properties
+++ b/integration-tests/src/it/pending_new_rails_3_1_1_sqlite3_offline/invoker.properties
@@ -1,6 +1,6 @@
-invoker.goals = de.saumya.mojo:rails3-maven-plugin:${project.version}:new de.saumya.mojo:jruby-maven-plugin:${project.version}:jruby
-invoker.goals.2 = de.saumya.mojo:rails3-maven-plugin:${project.version}:generate
-invoker.goals.3 = de.saumya.mojo:rails3-maven-plugin:${project.version}:rake
+invoker.goals = org.jruby.maven:rails3-maven-plugin:${project.version}:new org.jruby.maven:jruby-maven-plugin:${project.version}:jruby
+invoker.goals.2 = org.jruby.maven:rails3-maven-plugin:${project.version}:generate
+invoker.goals.3 = org.jruby.maven:rails3-maven-plugin:${project.version}:rake
invoker.goals.4 = verify
invoker.mavenOpts = -client
#invoker.offline = true
diff --git a/jruby-maven-plugin/pom.xml b/jruby-maven-plugin/pom.xml
index 178391c9..dacbc627 100644
--- a/jruby-maven-plugin/pom.xml
+++ b/jruby-maven-plugin/pom.xml
@@ -3,8 +3,8 @@
4.0.0
parent-mojo
- de.saumya.mojo
- 2.0.2-SNAPSHOT
+ org.jruby.maven
+ 3.0.0-SNAPSHOT
../parent-mojo/pom.xml
jruby-maven-plugin
@@ -12,7 +12,7 @@
JRuby Maven Mojo
- de.saumya.mojo
+ org.jruby.maven
ruby-tools
${project.parent.version}
diff --git a/jruby-maven-plugin/src/it/compile-dir/pom.xml b/jruby-maven-plugin/src/it/compile-dir/pom.xml
index 5743c191..386f7c6b 100644
--- a/jruby-maven-plugin/src/it/compile-dir/pom.xml
+++ b/jruby-maven-plugin/src/it/compile-dir/pom.xml
@@ -1,13 +1,13 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugin
@project.version@
diff --git a/jruby-maven-plugin/src/it/compile-failures-but-ignore-failures/pom.xml b/jruby-maven-plugin/src/it/compile-failures-but-ignore-failures/pom.xml
index 72fa07df..f9bbd98b 100644
--- a/jruby-maven-plugin/src/it/compile-failures-but-ignore-failures/pom.xml
+++ b/jruby-maven-plugin/src/it/compile-failures-but-ignore-failures/pom.xml
@@ -3,14 +3,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugin
@project.version@
diff --git a/jruby-maven-plugin/src/it/compile-failures/pom.xml b/jruby-maven-plugin/src/it/compile-failures/pom.xml
index 2b877530..d322c87c 100644
--- a/jruby-maven-plugin/src/it/compile-failures/pom.xml
+++ b/jruby-maven-plugin/src/it/compile-failures/pom.xml
@@ -3,14 +3,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugin
@project.version@
diff --git a/jruby-maven-plugin/src/it/compile-verbose/pom.xml b/jruby-maven-plugin/src/it/compile-verbose/pom.xml
index 2b877530..d322c87c 100644
--- a/jruby-maven-plugin/src/it/compile-verbose/pom.xml
+++ b/jruby-maven-plugin/src/it/compile-verbose/pom.xml
@@ -3,14 +3,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugin
@project.version@
diff --git a/jruby-maven-plugin/src/it/exec-embed/pom.xml b/jruby-maven-plugin/src/it/exec-embed/pom.xml
index e09ee060..3d6a515d 100644
--- a/jruby-maven-plugin/src/it/exec-embed/pom.xml
+++ b/jruby-maven-plugin/src/it/exec-embed/pom.xml
@@ -3,14 +3,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugin
@project.version@
diff --git a/jruby-maven-plugin/src/it/exec-file-from-lib/pom.xml b/jruby-maven-plugin/src/it/exec-file-from-lib/pom.xml
index b4725896..6dadb6f6 100644
--- a/jruby-maven-plugin/src/it/exec-file-from-lib/pom.xml
+++ b/jruby-maven-plugin/src/it/exec-file-from-lib/pom.xml
@@ -7,7 +7,7 @@
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugin
@project.parent.version@
diff --git a/jruby-maven-plugin/src/it/exec-file-from-ruby-source-directory/pom.xml b/jruby-maven-plugin/src/it/exec-file-from-ruby-source-directory/pom.xml
index 338741a4..ef1e853e 100644
--- a/jruby-maven-plugin/src/it/exec-file-from-ruby-source-directory/pom.xml
+++ b/jruby-maven-plugin/src/it/exec-file-from-ruby-source-directory/pom.xml
@@ -7,7 +7,7 @@
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugin
@project.parent.version@
diff --git a/jruby-maven-plugin/src/it/exec-file/pom.xml b/jruby-maven-plugin/src/it/exec-file/pom.xml
index 5743c191..386f7c6b 100644
--- a/jruby-maven-plugin/src/it/exec-file/pom.xml
+++ b/jruby-maven-plugin/src/it/exec-file/pom.xml
@@ -1,13 +1,13 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugin
@project.version@
diff --git a/jruby-maven-plugin/src/it/generate-java-and-compile/pom.xml b/jruby-maven-plugin/src/it/generate-java-and-compile/pom.xml
index 1f7f5c88..cbf43cc0 100644
--- a/jruby-maven-plugin/src/it/generate-java-and-compile/pom.xml
+++ b/jruby-maven-plugin/src/it/generate-java-and-compile/pom.xml
@@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
@@ -16,7 +16,7 @@
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugin
@project.version@
diff --git a/jruby-maven-plugin/src/it/jruby-version/goals.txt b/jruby-maven-plugin/src/it/jruby-version/goals.txt
index 1a415856..717039f2 100644
--- a/jruby-maven-plugin/src/it/jruby-version/goals.txt
+++ b/jruby-maven-plugin/src/it/jruby-version/goals.txt
@@ -1 +1 @@
-de.saumya.mojo:jruby-maven-plugin:jruby
+org.jruby.maven:jruby-maven-plugin:jruby
diff --git a/jruby-maven-plugin/src/it/jruby-version/pom.xml b/jruby-maven-plugin/src/it/jruby-version/pom.xml
index 5743c191..386f7c6b 100644
--- a/jruby-maven-plugin/src/it/jruby-version/pom.xml
+++ b/jruby-maven-plugin/src/it/jruby-version/pom.xml
@@ -1,13 +1,13 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugin
@project.version@
diff --git a/jruby-maven-plugin/src/it/simple-ruby-script-to-outputfile-somewhere/pom.xml b/jruby-maven-plugin/src/it/simple-ruby-script-to-outputfile-somewhere/pom.xml
index 4a57b93b..6f57e313 100644
--- a/jruby-maven-plugin/src/it/simple-ruby-script-to-outputfile-somewhere/pom.xml
+++ b/jruby-maven-plugin/src/it/simple-ruby-script-to-outputfile-somewhere/pom.xml
@@ -3,14 +3,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugin
@project.version@
diff --git a/jruby-maven-plugin/src/it/simple-ruby-script-to-outputfile/pom.xml b/jruby-maven-plugin/src/it/simple-ruby-script-to-outputfile/pom.xml
index 7cea2fd7..177e85f8 100644
--- a/jruby-maven-plugin/src/it/simple-ruby-script-to-outputfile/pom.xml
+++ b/jruby-maven-plugin/src/it/simple-ruby-script-to-outputfile/pom.xml
@@ -1,13 +1,13 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugin
@project.version@
diff --git a/jruby-maven-plugin/src/it/simple-ruby-script/pom.xml b/jruby-maven-plugin/src/it/simple-ruby-script/pom.xml
index 91a363c9..826f78d1 100644
--- a/jruby-maven-plugin/src/it/simple-ruby-script/pom.xml
+++ b/jruby-maven-plugin/src/it/simple-ruby-script/pom.xml
@@ -3,14 +3,14 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby
testing
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugin
@project.version@
diff --git a/minitest-maven-plugin/pom.xml b/minitest-maven-plugin/pom.xml
index 0afcae67..e9ec00f7 100644
--- a/minitest-maven-plugin/pom.xml
+++ b/minitest-maven-plugin/pom.xml
@@ -3,8 +3,8 @@
4.0.0
test-parent-mojo
- de.saumya.mojo
- 2.0.2-SNAPSHOT
+ org.jruby.maven
+ 3.0.0-SNAPSHOT
../test-parent-mojo/pom.xml
minitest-maven-plugin
diff --git a/minitest-maven-plugin/src/it/minispec-with-jar-dependencies/pom.xml b/minitest-maven-plugin/src/it/minispec-with-jar-dependencies/pom.xml
index 48665a99..c975a961 100644
--- a/minitest-maven-plugin/src/it/minispec-with-jar-dependencies/pom.xml
+++ b/minitest-maven-plugin/src/it/minispec-with-jar-dependencies/pom.xml
@@ -3,14 +3,27 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
minitest-with-jar-dependencies
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -31,9 +44,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
minitest-maven-plugin
@project.version@
diff --git a/minitest-maven-plugin/src/it/minitest-failure/pom.xml b/minitest-maven-plugin/src/it/minitest-failure/pom.xml
index e3dd6646..298e8f5c 100644
--- a/minitest-maven-plugin/src/it/minitest-failure/pom.xml
+++ b/minitest-maven-plugin/src/it/minitest-failure/pom.xml
@@ -1,14 +1,27 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
minitest-failure
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -23,9 +36,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
minitest-maven-plugin
@project.version@
diff --git a/minitest-maven-plugin/src/it/minitest-from-jruby/pom.xml b/minitest-maven-plugin/src/it/minitest-from-jruby/pom.xml
index e3c7c583..7f02298a 100644
--- a/minitest-maven-plugin/src/it/minitest-from-jruby/pom.xml
+++ b/minitest-maven-plugin/src/it/minitest-from-jruby/pom.xml
@@ -1,14 +1,27 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
minitest-from-jruby
testing
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -23,9 +36,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
minitest-maven-plugin
@project.version@
diff --git a/minitest-maven-plugin/src/it/minitest-pom-210/pom.xml b/minitest-maven-plugin/src/it/minitest-pom-210/pom.xml
index 58fde871..24488f59 100644
--- a/minitest-maven-plugin/src/it/minitest-pom-210/pom.xml
+++ b/minitest-maven-plugin/src/it/minitest-pom-210/pom.xml
@@ -1,14 +1,27 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
minitest-pom
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -23,9 +36,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
minitest-maven-plugin
@project.version@
diff --git a/minitest-maven-plugin/src/it/minitest-pom-508/pom.xml b/minitest-maven-plugin/src/it/minitest-pom-508/pom.xml
index 44565442..6edb1eb0 100644
--- a/minitest-maven-plugin/src/it/minitest-pom-508/pom.xml
+++ b/minitest-maven-plugin/src/it/minitest-pom-508/pom.xml
@@ -1,14 +1,27 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
minitest-pom
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -23,9 +36,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
minitest-maven-plugin
@project.version@
diff --git a/minitest-maven-plugin/src/it/minitest-somewhere/pom.xml b/minitest-maven-plugin/src/it/minitest-somewhere/pom.xml
index f23b1eb9..040f44c6 100644
--- a/minitest-maven-plugin/src/it/minitest-somewhere/pom.xml
+++ b/minitest-maven-plugin/src/it/minitest-somewhere/pom.xml
@@ -1,14 +1,27 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
minitest-somewhere
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -23,9 +36,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
minitest-maven-plugin
@project.version@
diff --git a/minitest-maven-plugin/src/it/minitest-summary-report/pom.xml b/minitest-maven-plugin/src/it/minitest-summary-report/pom.xml
index 54f4de1d..858f24d3 100644
--- a/minitest-maven-plugin/src/it/minitest-summary-report/pom.xml
+++ b/minitest-maven-plugin/src/it/minitest-summary-report/pom.xml
@@ -1,14 +1,27 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
minitest-pom
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -23,9 +36,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
minitest-maven-plugin
@project.version@
diff --git a/parent-mojo/pom.xml b/parent-mojo/pom.xml
index f7a6d74a..6c01ab83 100644
--- a/parent-mojo/pom.xml
+++ b/parent-mojo/pom.xml
@@ -2,9 +2,9 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugins
- 2.0.2-SNAPSHOT
+ 3.0.0-SNAPSHOT
parent-mojo
pom
@@ -59,7 +59,7 @@
maven-plugin-plugin
- 3.6.1
+ 3.9.0
process-sources
diff --git a/pom.xml b/pom.xml
index 6c5f00a8..c56f0143 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,10 +6,10 @@
oss-parent
7
- de.saumya.mojo
+ org.jruby.maven
jruby-maven-plugins
pom
- 2.0.2-SNAPSHOT
+ 3.0.0-SNAPSHOT
JRuby Maven Mojos
aggregation project for various jruby related maven plugins
@@ -49,6 +49,19 @@
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
sonatype
@@ -63,6 +76,13 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
diff --git a/rake-maven-plugin/pom.xml b/rake-maven-plugin/pom.xml
index 0c86fee7..322d7e32 100644
--- a/rake-maven-plugin/pom.xml
+++ b/rake-maven-plugin/pom.xml
@@ -3,7 +3,7 @@
4.0.0
gem-parent-mojo
- de.saumya.mojo
+ org.jruby.maven
2.0.1-SNAPSHOT
../gem-parent-mojo/pom.xml
diff --git a/rake-maven-plugin/src/it/rake-file/invoker.properties b/rake-maven-plugin/src/it/rake-file/invoker.properties
index d1fb6b21..ad975d9f 100644
--- a/rake-maven-plugin/src/it/rake-file/invoker.properties
+++ b/rake-maven-plugin/src/it/rake-file/invoker.properties
@@ -1,2 +1,2 @@
-invoker.goals = de.saumya.mojo:rake-maven-plugin:rake
+invoker.goals = org.jruby.maven:rake-maven-plugin:rake
invoker.mavenOpts = -client
diff --git a/rake-maven-plugin/src/it/rake-file/pom.xml b/rake-maven-plugin/src/it/rake-file/pom.xml
index 43ced922..0b845cde 100644
--- a/rake-maven-plugin/src/it/rake-file/pom.xml
+++ b/rake-maven-plugin/src/it/rake-file/pom.xml
@@ -1,14 +1,27 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
rake-file
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -21,9 +34,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
rake-maven-plugin
@project.version@
true
diff --git a/rake-maven-plugin/src/it/rake-somewhere/invoker.properties b/rake-maven-plugin/src/it/rake-somewhere/invoker.properties
index d1fb6b21..ad975d9f 100644
--- a/rake-maven-plugin/src/it/rake-somewhere/invoker.properties
+++ b/rake-maven-plugin/src/it/rake-somewhere/invoker.properties
@@ -1,2 +1,2 @@
-invoker.goals = de.saumya.mojo:rake-maven-plugin:rake
+invoker.goals = org.jruby.maven:rake-maven-plugin:rake
invoker.mavenOpts = -client
diff --git a/rake-maven-plugin/src/it/rake-somewhere/pom.xml b/rake-maven-plugin/src/it/rake-somewhere/pom.xml
index fba6498c..bec31375 100644
--- a/rake-maven-plugin/src/it/rake-somewhere/pom.xml
+++ b/rake-maven-plugin/src/it/rake-somewhere/pom.xml
@@ -1,14 +1,27 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
jruby-version
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -21,15 +34,22 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
gem-maven-plugin
@project.version@
true
- de.saumya.mojo
+ org.jruby.maven
rake-maven-plugin
@project.version@
diff --git a/rake-maven-plugin/src/it/rake-tasks/invoker.properties b/rake-maven-plugin/src/it/rake-tasks/invoker.properties
index d1fb6b21..ad975d9f 100644
--- a/rake-maven-plugin/src/it/rake-tasks/invoker.properties
+++ b/rake-maven-plugin/src/it/rake-tasks/invoker.properties
@@ -1,2 +1,2 @@
-invoker.goals = de.saumya.mojo:rake-maven-plugin:rake
+invoker.goals = org.jruby.maven:rake-maven-plugin:rake
invoker.mavenOpts = -client
diff --git a/rake-maven-plugin/src/it/rake-tasks/pom.xml b/rake-maven-plugin/src/it/rake-tasks/pom.xml
index c27466fe..5d3e8112 100644
--- a/rake-maven-plugin/src/it/rake-tasks/pom.xml
+++ b/rake-maven-plugin/src/it/rake-tasks/pom.xml
@@ -1,14 +1,27 @@
4.0.0
- de.saumya.mojo
+ org.jruby.maven
rake-task
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -21,9 +34,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
rake-maven-plugin
@project.version@
true
diff --git a/rspec-maven-plugin/pom.xml b/rspec-maven-plugin/pom.xml
index 433f2f0d..0cf5a084 100644
--- a/rspec-maven-plugin/pom.xml
+++ b/rspec-maven-plugin/pom.xml
@@ -3,8 +3,8 @@
4.0.0
test-parent-mojo
- de.saumya.mojo
- 2.0.2-SNAPSHOT
+ org.jruby.maven
+ 3.0.0-SNAPSHOT
../test-parent-mojo/pom.xml
rspec-maven-plugin
diff --git a/rspec-maven-plugin/src/it/rspec-3.x/pom.xml b/rspec-maven-plugin/src/it/rspec-3.x/pom.xml
index 46f38043..2016a47a 100644
--- a/rspec-maven-plugin/src/it/rspec-3.x/pom.xml
+++ b/rspec-maven-plugin/src/it/rspec-3.x/pom.xml
@@ -3,14 +3,27 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
spec-success
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -24,9 +37,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
rspec-maven-plugin
@project.version@
true
diff --git a/rspec-maven-plugin/src/it/rspec-failure/pom.xml b/rspec-maven-plugin/src/it/rspec-failure/pom.xml
index d63846f3..88297c63 100644
--- a/rspec-maven-plugin/src/it/rspec-failure/pom.xml
+++ b/rspec-maven-plugin/src/it/rspec-failure/pom.xml
@@ -3,14 +3,27 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
spec-success
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -24,9 +37,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
rspec-maven-plugin
@project.version@
diff --git a/rspec-maven-plugin/src/it/rspec-path/pom.xml b/rspec-maven-plugin/src/it/rspec-path/pom.xml
index d18c4b9b..e49db503 100644
--- a/rspec-maven-plugin/src/it/rspec-path/pom.xml
+++ b/rspec-maven-plugin/src/it/rspec-path/pom.xml
@@ -3,14 +3,27 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
spec-success
testing
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -24,9 +37,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
rspec-maven-plugin
@project.version@
true
diff --git a/rspec-maven-plugin/src/it/rspec-pom/pom.xml b/rspec-maven-plugin/src/it/rspec-pom/pom.xml
index 9bd719a0..851b5424 100644
--- a/rspec-maven-plugin/src/it/rspec-pom/pom.xml
+++ b/rspec-maven-plugin/src/it/rspec-pom/pom.xml
@@ -3,14 +3,27 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
spec-success
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -24,9 +37,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
rspec-maven-plugin
@project.version@
true
diff --git a/rspec-maven-plugin/src/it/rspec-somewhere/pom.xml b/rspec-maven-plugin/src/it/rspec-somewhere/pom.xml
index d3593620..e8700de1 100644
--- a/rspec-maven-plugin/src/it/rspec-somewhere/pom.xml
+++ b/rspec-maven-plugin/src/it/rspec-somewhere/pom.xml
@@ -3,14 +3,27 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
spec-somewhere
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -24,9 +37,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
rspec-maven-plugin
@project.version@
diff --git a/rspec-maven-plugin/src/it/rspec-summary-report/pom.xml b/rspec-maven-plugin/src/it/rspec-summary-report/pom.xml
index 6febff28..9dab6519 100644
--- a/rspec-maven-plugin/src/it/rspec-summary-report/pom.xml
+++ b/rspec-maven-plugin/src/it/rspec-summary-report/pom.xml
@@ -3,14 +3,27 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
spec-success
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -24,9 +37,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
rspec-maven-plugin
@project.version@
diff --git a/rspec-maven-plugin/src/it/rspec-with-jar-dependencies/pom.xml b/rspec-maven-plugin/src/it/rspec-with-jar-dependencies/pom.xml
index b337abac..ac6644a1 100644
--- a/rspec-maven-plugin/src/it/rspec-with-jar-dependencies/pom.xml
+++ b/rspec-maven-plugin/src/it/rspec-with-jar-dependencies/pom.xml
@@ -3,14 +3,27 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
spec-success
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -31,9 +44,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
rspec-maven-plugin
@project.version@
diff --git a/rspec-maven-plugin/src/it/with-custom-specs-path/pom.xml b/rspec-maven-plugin/src/it/with-custom-specs-path/pom.xml
index 0bd06fe3..dbf6c487 100644
--- a/rspec-maven-plugin/src/it/with-custom-specs-path/pom.xml
+++ b/rspec-maven-plugin/src/it/with-custom-specs-path/pom.xml
@@ -3,14 +3,27 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
spec-file
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -24,9 +37,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
rspec-maven-plugin
@project.version@
diff --git a/rspec-maven-plugin/src/it/with-error-in-before/pom.xml b/rspec-maven-plugin/src/it/with-error-in-before/pom.xml
index d63846f3..88297c63 100644
--- a/rspec-maven-plugin/src/it/with-error-in-before/pom.xml
+++ b/rspec-maven-plugin/src/it/with-error-in-before/pom.xml
@@ -3,14 +3,27 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
spec-success
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -24,9 +37,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
rspec-maven-plugin
@project.version@
diff --git a/rspec-maven-plugin/src/it/with-java-classes/pom.xml b/rspec-maven-plugin/src/it/with-java-classes/pom.xml
index 64affc1f..0c7c1713 100644
--- a/rspec-maven-plugin/src/it/with-java-classes/pom.xml
+++ b/rspec-maven-plugin/src/it/with-java-classes/pom.xml
@@ -3,14 +3,27 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
spec-success
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -29,9 +42,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
rspec-maven-plugin
@project.version@
diff --git a/rspec-maven-plugin/src/it/without-specs-path/pom.xml b/rspec-maven-plugin/src/it/without-specs-path/pom.xml
index af77e3af..52036710 100644
--- a/rspec-maven-plugin/src/it/without-specs-path/pom.xml
+++ b/rspec-maven-plugin/src/it/without-specs-path/pom.xml
@@ -3,14 +3,27 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- de.saumya.mojo
+ org.jruby.maven
spec-file
testing
-
+
+
+
+
+ false
+
+
+ true
+
+ sonatype
+ https://oss.sonatype.org/content/repositories/snapshots/
+
+
+
- rubygems-releases
- http://rubygems-proxy.torquebox.org/releases
+ mavengems
+ mavengem:https://rubygems.org
@@ -24,9 +37,16 @@
+
+
+ org.jruby.maven
+ mavengem-wagon
+ 2.0.0-SNAPSHOT
+
+
- de.saumya.mojo
+ org.jruby.maven
rspec-maven-plugin
@project.version@
diff --git a/ruby-tools/pom.xml b/ruby-tools/pom.xml
index c38d31a0..85bef695 100644
--- a/ruby-tools/pom.xml
+++ b/ruby-tools/pom.xml
@@ -3,11 +3,11 @@
4.0.0
jruby-maven-plugins
- de.saumya.mojo
- 2.0.2-SNAPSHOT
+ org.jruby.maven
+ 3.0.0-SNAPSHOT
ruby-tools
- 2.0.2-SNAPSHOT
+ 3.0.0-SNAPSHOT
Ruby Tools
@@ -78,13 +78,6 @@
${root.dir}/target/rubygems
-
-
- org.torquebox.mojo
- mavengem-wagon
- 1.0.3
-
-
${basedir}/src/main/resources
@@ -182,7 +175,7 @@