Skip to content

Commit

Permalink
Prepare 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eskatos committed Jan 14, 2019
1 parent ee4b978 commit 6f85cbf
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
**build.gradle(.kts)**

plugins {
id("org.codeartisans.rat") version "0.4.0"
id("org.nosphere.apache.rat") version "0.4.0"
}

tasks.rat {
Expand Down
12 changes: 10 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,22 @@ plugins {
id("org.nosphere.honker") version "0.3.0"
}

group = "org.codeartisans"
version = "0.4.0-SNAPSHOT"
group = "org.nosphere.apache"
version = "0.4.0"

pluginBundle {
website = "https://github.com/eskatos/creadur-rat-gradle"
vcsUrl = "https://github.com/eskatos/creadur-rat-gradle"
description = "Apache RAT (Release Audit Tool) Gradle Plugin"
tags = listOf("apache", "release-audit", "license")
plugins {
named("org.nosphere.apache.rat-base") {
displayName = "Apache RAT Base Gradle Plugin"
}
named("org.nosphere.apache.rat") {
displayName = "Apache RAT Gradle Plugin"
}
}
}

java {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.codeartisans
package org.nosphere.apache

plugins {
id("reporting-base")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.codeartisans
package org.nosphere.apache

import org.codeartisans.rat.RatTask
import org.nosphere.apache.rat.RatTask

import org.gradle.util.GradleVersion


plugins {
id("org.codeartisans.rat-base")
id("org.nosphere.apache.rat-base")
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.codeartisans.rat
package org.nosphere.apache.rat

import org.gradle.api.DefaultTask
import org.gradle.api.file.FileTree
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.codeartisans.rat
package org.nosphere.apache.rat

import org.apache.rat.Defaults
import org.apache.rat.Report
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.codeartisans
package org.nosphere.apache.rat

import org.gradle.testkit.runner.BuildResult
import org.gradle.testkit.runner.GradleRunner
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.codeartisans
package org.nosphere.apache.rat

import org.junit.Test
import org.junit.runner.RunWith
Expand All @@ -30,7 +30,7 @@ class BaseRatPluginTest(gradleVersion: String) : AbstractPluginTest(gradleVersio

withBuildScript("""
plugins {
id("org.codeartisans.rat-base")
id("org.nosphere.apache.rat-base")
}
repositories {
gradlePluginPortal()
Expand All @@ -50,12 +50,12 @@ class BaseRatPluginTest(gradleVersion: String) : AbstractPluginTest(gradleVersio

withBuildScript("""
plugins {
id("org.codeartisans.rat-base")
id("org.nosphere.apache.rat-base")
}
repositories {
gradlePluginPortal()
}
task someRat(type: org.codeartisans.rat.RatTask) {
task someRat(type: org.nosphere.apache.rat.RatTask) {
verbose.set(true)
inputDir.set(rootDir)
excludes = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.codeartisans
package org.nosphere.apache.rat

import org.gradle.testkit.runner.TaskOutcome
import org.hamcrest.CoreMatchers.equalTo
Expand All @@ -35,7 +35,7 @@ class RatPluginTest(gradleVersion: String) : AbstractPluginTest(gradleVersion) {
withBuildScript("""
plugins {
id("base")
id("org.codeartisans.rat")
id("org.nosphere.apache.rat")
}
repositories {
gradlePluginPortal()
Expand Down Expand Up @@ -79,7 +79,7 @@ class RatPluginTest(gradleVersion: String) : AbstractPluginTest(gradleVersion) {
withBuildScript("""
plugins {
id("base")
id("org.codeartisans.rat")
id("org.nosphere.apache.rat")
}
repositories {
gradlePluginPortal()
Expand Down Expand Up @@ -112,7 +112,7 @@ class RatPluginTest(gradleVersion: String) : AbstractPluginTest(gradleVersion) {
withBuildScript("""
plugins {
id("base")
id("org.codeartisans.rat")
id("org.nosphere.apache.rat")
}
repositories {
gradlePluginPortal()
Expand Down

0 comments on commit 6f85cbf

Please sign in to comment.