Skip to content

Commit 38fc71e

Browse files
committed
Switch to licenser
1 parent 8fd56d1 commit 38fc71e

File tree

11 files changed

+12
-7
lines changed

11 files changed

+12
-7
lines changed

build.gradle

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
id 'maven-publish'
99
id 'com.gradle.plugin-publish' version '0.9.4'
1010

11-
id 'com.github.hierynomus.license' version '0.11.0'
11+
id 'net.minecrell.licenser' version '0.1.5'
1212
}
1313

1414
group = 'net.minecrell'
@@ -23,14 +23,9 @@ dependencies {
2323
}
2424

2525
license {
26-
header file('LICENSE')
26+
header = file('LICENSE')
2727
include '**/*.java'
2828
include '**/*.groovy'
29-
30-
strictCheck true
31-
mapping {
32-
java = 'SLASHSTAR_STYLE'
33-
}
3429
}
3530

3631
task sourceJar(type: Jar) {

src/main/groovy/net/minecrell/gitpatcher/Git.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020
* THE SOFTWARE.
2121
*/
22+
2223
package net.minecrell.gitpatcher
2324

2425
class Git {

src/main/groovy/net/minecrell/gitpatcher/GitPatcher.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020
* THE SOFTWARE.
2121
*/
22+
2223
package net.minecrell.gitpatcher
2324

2425
import net.minecrell.gitpatcher.task.UpdateSubmodulesTask

src/main/groovy/net/minecrell/gitpatcher/PatchExtension.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020
* THE SOFTWARE.
2121
*/
22+
2223
package net.minecrell.gitpatcher
2324

2425
class PatchExtension {

src/main/groovy/net/minecrell/gitpatcher/task/FindGitTask.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020
* THE SOFTWARE.
2121
*/
22+
2223
package net.minecrell.gitpatcher.task
2324

2425
import net.minecrell.gitpatcher.Git

src/main/groovy/net/minecrell/gitpatcher/task/GitTask.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020
* THE SOFTWARE.
2121
*/
22+
2223
package net.minecrell.gitpatcher.task
2324

2425
import org.gradle.api.DefaultTask

src/main/groovy/net/minecrell/gitpatcher/task/SubmoduleTask.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020
* THE SOFTWARE.
2121
*/
22+
2223
package net.minecrell.gitpatcher.task
2324

2425
abstract class SubmoduleTask extends GitTask {

src/main/groovy/net/minecrell/gitpatcher/task/UpdateSubmodulesTask.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020
* THE SOFTWARE.
2121
*/
22+
2223
package net.minecrell.gitpatcher.task
2324

2425
import static java.lang.System.out

src/main/groovy/net/minecrell/gitpatcher/task/patch/ApplyPatchesTask.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020
* THE SOFTWARE.
2121
*/
22+
2223
package net.minecrell.gitpatcher.task.patch
2324

2425
import static java.lang.System.out

src/main/groovy/net/minecrell/gitpatcher/task/patch/MakePatchesTask.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020
* THE SOFTWARE.
2121
*/
22+
2223
package net.minecrell.gitpatcher.task.patch
2324

2425
import static java.lang.System.out

0 commit comments

Comments
 (0)