Skip to content

Commit 2ecf0e0

Browse files
author
Krystian Panek
committed
Build improvements
1 parent b982952 commit 2ecf0e0

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

build.gradle

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
plugins {
22
id 'java-gradle-plugin'
33
id 'maven-publish'
4-
id "com.jfrog.bintray" version "1.7.3"
4+
id "com.jfrog.bintray" version "1.8.4"
55
}
66

77
group 'com.neva.commons'
88
description = 'Gitignore File Filter'
99
defaultTasks = ['publishToMavenLocal']
1010

11-
sourceCompatibility = 1.8
12-
1311
repositories {
1412
mavenCentral()
1513
}
@@ -18,6 +16,13 @@ dependencies {
1816
testCompile group: 'junit', name: 'junit', version: '4.12'
1917
}
2018

19+
java {
20+
sourceCompatibility = JavaVersion.VERSION_1_8
21+
targetCompatibility = JavaVersion.VERSION_1_8
22+
withJavadocJar()
23+
withSourcesJar()
24+
}
25+
2126
publishing {
2227
publications {
2328
mavenJava(MavenPublication) {

gradle/wrapper/gradle-wrapper.jar

0 Bytes
Binary file not shown.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Fri Dec 01 16:47:42 CET 2017
1+
#Wed Feb 12 15:45:26 CET 2020
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
23
distributionBase=GRADLE_USER_HOME
34
distributionPath=wrapper/dists
4-
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-rc-2-all.zip
6+
zipStoreBase=GRADLE_USER_HOME

gradlew

100644100755
File mode changed.

src/main/java/com/neva/commons/gitignore/FnMatch.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static enum Flag {
4949
PATHNAME,
5050
/** Period must be matched by period. */
5151
PERIOD,
52-
/** Ignore /<tail> after Imatch. */
52+
/** Ignore "tail" tag after Imatch. */
5353
LEADING_DIR,
5454
/** Case insensitive search. */
5555
CASEFOLD

0 commit comments

Comments
 (0)