Skip to content

Commit

Permalink
Updated for security changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jyeary committed Jan 2, 2024
1 parent 81bfa6d commit 3b20346
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
/target/
/target/
.classpath
.project
.settings
1 change: 1 addition & 0 deletions .java-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.8
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The binaries are deployed to Maven Central at the following coordinates:
<dependency>
<groupId>com.bluelotussoftware</groupId>
<artifactId>tomcat-security-valves</artifactId>
<version>2.2.2</version>
<version>2.2.4</version>
</dependency>
```
**NOTE:** The file should be installed in the Apache Tomcat **/lib/** directory to be available for all applications. This applies even if you are using an individual **context.xml** per project to enable it.
Expand Down
17 changes: 10 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<description>This provides Valve implementations to add response security
headers to container managed security on Apache Tomcat</description>
<url>https://github.com/bluelotussoftware/tomcat-security-valves</url>
<version>2.2.3</version>
<version>2.2.4</version>
<packaging>jar</packaging>
<inceptionYear>2017</inceptionYear>
<properties>
Expand Down Expand Up @@ -53,7 +53,7 @@
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<version>9.0.41</version>
<version>9.0.83</version>
</dependency>
</dependencies>
<distributionManagement>
Expand All @@ -71,7 +71,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<version>3.1.0</version>
<configuration>
<executable>gpg2</executable>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
Expand All @@ -85,7 +88,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand All @@ -96,7 +99,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.11.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand All @@ -105,7 +108,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<version>3.6.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -126,7 +129,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
Expand Down

0 comments on commit 3b20346

Please sign in to comment.