Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ java {
}

group = 'io.github.yuokada'
version = '0.7.0'
version = '0.7.0-SNAPSHOT'
description = 'Embulk plugin for generate dummy records by Java.'

repositories {
Expand Down Expand Up @@ -67,7 +67,7 @@ checkstyleTest {
configFile = file("${project.rootDir}/config/checkstyle/default.xml")
ignoreFailures = true
}
task checkstyle(type: Checkstyle) {
tasks.register('checkstyle', Checkstyle) {
classpath = sourceSets.main.output + sourceSets.test.output
source = sourceSets.main.allJava + sourceSets.test.allJava
}
Expand All @@ -90,6 +90,19 @@ spotbugs {
// }
// }

publishing {
publications {
embulkPluginMaven(MavenPublication) {
from components.java
}
}
repositories {
maven {
url = "${project.buildDir}/mavenPublishLocal"
}
}
}

gem {
from("LICENSE.txt")
authors = ["yuokada"]
Expand Down
Loading