Skip to content

Commit

Permalink
jdk11
Browse files Browse the repository at this point in the history
  • Loading branch information
arvkonstantin committed Apr 24, 2024
1 parent 16e56f2 commit 3ce18d5
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.arvkonstantin</groupId>
<artifactId>bouncer</artifactId>
<version>2.2.11</version>
<version>2.3.0</version>
<description>Bouncer is a network TCP port redirector/forward proxy (like rinetd) with extra features like Reverse tunneling (like ssh -R), SSL tunneling (like stunnel), connection Failover, LoadBalancing and Clustering.</description>

<name>${project.groupId}:${project.artifactId}</name>
Expand Down Expand Up @@ -41,8 +41,17 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>11</source>
<target>11</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!-- Package Classes to JAR to upload to repo -->
Expand Down

0 comments on commit 3ce18d5

Please sign in to comment.