aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Manico <jim@manico.net>2021-07-20 12:12:27 -0400
committerGitHub <noreply@github.com>2021-07-20 12:12:27 -0400
commit6320a6d11363ae28f2c5fcca8bbb56bb0906084a (patch)
tree631e874ce1bb2a67a2509fe8fd504591a1c007eb
parentfa5c589fb6037e0b7e9bb6b21b537a5411420ac7 (diff)
parentf5bb67496a874f04828395016cb6b0b1d95c35e9 (diff)
downloadjava-encoder-6320a6d11363ae28f2c5fcca8bbb56bb0906084a.tar.gz
Merge pull request #45 from casid/patch-1
Add automatic module name
-rw-r--r--core/pom.xml4
-rw-r--r--esapi/pom.xml4
-rw-r--r--jsp/pom.xml4
-rwxr-xr-xpom.xml1
4 files changed, 13 insertions, 0 deletions
diff --git a/core/pom.xml b/core/pom.xml
index ad329f1..29baed5 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -56,6 +56,10 @@
Scripting.
</description>
+ <properties>
+ <jigsaw.module.name>org.owasp.encoder</jigsaw.module.name>
+ </properties>
+
<build>
<plugins>
<plugin>
diff --git a/esapi/pom.xml b/esapi/pom.xml
index 263f4e0..fbf5c1f 100644
--- a/esapi/pom.xml
+++ b/esapi/pom.xml
@@ -54,6 +54,10 @@
Projects API into an implementation of ESAPI.
</description>
+ <properties>
+ <jigsaw.module.name>org.owasp.encoder.esapi</jigsaw.module.name>
+ </properties>
+
<dependencies>
<dependency>
<groupId>org.owasp.encoder</groupId>
diff --git a/jsp/pom.xml b/jsp/pom.xml
index f720cb6..2b25fac 100644
--- a/jsp/pom.xml
+++ b/jsp/pom.xml
@@ -55,6 +55,10 @@
definitions and JSP EL functions.
</description>
+ <properties>
+ <jigsaw.module.name>org.owasp.encoder.jsp</jigsaw.module.name>
+ </properties>
+
<dependencies>
<dependency>
<groupId>org.owasp.encoder</groupId>
diff --git a/pom.xml b/pom.xml
index d3ea074..5d1a085 100755
--- a/pom.xml
+++ b/pom.xml
@@ -285,6 +285,7 @@
<instructions>
<_noee>true</_noee>
<_nouses>true</_nouses>
+ <Automatic-Module-Name>${jigsaw.module.name}</Automatic-Module-Name>
</instructions>
</configuration>
</execution>