aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Long <jeremy.long@gmail.com>2020-11-08 07:35:30 -0500
committerGitHub <noreply@github.com>2020-11-08 07:35:30 -0500
commit4a45510d5c8dee2787441cde1b2dac2c4ed94351 (patch)
tree2773bb7c9f45f8955f81cb4c2d2f7ea737e6adbd
parent16af35cdc4043a39376c7994a898bcf7961afe23 (diff)
parentad91194bfe981b91b9e36cd8339b7dbb74fdc9ce (diff)
downloadjava-encoder-4a45510d5c8dee2787441cde1b2dac2c4ed94351.tar.gz
Merge pull request #40 from OWASP/release123
Fix build & Merge #39
-rw-r--r--.travis.yml1
-rw-r--r--core/pom.xml2
-rw-r--r--esapi/pom.xml4
-rw-r--r--jsp/pom.xml2
-rwxr-xr-xpom.xml46
5 files changed, 50 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index a26172b..5206c1e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,4 +1,5 @@
language: java
+dist: trusty
jdk:
- openjdk8
diff --git a/core/pom.xml b/core/pom.xml
index cd0293e..ad329f1 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -42,7 +42,7 @@
<parent>
<groupId>org.owasp.encoder</groupId>
<artifactId>encoder-parent</artifactId>
- <version>1.2.2</version>
+ <version>1.2.3</version>
</parent>
<artifactId>encoder</artifactId>
diff --git a/esapi/pom.xml b/esapi/pom.xml
index 260f0f5..8105a7d 100644
--- a/esapi/pom.xml
+++ b/esapi/pom.xml
@@ -42,7 +42,7 @@
<parent>
<groupId>org.owasp.encoder</groupId>
<artifactId>encoder-parent</artifactId>
- <version>1.2.2</version>
+ <version>1.2.3</version>
</parent>
<artifactId>encoder-esapi</artifactId>
@@ -63,7 +63,7 @@
<dependency>
<groupId>org.owasp.esapi</groupId>
<artifactId>esapi</artifactId>
- <version>[2.0,3)</version>
+ <version>[2.0,2.1)</version>
</dependency>
</dependencies>
</project>
diff --git a/jsp/pom.xml b/jsp/pom.xml
index 2407a5c..f720cb6 100644
--- a/jsp/pom.xml
+++ b/jsp/pom.xml
@@ -42,7 +42,7 @@
<parent>
<groupId>org.owasp.encoder</groupId>
<artifactId>encoder-parent</artifactId>
- <version>1.2.2</version>
+ <version>1.2.3</version>
</parent>
<artifactId>encoder-jsp</artifactId>
diff --git a/pom.xml b/pom.xml
index d81ad2c..d3ea074 100755
--- a/pom.xml
+++ b/pom.xml
@@ -41,7 +41,7 @@
<groupId>org.owasp.encoder</groupId>
<artifactId>encoder-parent</artifactId>
- <version>1.2.2</version>
+ <version>1.2.3</version>
<packaging>pom</packaging>
<name>OWASP Java Encoder Project</name>
@@ -239,6 +239,11 @@
<version>3.6</version>
</plugin>
<plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>3.3.0</version>
+ </plugin>
+ <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.3</version>
@@ -266,6 +271,26 @@
</configuration>
</plugin>
<plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>default-bundle</id>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>manifest</goal>
+ </goals>
+ <configuration>
+ <excludeDependencies>true</excludeDependencies>
+ <instructions>
+ <_noee>true</_noee>
+ <_nouses>true</_nouses>
+ </instructions>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
@@ -299,6 +324,25 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>default-jar</id>
+ <phase>package</phase>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ <configuration>
+ <skipIfEmpty>true</skipIfEmpty>
+ <archive>
+ <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+ </archive>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>