diff options
-rw-r--r-- | build.gradle | 3 | ||||
-rw-r--r-- | jitpack.yml | 2 | ||||
-rw-r--r-- | publish.gradle | 51 |
3 files changed, 54 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index b4b5242..4ec32b5 100644 --- a/build.gradle +++ b/build.gradle | |||
@@ -20,8 +20,7 @@ plugins { | |||
20 | id 'java' | 20 | id 'java' |
21 | } | 21 | } |
22 | 22 | ||
23 | group 'org.pacien' | 23 | apply from: 'publish.gradle' |
24 | version '1.0-SNAPSHOT' | ||
25 | 24 | ||
26 | sourceCompatibility = 1.11 | 25 | sourceCompatibility = 1.11 |
27 | 26 | ||
diff --git a/jitpack.yml b/jitpack.yml new file mode 100644 index 0000000..adb3fe1 --- /dev/null +++ b/jitpack.yml | |||
@@ -0,0 +1,2 @@ | |||
1 | jdk: | ||
2 | - openjdk11 | ||
diff --git a/publish.gradle b/publish.gradle new file mode 100644 index 0000000..ff48c02 --- /dev/null +++ b/publish.gradle | |||
@@ -0,0 +1,51 @@ | |||
1 | /* | ||
2 | * lemonad - Some functional sweetness for Java | ||
3 | * Copyright (C) 2019 Pacien TRAN-GIRARD | ||
4 | * | ||
5 | * This program is free software: you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU Affero General Public License as | ||
7 | * published by the Free Software Foundation, either version 3 of the | ||
8 | * License, or (at your option) any later version. | ||
9 | * | ||
10 | * This program is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU Affero General Public License for more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU Affero General Public License | ||
16 | * along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | apply plugin: 'maven' | ||
20 | |||
21 | group 'org.pacien' | ||
22 | version '1.0-SNAPSHOT' | ||
23 | |||
24 | task sourcesJar(type: Jar, dependsOn: classes) { | ||
25 | classifier = 'sources' | ||
26 | from sourceSets.main.allSource | ||
27 | } | ||
28 | |||
29 | task javadocJar(type: Jar, dependsOn: javadoc) { | ||
30 | classifier = 'javadoc' | ||
31 | from javadoc.destinationDir | ||
32 | } | ||
33 | |||
34 | artifacts { | ||
35 | archives sourcesJar | ||
36 | archives javadocJar | ||
37 | } | ||
38 | |||
39 | install { | ||
40 | repositories.mavenInstaller { | ||
41 | pom.project { | ||
42 | licenses { | ||
43 | license { | ||
44 | name 'GNU AFFERO GENERAL PUBLIC LICENSE' | ||
45 | url 'http://www.gnu.org/licenses/agpl-v3.html' | ||
46 | distribution 'repo' | ||
47 | } | ||
48 | } | ||
49 | } | ||
50 | } | ||
51 | } | ||