ssl-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.hakky54</groupId> <artifactId>ssl-server</artifactId> <version>1.0.6</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.hakky54</groupId> <artifactId>ssl-server</artifactId> <version>1.0.6</version> <name>SSL-Server</name> <description>Easily setup a SSL Server for testing purposes</description> <url>https://github.com/Hakky54/ssl-server</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/Hakky54/ssl-server</url> <connection>scm:git:git@github.com:Hakky54/ssl-server.git</connection> <developerConnection>scm:git:git@github.com:Hakky54/ssl-server.git</developerConnection> <tag>v1.0.6</tag> </scm> <developers> <developer> <id>Hakky54</id> <name>Hakan Altindag</name> <organization>Thunderberry</organization> <url>https://github.com/Hakky54</url> <roles> <role>Maintainer</role> </roles> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <!-- project properties --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <version.netty>4.1.106.Final</version.netty> <version.sslcontext-kickstart>8.3.0</version.sslcontext-kickstart> <!-- test dependency properties --> <version.junit>5.10.1</version.junit> <version.assertj>3.25.2</version.assertj> <version.slf4j>2.0.11</version.slf4j> <!-- plugin properties --> <version.jacoco-maven-plugin>0.8.5</version.jacoco-maven-plugin> <version.maven-surefire-plugin>2.22.2</version.maven-surefire-plugin> <version.maven-compiler-plugin>3.8.1</version.maven-compiler-plugin> <version.maven-source-plugin>3.2.1</version.maven-source-plugin> <version.maven-gpg-plugin>1.6</version.maven-gpg-plugin> <version.maven-release-plugin>2.5.3</version.maven-release-plugin> <version.maven-scm-publish-plugin>3.0.0</version.maven-scm-publish-plugin> <version.nexus-staging-maven-plugin>1.6.8</version.nexus-staging-maven-plugin> <version.license-maven-plugin>4.2</version.license-maven-plugin> <license.git.copyrightYears>2023</license.git.copyrightYears> </properties> <dependencies> <dependency> <groupId>io.netty</groupId> <artifactId>netty-codec-http</artifactId> <version>${version.netty}</version> </dependency> <dependency> <groupId>io.github.hakky54</groupId> <artifactId>sslcontext-kickstart</artifactId> <version>${version.sslcontext-kickstart}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${version.assertj}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${version.slf4j}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${version.maven-compiler-plugin}</version> <executions> <execution> <id>default-compile</id> </execution> <execution> <id>java8-compile</id> <goals> <goal>compile</goal> </goals> <!-- recompile everything with Java 8 except the module-info.java --> <configuration> <release>8</release> <excludes> <exclude>module-info.java</exclude> </excludes> </configuration> </execution> </executions> <configuration> <release>11</release> <source>11</source> <target>11</target> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${version.jacoco-maven-plugin}</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${version.maven-surefire-plugin}</version> <configuration> <includes> <include>%regex[.*Should.*]</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${version.maven-source-plugin}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${version.maven-release-plugin}</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${version.nexus-staging-maven-plugin}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>${version.license-maven-plugin}</version> <configuration> <inlineHeader> <![CDATA[ Copyright ${license.git.copyrightYears} Thunderberry. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ]]> </inlineHeader> <includes> <include>**/*.java</include> </includes> <excludes> <exclude>**/module-info.java</exclude> </excludes> <strictCheck>true</strictCheck> <mapping> <java>SLASHSTAR_STYLE</java> </mapping> </configuration> <executions> <execution> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>ossrh</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${version.maven-gpg-plugin}</version> <configuration> <executable>gpg</executable> <keyname>${gpg.keyname}</keyname> <passphraseServerId>${gpg.keyname}</passphraseServerId> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>