Skip to content

Commit

Permalink
update project coordinates
Browse files Browse the repository at this point in the history
  • Loading branch information
Loic Hermann committed Aug 10, 2022
1 parent 8a50ed1 commit f2b5f9a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This plugin is hosted on the [Gradle Plugin Portal](https://plugins.gradle.org/p
To use the plugin, add the following to your `build.gradle` file.

plugins {
id 'net.linguica.maven-settings' version '0.5'
id 'io.github.rmanibus.maven-settings' version '0.7'
}

For Gradle 2.0 or earlier you must add the following:
Expand All @@ -23,11 +23,11 @@ For Gradle 2.0 or earlier you must add the following:
}

dependencies {
classpath 'net.linguica.gradle:maven-settings-plugin:0.5'
classpath 'io.github.rmanibus.gradle:maven-settings-plugin:0.7'
}
}

apply plugin: 'net.linguica.maven-settings'
apply plugin: 'io.github.rmanibus.maven-settings'

## Mirrors
The plugin exposes Maven-like mirror capabilities. The plugin will properly register and enforce any
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ java {
}

pluginBundle {
website = 'https://github.com/mark-vieira/gradle-maven-settings-plugin'
vcsUrl = 'https://github.com/mark-vieira/gradle-maven-settings-plugin'
website = 'https://github.com/rmanibus/gradle-maven-settings-plugin'
vcsUrl = 'https://github.com/rmanibus/gradle-maven-settings-plugin'
description = 'Gradle plugin for exposing Maven settings file configuration to Gradle project.'
tags = ['settings', 'maven']

Expand All @@ -43,7 +43,7 @@ gradlePlugin {

plugins {
mavenSettings {
id = 'net.linguica.maven-settings'
id = 'io.github.rmanibus.maven-settings'
displayName = 'Maven Settings Plugin'
implementationClass = 'net.linguica.gradle.maven.settings.MavenSettingsPlugin'
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group=net.linguica.gradle
group=io.github.rmanibus.gradle
version=0.6-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class MavenSettingsPluginTest extends AbstractMavenSettingsTest {
@Test
void applyMavenSettingsPlugin() {
project.with {
apply plugin: 'net.linguica.maven-settings'
apply plugin: 'io.github.rmanibus.maven-settings'
}

assertTrue(project.plugins.hasPlugin(MavenSettingsPlugin.class))
Expand Down

0 comments on commit f2b5f9a

Please sign in to comment.