Skip to content
This repository was archived by the owner on Sep 15, 2021. It is now read-only.

Commit 82e31dc

Browse files
author
Albert Schimpf
committed
Extra info for main project
1 parent d76e00b commit 82e31dc

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@ plugins {
22
id 'jacoco'
33
id 'java-library'
44
id 'java-library-distribution'
5+
id("de.jjohannes.extra-java-module-info") version "0.1"
6+
}
7+
8+
extraJavaModuleInfo {
9+
module("commons-logging-1.2.jar", "commons.logging", "1.2") {}
10+
module("javax.servlet-api-3.1.0.jar", "javax.servlet.api", "3.1.0") {
11+
exports "javax.servlet.http"
12+
exports "javax.servlet"
13+
}
14+
module("jsoup-1.12.1.jar", "org.jsoup", "1.12.1") {
15+
exports "org.jsoup"
16+
exports "org.jsoup.nodes"
17+
exports "org.jsoup.select"
18+
}
519
}
620

721
allprojects {

scraper-nodes-dev/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'java-library'
33
id 'java-library-distribution'
4-
id("de.jjohannes.extra-java-module-info") version "0.1"
4+
id("de.jjohannes.extra-java-module-info")
55
}
66

77
version = '0.5.0'

scraper-nodes-experimental/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'java-library'
33
id 'java-library-distribution'
4-
id("de.jjohannes.extra-java-module-info") version "0.1"
4+
id("de.jjohannes.extra-java-module-info")
55
}
66

77
version = '0.1.0'

scraper-nodes-server/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'java-library'
33
id 'java-library-distribution'
4-
id("de.jjohannes.extra-java-module-info") version "0.1"
4+
id("de.jjohannes.extra-java-module-info")
55
}
66

77
version = '0.4.0'

0 commit comments

Comments
 (0)